glGetnTexImageArb function opengl_glext
void
glGetnTexImageArb()
GLAPI void APIENTRY glGetnTexImageARB (GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *img)
Implementation
void glGetnTexImageArb(
int target,
int level,
int format,
int type,
int bufSize,
Pointer<NativeType> img,
) {
final glGetnTexImageArbAsFunction = _glGetnTexImageArb
.cast<
NativeFunction<
Void Function(
Uint32 target,
Int32 level,
Uint32 format,
Uint32 type,
Uint32 bufSize,
Pointer<NativeType> img,
)
>
>()
.asFunction<
void Function(
int target,
int level,
int format,
int type,
int bufSize,
Pointer<NativeType> img,
)
>();
return glGetnTexImageArbAsFunction(target, level, format, type, bufSize, img);
}