glCopyTexSubImage3D method
void
glCopyTexSubImage3D()
Implementation
void glCopyTexSubImage3D(
int target,
int level,
int xoffset,
int yoffset,
int zoffset,
int x,
int y,
int width,
int height,
) {
return (_glCopyTexSubImage3D ??= _dylib.lookupFunction<
_c_glCopyTexSubImage3D,
_dart_glCopyTexSubImage3D>('glCopyTexSubImage3D'))(
target,
level,
xoffset,
yoffset,
zoffset,
x,
y,
width,
height,
);
}