glIsSemaphoreExt function opengl_glext

int glIsSemaphoreExt(
  1. int semaphore
)
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);
}