glGetnColorTableArb function opengl_glext
void
glGetnColorTableArb()
GLAPI void APIENTRY glGetnColorTableARB (GLenum target, GLenum format, GLenum type, GLsizei bufSize, void *table)
Implementation
void glGetnColorTableArb(
int target,
int format,
int type,
int bufSize,
Pointer<NativeType> table,
) {
final glGetnColorTableArbAsFunction = _glGetnColorTableArb
.cast<
NativeFunction<
Void Function(
Uint32 target,
Uint32 format,
Uint32 type,
Uint32 bufSize,
Pointer<NativeType> table,
)
>
>()
.asFunction<
void Function(
int target,
int format,
int type,
int bufSize,
Pointer<NativeType> table,
)
>();
return glGetnColorTableArbAsFunction(target, format, type, bufSize, table);
}