glCopyTexSubImage2D method
void
glCopyTexSubImage2D()
Implementation
void glCopyTexSubImage2D(
int target,
int level,
int xoffset,
int yoffset,
int x,
int y,
int width,
int height,
) {
return (_glCopyTexSubImage2D ??= _dylib.lookupFunction<
_c_glCopyTexSubImage2D,
_dart_glCopyTexSubImage2D>('glCopyTexSubImage2D'))(
target,
level,
xoffset,
yoffset,
x,
y,
width,
height,
);
}