glGetPathTexGenfvNv function opengl_glext
GLAPI void APIENTRY glGetPathTexGenfvNV (GLenum texCoordSet, GLenum pname, GLfloat *value)
Implementation
void glGetPathTexGenfvNv(int texCoordSet, int pname, Pointer<Float> value) {
final glGetPathTexGenfvNvAsFunction = _glGetPathTexGenfvNv
.cast<
NativeFunction<
Void Function(Uint32 texCoordSet, Uint32 pname, Pointer<Float> value)
>
>()
.asFunction<
void Function(int texCoordSet, int pname, Pointer<Float> value)
>();
return glGetPathTexGenfvNvAsFunction(texCoordSet, pname, value);
}