From cbd359effab542c3737b204f4e9d7066171bb227 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?Bj=C3=B6rn=20Lindqvist?= Date: Fri, 12 Oct 2007 20:09:28 +0200 Subject: [PATCH] Reduce the size of some surfaces from 800x800 to 700x700. The reason for the change is that Xlib doesn't like surfaces bigger than the screen resolution and I only have 1024x768 :(. --- perf/cairo-perf.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/perf/cairo-perf.c b/perf/cairo-perf.c index 388bfa7..b50a5c0 100644 --- a/perf/cairo-perf.c +++ b/perf/cairo-perf.c @@ -422,9 +422,9 @@ cairo_perf_case_t perf_cases[] = { { subimage_copy, 16, 512}, { pattern_create_radial, 16, 16}, { zrusin, 415, 415}, - { world_map, 800, 800}, + { world_map, 700, 700}, { box_outline, 100, 100}, - { mosaic, 800, 800 }, + { mosaic, 700, 700 }, { long_lines, 100, 100}, { unaligned_clip, 100, 100}, { rectangles, 512, 512}, -- 1.5.3.4