Warning: session_start(): open(/var/lib/php/sessions/sess_094h7ufjitmb1dbj9ouhq8kbo5, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
static bool rgbImageSectionsIdentical(RGBImage a, Rect r1, RGBImage b, Rect r2) {
assertEquals(r1.w, r2.w);
assertEquals(r1.h, r2.h);
int w = r1.w, h = r1.h;
for (int yy = 0; yy < h; yy++)
for (int xx = 0; xx < w; xx++)
if (a.getInt(r1.x+xx, r1.y+yy) != b.getInt(r2.x+xx, r2.y+yy))
false;
true;
}