glCopyTexImage2Dext function opengl_glext
void
glCopyTexImage2Dext()
GLAPI void APIENTRY glCopyTexImage2DEXT (GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border)
Implementation
void glCopyTexImage2Dext(
int target,
int level,
int internalformat,
int x,
int y,
int width,
int height,
int border,
) {
final glCopyTexImage2DextAsFunction = _glCopyTexImage2Dext
.cast<
NativeFunction<
Void Function(
Uint32 target,
Int32 level,
Uint32 internalformat,
Int32 x,
Int32 y,
Uint32 width,
Uint32 height,
Int32 border,
)
>
>()
.asFunction<
void Function(
int target,
int level,
int internalformat,
int x,
int y,
int width,
int height,
int border,
)
>();
return glCopyTexImage2DextAsFunction(
target,
level,
internalformat,
x,
y,
width,
height,
border,
);
}