glIndexFormatNv function opengl_glext

void glIndexFormatNv(
  1. int type,
  2. int stride
)
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);
}