glGetPathCommandsNv function opengl_glext
GLAPI void APIENTRY glGetPathCommandsNV (GLuint path, GLubyte *commands)
Implementation
void glGetPathCommandsNv(int path, Pointer<Uint8> commands) {
final glGetPathCommandsNvAsFunction = _glGetPathCommandsNv
.cast<
NativeFunction<Void Function(Uint32 path, Pointer<Uint8> commands)>
>()
.asFunction<void Function(int path, Pointer<Uint8> commands)>();
return glGetPathCommandsNvAsFunction(path, commands);
}