Skip to content

API Reference / @gtkx/gl / uniformMatrix3fv

Function: uniformMatrix3fv()

uniformMatrix3fv(location, count, transpose, value): void

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

void glUniformMatrix3fv(GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)

Provided by GL_VERSION_2_0. Also known as glUniformMatrix3fvARB.

Parameters

location

number

GLint

count

number

GLsizei

transpose

boolean

boolean

value

number[] | Float32Array<ArrayBufferLike>

GLfloat[] | Float32Array, length count*9, kind Matrix3x3. This parameter represents a 3x3 matrix.

Returns

void

Released under the MPL-2.0 License.