glCopyColorTable function
opengl
void
glCopyColorTable(
- int target,
- int internalformat,
- int x,
- int y,
- int width,
)
GLAPI void GLAPIENTRY glCopyColorTable( GLenum target, GLenum internalformat, GLint x, GLint y, GLsizei width )
Implementation
void glCopyColorTable(int target, int internalformat, int x, int y, int width) {
final glCopyColorTableAsFunction = _glCopyColorTable
.cast<
NativeFunction<
Void Function(
Uint32 target,
Uint32 internalformat,
Int32 x,
Int32 y,
Uint32 width,
)
>
>()
.asFunction<
void Function(int target, int internalformat, int x, int y, int width)
>();
return glCopyColorTableAsFunction(target, internalformat, x, y, width);
}