Stores two floating point values inside a program constant with at least two components.
int32 SetProgramConstantFloat32x2( int32 p_nHandle, int32 p_iIndex, float64 Value1, float64 Value2 )
Parameter Type | Parameter Name | Documentation |
---|---|---|
int32 | p_nHandle | The handle to the shader program. This can be acquired by calling the <Program> object's GetHandle() data interface.. |
int32 | p_iIndex | The index of the constant whose value is to be set. This value is typically retrieved using the GetProgramConstantIndex function. |
float64 | Value1 | A value to store in the first component of the constant. |
float64 | Value2 | A value to store in the second component of the constant. |
None published. Please look for an example in the Simdify Scripting Language code base.