glImportMemoryFdExt function opengl_glext

void glImportMemoryFdExt(
  1. int memory,
  2. int size,
  3. int handleType,
  4. int fd,
)
GLAPI void APIENTRY glImportMemoryFdEXT (GLuint memory, GLuint64 size, GLenum handleType, GLint fd)

Implementation

void glImportMemoryFdExt(int memory, int size, int handleType, int fd) {
  final glImportMemoryFdExtAsFunction = _glImportMemoryFdExt
      .cast<
        NativeFunction<
          Void Function(Uint32 memory, Uint64 size, Uint32 handleType, Int32 fd)
        >
      >()
      .asFunction<
        void Function(int memory, int size, int handleType, int fd)
      >();
  return glImportMemoryFdExtAsFunction(memory, size, handleType, fd);
}