glIsFenceApple function opengl_glext
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);
}