Name
cgD3D9GetManageTextureParameters - get the manage texture parameters flag from a context
Synopsis
#include <Cg/cgD3D9.h>
CGbool cgD3D9GetManageTextureParameters( CGcontext context );
Parameters
- context
-
The context from which the automatic texture management setting will be retrieved.
Return Values
Returns the manage texture management flag from context.
Description
cgD3D9GetManageTextureParameters returns the manage texture management flag
from context. See cgD3D9SetManageTextureParameters
for more information.
Examples
CGbool manage = cgD3D9GetManageTextureParameters( pCtx );
if( manage )
doSomething();
Errors
None.
History
cgD3D9GetManageTextureParameters was introduced in Cg 1.5.
See Also
cgD3D9SetManageTextureParameters
|