glFogCoordFormatNv function opengl_glext

void glFogCoordFormatNv(
  1. int type,
  2. int stride
)
GLAPI void APIENTRY glFogCoordFormatNV (GLenum type, GLsizei stride)

Implementation

void glFogCoordFormatNv(int type, int stride) {
  final glFogCoordFormatNvAsFunction = _glFogCoordFormatNv
      .cast<NativeFunction<Void Function(Uint32 type, Uint32 stride)>>()
      .asFunction<void Function(int type, int stride)>();
  return glFogCoordFormatNvAsFunction(type, stride);
}