readPixels method
Implementation
void readPixels(int x, int y, int width, int height, int format, int type, TypedData? pixels) {
startCheck('readPixels');
gl.glReadPixels(x, y, width, height, format, type, pixels);
checkError('readPixels');
}
void readPixels(int x, int y, int width, int height, int format, int type, TypedData? pixels) {
startCheck('readPixels');
gl.glReadPixels(x, y, width, height, format, type, pixels);
checkError('readPixels');
}