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