glIndexFormatNv function opengl_glext
GLAPI void APIENTRY glIndexFormatNV (GLenum type, GLsizei stride)
Implementation
void glIndexFormatNv(int type, int stride) {
final glIndexFormatNvAsFunction = _glIndexFormatNv
.cast<NativeFunction<Void Function(Uint32 type, Uint32 stride)>>()
.asFunction<void Function(int type, int stride)>();
return glIndexFormatNvAsFunction(type, stride);
}