Name
cgD3D10SetTextureParameter - sets the value of a texture parameter
Synopsis
#include <Cg/cgD3D10.h>
void cgD3D10SetTextureParameter( CGparameter param,
ID3D10Resource * texture );
Parameters
- param
-
The texture parameter that will be set.
- texture
-
An D3D texture to which the parameter will be set.
Return Values
None.
Description
cgD3D10SetTextureParameter sets the value of a texture parameter to a
given D3D10 texture object.
Examples
ID3D10Resource *myTexture;
// Assume myTexture is loaded here...
// .. and param is an effect sampler parameter
cgD3D10SetTextureParameter( param, myTexture );
Errors
CG_INVALID_PARAM_HANDLE_ERROR is generated if param is not a valid parameter handle.
History
cgD3D10SetTextureParameter was introduced in Cg 2.1.
See Also
cgD3D10SetManageTextureParameters
|