glTextureStorageMem3Dext function opengl_glext
void
glTextureStorageMem3Dext()
GLAPI void APIENTRY glTextureStorageMem3DEXT (GLuint texture, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset)
Implementation
void glTextureStorageMem3Dext(
int texture,
int levels,
int internalFormat,
int width,
int height,
int depth,
int memory,
int offset,
) {
final glTextureStorageMem3DextAsFunction = _glTextureStorageMem3Dext
.cast<
NativeFunction<
Void Function(
Uint32 texture,
Int32 levels,
Uint32 internalFormat,
Int32 width,
Int32 height,
Int32 depth,
Uint32 memory,
Uint64 offset,
)
>
>()
.asFunction<
void Function(
int texture,
int levels,
int internalFormat,
int width,
int height,
int depth,
int memory,
int offset,
)
>();
return glTextureStorageMem3DextAsFunction(
texture,
levels,
internalFormat,
width,
height,
depth,
memory,
offset,
);
}