glCompressedTexSubImage2Darb function opengl_glext
void
glCompressedTexSubImage2Darb()
GLAPI void APIENTRY glCompressedTexSubImage2DARB (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data)
Implementation
void glCompressedTexSubImage2Darb(
int target,
int level,
int xoffset,
int yoffset,
int width,
int height,
int format,
int imageSize,
Pointer<NativeType> data,
) {
final glCompressedTexSubImage2DarbAsFunction = _glCompressedTexSubImage2Darb
.cast<
NativeFunction<
Void Function(
Uint32 target,
Int32 level,
Int32 xoffset,
Int32 yoffset,
Uint32 width,
Uint32 height,
Uint32 format,
Uint32 imageSize,
Pointer<NativeType> data,
)
>
>()
.asFunction<
void Function(
int target,
int level,
int xoffset,
int yoffset,
int width,
int height,
int format,
int imageSize,
Pointer<NativeType> data,
)
>();
return glCompressedTexSubImage2DarbAsFunction(
target,
level,
xoffset,
yoffset,
width,
height,
format,
imageSize,
data,
);
}