glCompressedMultiTexImage1Dext function opengl_glext
void
glCompressedMultiTexImage1Dext()
GLAPI void APIENTRY glCompressedMultiTexImage1DEXT (GLenum texunit, GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *bits)
Implementation
void glCompressedMultiTexImage1Dext(
int texunit,
int target,
int level,
int internalformat,
int width,
int border,
int imageSize,
Pointer<NativeType> bits,
) {
final glCompressedMultiTexImage1DextAsFunction =
_glCompressedMultiTexImage1Dext
.cast<
NativeFunction<
Void Function(
Uint32 texunit,
Uint32 target,
Int32 level,
Uint32 internalformat,
Uint32 width,
Int32 border,
Uint32 imageSize,
Pointer<NativeType> bits,
)
>
>()
.asFunction<
void Function(
int texunit,
int target,
int level,
int internalformat,
int width,
int border,
int imageSize,
Pointer<NativeType> bits,
)
>();
return glCompressedMultiTexImage1DextAsFunction(
texunit,
target,
level,
internalformat,
width,
border,
imageSize,
bits,
);
}