glIsSemaphoreExt function opengl_glext
GLAPI GLboolean APIENTRY glIsSemaphoreEXT (GLuint semaphore)
Implementation
int glIsSemaphoreExt(int semaphore) {
final glIsSemaphoreExtAsFunction = _glIsSemaphoreExt
.cast<NativeFunction<Int32 Function(Uint32 semaphore)>>()
.asFunction<int Function(int semaphore)>();
return glIsSemaphoreExtAsFunction(semaphore);
}