glGetnHistogramArb function opengl_glext
void
glGetnHistogramArb()
GLAPI void APIENTRY glGetnHistogramARB (GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, void *values)
Implementation
void glGetnHistogramArb(
int target,
int reset,
int format,
int type,
int bufSize,
Pointer<NativeType> values,
) {
final glGetnHistogramArbAsFunction = _glGetnHistogramArb
.cast<
NativeFunction<
Void Function(
Uint32 target,
Int32 reset,
Uint32 format,
Uint32 type,
Uint32 bufSize,
Pointer<NativeType> values,
)
>
>()
.asFunction<
void Function(
int target,
int reset,
int format,
int type,
int bufSize,
Pointer<NativeType> values,
)
>();
return glGetnHistogramArbAsFunction(
target,
reset,
format,
type,
bufSize,
values,
);
}