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,
Uint32 width,
Uint32 height,
Uint32 depth,
Int32 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,
);
}