glReadnPixelsArb function opengl_glext
void
glReadnPixelsArb()
GLAPI void APIENTRY glReadnPixelsARB (GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, void *data)
Implementation
void glReadnPixelsArb(
int x,
int y,
int width,
int height,
int format,
int type,
int bufSize,
Pointer<NativeType> data,
) {
final glReadnPixelsArbAsFunction = _glReadnPixelsArb
.cast<
NativeFunction<
Void Function(
Int32 x,
Int32 y,
Uint32 width,
Uint32 height,
Uint32 format,
Uint32 type,
Uint32 bufSize,
Pointer<NativeType> data,
)
>
>()
.asFunction<
void Function(
int x,
int y,
int width,
int height,
int format,
int type,
int bufSize,
Pointer<NativeType> data,
)
>();
return glReadnPixelsArbAsFunction(
x,
y,
width,
height,
format,
type,
bufSize,
data,
);
}