ConvertPTSize: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 2: Line 2:


This C++ namespace function is a helper function for [[CAdditionalVertexStreamManager]].
This C++ namespace function is a helper function for [[CAdditionalVertexStreamManager]].
It converts size of PT stream to sizeof of N stream.
It converts size of PT stream to sizeof of N stream.



Latest revision as of 13:00, 14 May 2017

This C++ namespace function is a helper function for CAdditionalVertexStreamManager.

It converts size of PT stream to sizeof of N stream.

It can be found in Client/Client Core/Sources/CAdditionalVertexStreamManager.cpp in Visual Studio.

Required Arguments

  • SizePT: To be defined.

Returns

Returns an uint representing --.

Code

uint ConvertPTSize ( uint SizePT )
{
    return SizePT * 12 / 20;
}

See Also