Viewport clipping now works with both GL and Gallium.
[cairo/gpu.git] / test / glyph-cache-pressure.c
blob9b0e3f37821ad61314406cfe40c899f1916fe3cd
1 /*
2 * Copyright © 2005 Red Hat, Inc.
4 * Permission to use, copy, modify, distribute, and sell this software
5 * and its documentation for any purpose is hereby granted without
6 * fee, provided that the above copyright notice appear in all copies
7 * and that both that copyright notice and this permission notice
8 * appear in supporting documentation, and that the name of
9 * Red Hat, Inc. not be used in advertising or publicity pertaining to
10 * distribution of the software without specific, written prior
11 * permission. Red Hat, Inc. makes no representations about the
12 * suitability of this software for any purpose. It is provided "as
13 * is" without express or implied warranty.
15 * RED HAT, INC. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
16 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17 * FITNESS, IN NO EVENT SHALL RED HAT, INC. BE LIABLE FOR ANY SPECIAL,
18 * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
19 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
20 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
21 * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
23 * Author: Carl D. Worth <cworth@cworth.org>
26 #include "cairo-test.h"
27 #include "cairo-boilerplate-scaled-font.h"
29 #define TEXT_SIZE 12
31 /* Bug history
33 * 2006-06-22 Carl Worth <cworth@cworth.org>
35 * This is a test case to demonstrate the following bug in the xlib backend:
37 * Some characters aren't displayed when using xlib (cache usage missing freeze/thaw)
38 * https://bugs.freedesktop.org/show_bug.cgi?id=6955
40 * We replicate this bug by using the cairo_scaled_font_set_max_glyphs_per_font
41 * function to artifically induce cache pressure. (This function was added
42 * for this very purpose.)
44 * 2006-06-22 Carl Worth <cworth@cworth.org>
46 * Bug was simple enough to solve by just adding a freeze/thaw pair
47 * around the scaled_font's glyph cache in
48 * _cairo_xlib_surface_show_glyphs, (I went ahead and added
49 * _cairo_sacled_font_freeze/thaw_cache functions for this).
52 static cairo_test_status_t
53 draw (cairo_t *cr, int width, int height)
55 /* We draw in the default black, so paint white first. */
56 cairo_save (cr);
57 cairo_set_source_rgb (cr, 1.0, 1.0, 1.0); /* white */
58 cairo_paint (cr);
59 cairo_restore (cr);
61 cairo_select_font_face (cr, "Bitstream Vera Sans",
62 CAIRO_FONT_SLANT_NORMAL,
63 CAIRO_FONT_WEIGHT_NORMAL);
64 cairo_set_font_size (cr, TEXT_SIZE);
66 cairo_set_source_rgb (cr, 0, 0, 0); /* black */
68 cairo_boilerplate_scaled_font_set_max_glyphs_cached (cairo_get_scaled_font (cr), 1);
70 cairo_move_to (cr, 1, TEXT_SIZE);
71 cairo_show_text (cr, "the five boxing wizards jump quickly");
73 return CAIRO_TEST_SUCCESS;
76 CAIRO_TEST (glyph_cache_pressure,
77 "Ensure that all backends behave well under artificial glyph cache pressure",
78 "stress", /* keywords */
79 NULL, /* requirements */
80 223, TEXT_SIZE + 4,
81 NULL, draw)