glTexturePageCommitmentExt function opengl_glext
void
glTexturePageCommitmentExt()
GLAPI void APIENTRY glTexturePageCommitmentEXT (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLboolean commit)
Implementation
void glTexturePageCommitmentExt(
int texture,
int level,
int xoffset,
int yoffset,
int zoffset,
int width,
int height,
int depth,
int commit,
) {
final glTexturePageCommitmentExtAsFunction = _glTexturePageCommitmentExt
.cast<
NativeFunction<
Void Function(
Uint32 texture,
Int32 level,
Int32 xoffset,
Int32 yoffset,
Int32 zoffset,
Int32 width,
Int32 height,
Int32 depth,
Uint8 commit,
)
>
>()
.asFunction<
void Function(
int texture,
int level,
int xoffset,
int yoffset,
int zoffset,
int width,
int height,
int depth,
int commit,
)
>();
return glTexturePageCommitmentExtAsFunction(
texture,
level,
xoffset,
yoffset,
zoffset,
width,
height,
depth,
commit,
);
}