Name
cgD3D10GetManageTextureParameters - get the manage texture parameters flag from a context
Synopsis
#include <Cg/cgD3D10.h>
CGbool cgD3D10GetManageTextureParameters( 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
cgD3D10GetManageTextureParameters returns the manage texture management flag
from context. See cgD3D10SetManageTextureParameters
for more information.
Examples
CGbool manage = cgD3D10GetManageTextureParameters( pCtx );
if( manage )
doSomething();
Errors
None.
History
cgD3D10GetManageTextureParameters was introduced in Cg 2.1.
See Also
cgD3D10SetManageTextureParameters
|