Attribute.const_4x4fv


Description:

public Attribute.const_4x4fv (Context context, string name, float matrix4x4, Bool transpose)

Creates a new matrix attribute whose value remains constant across all the vertices of a primitive without needing to duplicate the value for each vertex.

matrix4x4 represent a square 4 by 4 matrix specified in column-major order (each 4-tuple of consecutive numbers represents a column) which should have a corresponding declaration in GLSL code like:

[| attribute mat4 name; |]

If transpose is true then all matrix components are rotated around the diagonal of the matrix such that the first column becomes the first row and the second column becomes the second row etc.

Parameters:

context

A Context

name

The name of the attribute (used to reference it from GLSL)

matrix4x4

A pointer to a 4 by 4 matrix

transpose

Whether the matrix should be transposed on upload or not

Returns:

A newly allocated Attribute representing the given constant matrix.