glColorFormatNv function opengl_glext

void glColorFormatNv(
  1. int size,
  2. int type,
  3. int stride
)
GLAPI void APIENTRY glColorFormatNV (GLint size, GLenum type, GLsizei stride)

Implementation

void glColorFormatNv(int size, int type, int stride) {
  final glColorFormatNvAsFunction = _glColorFormatNv
      .cast<
        NativeFunction<Void Function(Int32 size, Uint32 type, Uint32 stride)>
      >()
      .asFunction<void Function(int size, int type, int stride)>();
  return glColorFormatNvAsFunction(size, type, stride);
}