void
glCopyTexSubImage1Dext(
- int target,
- int level,
- int xoffset,
- int x,
- int y,
- int width,
)
GLAPI void APIENTRY glCopyTexSubImage1DEXT (GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width)
Implementation
void glCopyTexSubImage1Dext(
int target,
int level,
int xoffset,
int x,
int y,
int width,
) {
final glCopyTexSubImage1DextAsFunction = _glCopyTexSubImage1Dext
.cast<
NativeFunction<
Void Function(
Uint32 target,
Int32 level,
Int32 xoffset,
Int32 x,
Int32 y,
Uint32 width,
)
>
>()
.asFunction<
void Function(
int target,
int level,
int xoffset,
int x,
int y,
int width,
)
>();
return glCopyTexSubImage1DextAsFunction(target, level, xoffset, x, y, width);
}