glCreateSemaphoresNv function opengl_glext

void glCreateSemaphoresNv(
  1. int n,
  2. Pointer<Uint32> semaphores
)
GLAPI void APIENTRY glCreateSemaphoresNV (GLsizei n, GLuint *semaphores)

Implementation

void glCreateSemaphoresNv(int n, Pointer<Uint32> semaphores) {
  final glCreateSemaphoresNvAsFunction = _glCreateSemaphoresNv
      .cast<
        NativeFunction<Void Function(Uint32 n, Pointer<Uint32> semaphores)>
      >()
      .asFunction<void Function(int n, Pointer<Uint32> semaphores)>();
  return glCreateSemaphoresNvAsFunction(n, semaphores);
}