glTexStorageMem2Dext function opengl_glext
void
glTexStorageMem2Dext()
GLAPI void APIENTRY glTexStorageMem2DEXT (GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset)
Implementation
void glTexStorageMem2Dext(
int target,
int levels,
int internalFormat,
int width,
int height,
int memory,
int offset,
) {
final glTexStorageMem2DextAsFunction = _glTexStorageMem2Dext
.cast<
NativeFunction<
Void Function(
Uint32 target,
Uint32 levels,
Uint32 internalFormat,
Uint32 width,
Uint32 height,
Uint32 memory,
Uint64 offset,
)
>
>()
.asFunction<
void Function(
int target,
int levels,
int internalFormat,
int width,
int height,
int memory,
int offset,
)
>();
return glTexStorageMem2DextAsFunction(
target,
levels,
internalFormat,
width,
height,
memory,
offset,
);
}