glCompressedTextureSubImage3Dext function opengl_glext
void
glCompressedTextureSubImage3Dext()
GLAPI void APIENTRY glCompressedTextureSubImage3DEXT (GLuint texture, GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *bits)
Implementation
void glCompressedTextureSubImage3Dext(
int texture,
int target,
int level,
int xoffset,
int yoffset,
int zoffset,
int width,
int height,
int depth,
int format,
int imageSize,
Pointer<NativeType> bits,
) {
final glCompressedTextureSubImage3DextAsFunction =
_glCompressedTextureSubImage3Dext
.cast<
NativeFunction<
Void Function(
Uint32 texture,
Uint32 target,
Int32 level,
Int32 xoffset,
Int32 yoffset,
Int32 zoffset,
Uint32 width,
Uint32 height,
Uint32 depth,
Uint32 format,
Uint32 imageSize,
Pointer<NativeType> bits,
)
>
>()
.asFunction<
void Function(
int texture,
int target,
int level,
int xoffset,
int yoffset,
int zoffset,
int width,
int height,
int depth,
int format,
int imageSize,
Pointer<NativeType> bits,
)
>();
return glCompressedTextureSubImage3DextAsFunction(
texture,
target,
level,
xoffset,
yoffset,
zoffset,
width,
height,
depth,
format,
imageSize,
bits,
);
}