Attribute.const_2x2fv


Description:

public Attribute.const_2x2fv (Context context, string name, float matrix2x2, 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.

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

[| attribute mat2 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.

Parameters:

context

A Context

name

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

matrix2x2

A pointer to a 2 by 2 matrix

transpose

Whether the matrix should be transposed on upload or not

Returns:

A newly allocated Attribute representing the given constant matrix.