glColorTableExt function opengl_glext
void
glColorTableExt()
GLAPI void APIENTRY glColorTableEXT (GLenum target, GLenum internalFormat, GLsizei width, GLenum format, GLenum type, const void *table)
Implementation
void glColorTableExt(
int target,
int internalFormat,
int width,
int format,
int type,
Pointer<NativeType> table,
) {
final glColorTableExtAsFunction = _glColorTableExt
.cast<
NativeFunction<
Void Function(
Uint32 target,
Uint32 internalFormat,
Uint32 width,
Uint32 format,
Uint32 type,
Pointer<NativeType> table,
)
>
>()
.asFunction<
void Function(
int target,
int internalFormat,
int width,
int format,
int type,
Pointer<NativeType> table,
)
>();
return glColorTableExtAsFunction(
target,
internalFormat,
width,
format,
type,
table,
);
}