static extern void sfShader_setMat3Uniform(IntPtr shader, string name, Glsl.Mat3 matrix);
//////////////////////////////////////////////////////////// /// <summary> /// Specify value for <c>mat3</c> uniform /// </summary> /// <param name="name">Name of the uniform variable in GLSL</param> /// <param name="matrix">Value of the mat3 matrix</param> //////////////////////////////////////////////////////////// public void SetUniform(string name, Glsl.Mat3 matrix) { sfShader_setMat3Uniform(CPointer, name, matrix); }