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