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