glCompressedTextureSubImage1D function opengl_glext
void
glCompressedTextureSubImage1D()
GLAPI void APIENTRY glCompressedTextureSubImage1D (GLuint texture, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data)
Implementation
void glCompressedTextureSubImage1D(
int texture,
int level,
int xoffset,
int width,
int format,
int imageSize,
Pointer<NativeType> data,
) {
final glCompressedTextureSubImage1DAsFunction = _glCompressedTextureSubImage1D
.cast<
NativeFunction<
Void Function(
Uint32 texture,
Int32 level,
Int32 xoffset,
Uint32 width,
Uint32 format,
Uint32 imageSize,
Pointer<NativeType> data,
)
>
>()
.asFunction<
void Function(
int texture,
int level,
int xoffset,
int width,
int format,
int imageSize,
Pointer<NativeType> data,
)
>();
return glCompressedTextureSubImage1DAsFunction(
texture,
level,
xoffset,
width,
format,
imageSize,
data,
);
}