test-cogl-texture-rectangle: Fix the size allocated for reading data

The test was only allocating enough space for 256 rows of pixels but
it was then reading 384 so it would randomly fail.
This commit is contained in:
Neil Roberts 2010-06-09 12:18:53 +01:00
parent 91a359c44e
commit 037f7a29d1

View File

@ -141,7 +141,7 @@ validate_result (TestState *state)
guint8 *data, *p;
int x, y;
p = data = g_malloc (512 * 256 * 4);
p = data = g_malloc (512 * 384 * 4);
cogl_read_pixels (0, 0, 512, 384,
COGL_READ_PIXELS_COLOR_BUFFER,