glCopyTextureSubImage2D function opengl_glext
void
glCopyTextureSubImage2D()
GLAPI void APIENTRY glCopyTextureSubImage2D (GLuint texture, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height)
Implementation
void glCopyTextureSubImage2D(
int texture,
int level,
int xoffset,
int yoffset,
int x,
int y,
int width,
int height,
) {
final glCopyTextureSubImage2DAsFunction = _glCopyTextureSubImage2D
.cast<
NativeFunction<
Void Function(
Uint32 texture,
Int32 level,
Int32 xoffset,
Int32 yoffset,
Int32 x,
Int32 y,
Uint32 width,
Uint32 height,
)
>
>()
.asFunction<
void Function(
int texture,
int level,
int xoffset,
int yoffset,
int x,
int y,
int width,
int height,
)
>();
return glCopyTextureSubImage2DAsFunction(
texture,
level,
xoffset,
yoffset,
x,
y,
width,
height,
);
}