glTestObjectApple function opengl_glext

int glTestObjectApple(
  1. int object,
  2. int name
)
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);
}