glColorTableSgi function opengl_glext
void
glColorTableSgi()
GLAPI void APIENTRY glColorTableSGI (GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const void *table)
Implementation
void glColorTableSgi(
int target,
int internalformat,
int width,
int format,
int type,
Pointer<NativeType> table,
) {
final glColorTableSgiAsFunction = _glColorTableSgi
.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 glColorTableSgiAsFunction(
target,
internalformat,
width,
format,
type,
table,
);
}