glGenSemaphoresExt function
define glGenSemaphoresEXT GLEW_GET_FUN(__glewGenSemaphoresEXT)
GLEW_FUN_EXPORT PFNGLGENSEMAPHORESEXTPROC __glewGenSemaphoresEXT
typedef void (GLAPIENTRY * PFNGLGENSEMAPHORESEXTPROC) (GLsizei n, GLuint* semaphores)
Implementation
void glGenSemaphoresExt(int n, Pointer<Uint32> semaphores) {
final glGenSemaphoresExtAsFunction = _glGenSemaphoresExt
.cast<
NativeFunction<Void Function(Uint32 n, Pointer<Uint32> semaphores)>>()
.asFunction<void Function(int n, Pointer<Uint32> semaphores)>();
return glGenSemaphoresExtAsFunction(n, semaphores);
}