GLAPI void APIENTRY glGetColorTableSGI (GLenum target, GLenum format, GLenum type, void *table)
Implementation
void glGetColorTableSgi(int target, int format, int type, Pointer<Void> table) {
final glGetColorTableSgiAsFunction = _glGetColorTableSgi
.cast<
NativeFunction<
Void Function(
Uint32 target,
Uint32 format,
Uint32 type,
Pointer<Void> table,
)
>
>()
.asFunction<
void Function(int target, int format, int type, Pointer<Void> table)
>();
return glGetColorTableSgiAsFunction(target, format, type, table);
}