glTestObjectApple function opengl_glext
GLAPI GLboolean APIENTRY glTestObjectAPPLE (GLenum object, GLuint name)
Implementation
int glTestObjectApple(int object, int name) {
final glTestObjectAppleAsFunction = _glTestObjectApple
.cast<NativeFunction<Int32 Function(Uint32 object, Uint32 name)>>()
.asFunction<int Function(int object, int name)>();
return glTestObjectAppleAsFunction(object, name);
}