glCompressedTexImage2Darb function opengl_glext
void
glCompressedTexImage2Darb()
GLAPI void APIENTRY glCompressedTexImage2DARB (GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data)
Implementation
void glCompressedTexImage2Darb(
int target,
int level,
int internalformat,
int width,
int height,
int border,
int imageSize,
Pointer<NativeType> data,
) {
final glCompressedTexImage2DarbAsFunction = _glCompressedTexImage2Darb
.cast<
NativeFunction<
Void Function(
Uint32 target,
Int32 level,
Uint32 internalformat,
Uint32 width,
Uint32 height,
Int32 border,
Uint32 imageSize,
Pointer<NativeType> data,
)
>
>()
.asFunction<
void Function(
int target,
int level,
int internalformat,
int width,
int height,
int border,
int imageSize,
Pointer<NativeType> data,
)
>();
return glCompressedTexImage2DarbAsFunction(
target,
level,
internalformat,
width,
height,
border,
imageSize,
data,
);
}