glImportSemaphoreFdExt function opengl_glext

void glImportSemaphoreFdExt(
  1. int semaphore,
  2. int handleType,
  3. 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);
}