diff options
author | Søren Sandmann Pedersen <ssp@redhat.com> | 2012-07-11 03:27:49 -0400 |
---|---|---|
committer | Søren Sandmann Pedersen <ssp@redhat.com> | 2012-09-30 18:22:57 -0400 |
commit | 288f9767c301c9f09ba98678440abedee87e3d67 (patch) | |
tree | ab7672e5ebe46d34e7bf64a06231eafe319304f1 | |
parent | 8aac985a0b7aeeca2e92756dc858922bef88aa5d (diff) |
glyph-test: Prepare for floating point
In preparation for an upcoming change of the wide pipe to use floating
point, comment out some formats in glyph-test that are going to be
using floating point and update the CRC32 value to match.
-rw-r--r-- | test/glyph-test.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/glyph-test.c b/test/glyph-test.c index 84de5aac..9dd5b41e 100644 --- a/test/glyph-test.c +++ b/test/glyph-test.c @@ -30,10 +30,13 @@ static const pixman_format_code_t formats[] = PIXMAN_x14r6g6b6, PIXMAN_r8g8b8, PIXMAN_b8g8r8, +#if 0 + /* These use floating point */ PIXMAN_x2r10g10b10, PIXMAN_a2r10g10b10, PIXMAN_x2b10g10r10, PIXMAN_a2b10g10r10, +#endif PIXMAN_a1r5g5b5, PIXMAN_x1r5g5b5, PIXMAN_a1b5g5r5, @@ -329,7 +332,7 @@ test_glyphs (int testnum, int verbose) int main (int argc, const char *argv[]) { - return fuzzer_test_main ("glyph", 30000, - 0x741CB2DB, + return fuzzer_test_main ("glyph", 30000, + 0x79E74996, test_glyphs, argc, argv); } |