glCopyTextureImage1Dext function opengl_glext
void
glCopyTextureImage1Dext()
GLAPI void APIENTRY glCopyTextureImage1DEXT (GLuint texture, GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border)
Implementation
void glCopyTextureImage1Dext(
int texture,
int target,
int level,
int internalformat,
int x,
int y,
int width,
int border,
) {
final glCopyTextureImage1DextAsFunction = _glCopyTextureImage1Dext
.cast<
NativeFunction<
Void Function(
Uint32 texture,
Uint32 target,
Int32 level,
Uint32 internalformat,
Int32 x,
Int32 y,
Uint32 width,
Int32 border,
)
>
>()
.asFunction<
void Function(
int texture,
int target,
int level,
int internalformat,
int x,
int y,
int width,
int border,
)
>();
return glCopyTextureImage1DextAsFunction(
texture,
target,
level,
internalformat,
x,
y,
width,
border,
);
}