glTexturePageCommitmentExt function
void
glTexturePageCommitmentExt()
define glTexturePageCommitmentEXT GLEW_GET_FUN(__glewTexturePageCommitmentEXT)
GLEW_FUN_EXPORT PFNGLTEXTUREPAGECOMMITMENTEXTPROC __glewTexturePageCommitmentEXT
typedef void (GLAPIENTRY * PFNGLTEXTUREPAGECOMMITMENTEXTPROC) (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,
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);
}