1
0
Fork 0

test-cogl-sub-texture: Allow single-bit rendering error

Signed-off-by: Adam Jackson <ajax@redhat.com>

http://bugzilla.clutter-project.org/show_bug.cgi?id=2640
This commit is contained in:
Adam Jackson 2011-05-02 12:15:28 -04:00 committed by Emmanuele Bassi
parent 7beb222d3f
commit 5aa8ed93ce

View file

@ -2,6 +2,7 @@
#include <clutter/clutter.h>
#include <cogl/cogl.h>
#include <string.h>
#include <stdlib.h>
#include "test-conform-common.h"
@ -226,8 +227,8 @@ validate_result (TestState *state)
for (y = 0; y < 10; y++)
for (x = 0; x < 10; x++)
{
g_assert (*(p++) == x + 40);
g_assert (*(p++) == y + 20);
g_assert_cmpint (abs(*(p++) - (x + 40)), <=, 1);
g_assert_cmpint (abs(*(p++) - (y + 20)), <=, 1);
p += 2;
}
g_free (texture_data);