void
glImportSemaphoreFdExt(
- int semaphore,
- int handleType,
- int fd
)
GLAPI void APIENTRY glImportSemaphoreFdEXT (GLuint semaphore, GLenum handleType, GLint fd)
Implementation
void glImportSemaphoreFdExt(int semaphore, int handleType, int fd) {
final glImportSemaphoreFdExtAsFunction = _glImportSemaphoreFdExt
.cast<
NativeFunction<
Void Function(Uint32 semaphore, Uint32 handleType, Int32 fd)
>
>()
.asFunction<void Function(int semaphore, int handleType, int fd)>();
return glImportSemaphoreFdExtAsFunction(semaphore, handleType, fd);
}