glCompressedTexImage2D method
void
glCompressedTexImage2D()
Implementation
void glCompressedTexImage2D(
int target,
int level,
int internalformat,
int width,
int height,
int border,
int imageSize,
ffi.Pointer<ffi.Void> data,
) {
return (_glCompressedTexImage2D ??= _dylib.lookupFunction<
_c_glCompressedTexImage2D,
_dart_glCompressedTexImage2D>('glCompressedTexImage2D'))(
target,
level,
internalformat,
width,
height,
border,
imageSize,
data,
);
}