glIsFenceApple function opengl_glext

int glIsFenceApple(
  1. int fence
)
GLAPI GLboolean APIENTRY glIsFenceAPPLE (GLuint fence)

Implementation

int glIsFenceApple(int fence) {
  final glIsFenceAppleAsFunction = _glIsFenceApple
      .cast<NativeFunction<Int32 Function(Uint32 fence)>>()
      .asFunction<int Function(int fence)>();
  return glIsFenceAppleAsFunction(fence);
}