glTexSubImage1Dext function opengl_glext
void
glTexSubImage1Dext()
GLAPI void APIENTRY glTexSubImage1DEXT (GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels)
Implementation
void glTexSubImage1Dext(
int target,
int level,
int xoffset,
int width,
int format,
int type,
Pointer<NativeType> pixels,
) {
final glTexSubImage1DextAsFunction = _glTexSubImage1Dext
.cast<
NativeFunction<
Void Function(
Uint32 target,
Int32 level,
Int32 xoffset,
Uint32 width,
Uint32 format,
Uint32 type,
Pointer<NativeType> pixels,
)
>
>()
.asFunction<
void Function(
int target,
int level,
int xoffset,
int width,
int format,
int type,
Pointer<NativeType> pixels,
)
>();
return glTexSubImage1DextAsFunction(
target,
level,
xoffset,
width,
format,
type,
pixels,
);
}