void
glImportMemoryFdExt(
- int memory,
- int size,
- int handleType,
- 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);
}