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