glVertexAttribLFormatNv function opengl_glext

void glVertexAttribLFormatNv(
  1. int index,
  2. int size,
  3. int type,
  4. int stride,
)
GLAPI void APIENTRY glVertexAttribLFormatNV (GLuint index, GLint size, GLenum type, GLsizei stride)

Implementation

void glVertexAttribLFormatNv(int index, int size, int type, int stride) {
  final glVertexAttribLFormatNvAsFunction = _glVertexAttribLFormatNv
      .cast<
        NativeFunction<
          Void Function(Uint32 index, Int32 size, Uint32 type, Uint32 stride)
        >
      >()
      .asFunction<void Function(int index, int size, int type, int stride)>();
  return glVertexAttribLFormatNvAsFunction(index, size, type, stride);
}