glUniformMatrix2x3fv function

void glUniformMatrix2x3fv(
  1. int location,
  2. int count,
  3. int transpose,
  4. Pointer<Float> value,
)
define glUniformMatrix2x3fv GLEW_GET_FUN(__glewUniformMatrix2x3fv)
GLEW_FUN_EXPORT PFNGLUNIFORMMATRIX2X3FVPROC __glewUniformMatrix2x3fv
typedef void (GLAPIENTRY * PFNGLUNIFORMMATRIX2X3FVPROC) (GLint location, GLsizei count, GLboolean transpose, const GLfloat *value)

Implementation

void glUniformMatrix2x3fv(
    int location, int count, int transpose, Pointer<Float> value) {
  final glUniformMatrix2x3fvAsFunction = _glUniformMatrix2x3fv
      .cast<
          NativeFunction<
              Void Function(Int32 location, Uint32 count, Uint8 transpose,
                  Pointer<Float> value)>>()
      .asFunction<
          void Function(
              int location, int count, int transpose, Pointer<Float> value)>();
  return glUniformMatrix2x3fvAsFunction(location, count, transpose, value);
}