Skip to content

API Reference / @gtkx/gl / programUniformMatrix2x4fv

Function: programUniformMatrix2x4fv()

programUniformMatrix2x4fv(program, location, count, transpose, value): void

Defined in: generated/commands.d.ts:4823

void glProgramUniformMatrix2x4fv(GLuint program, GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)

Provided by GL_VERSION_4_1. Registry note: Reuse commands from ARB_separate_shader_objects Also provided by the GL_ARB_separate_shader_objects extension. Also known as glProgramUniformMatrix2x4fvEXT.

Parameters

program

number

GLuint, object class program

location

number

GLint

count

number

GLsizei

transpose

boolean

boolean

value

number[] | Float32Array<ArrayBufferLike>

GLfloat[] | Float32Array, length count*8, kind Matrix2x4. This parameter represents a 2x4 matrix.

Returns

void

Released under the MPL-2.0 License.