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