glFogCoordFormatNv function opengl_glext
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);
}