glVertexAttribIFormatNv function opengl_glext

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

Implementation

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