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