2005-08-08 13:46:11 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2005 Red Hat, Inc.
|
|
|
|
|
*
|
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software
|
|
|
|
|
* and its documentation for any purpose is hereby granted without
|
|
|
|
|
* fee, provided that the above copyright notice appear in all copies
|
|
|
|
|
* and that both that copyright notice and this permission notice
|
|
|
|
|
* appear in supporting documentation, and that the name of
|
|
|
|
|
* Red Hat, Inc. not be used in advertising or publicity pertaining to
|
|
|
|
|
* distribution of the software without specific, written prior
|
|
|
|
|
* permission. Red Hat, Inc. makes no representations about the
|
|
|
|
|
* suitability of this software for any purpose. It is provided "as
|
|
|
|
|
* is" without express or implied warranty.
|
|
|
|
|
*
|
|
|
|
|
* RED HAT, INC. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
|
|
|
|
|
* SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
|
* FITNESS, IN NO EVENT SHALL RED HAT, INC. BE LIABLE FOR ANY SPECIAL,
|
|
|
|
|
* INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
|
|
|
|
|
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
|
|
|
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
|
|
|
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
*
|
|
|
|
|
* Author: Kristian Høgsberg <krh@redhat.com>
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
#include "cairo-test.h"
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
#define WIDTH 64
|
|
|
|
|
#define HEIGHT 64
|
|
|
|
|
#define PAD 10
|
|
|
|
|
|
|
|
|
|
const char png_filename[] = "romedalen.png";
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
draw_mask (cairo_t *cr, int x, int y)
|
|
|
|
|
{
|
|
|
|
|
cairo_surface_t *mask_surface;
|
|
|
|
|
cairo_t *cr2;
|
|
|
|
|
|
|
|
|
|
double width = (int)(0.9 * WIDTH);
|
|
|
|
|
double height = (int)(0.9 * HEIGHT);
|
|
|
|
|
x += 0.05 * WIDTH;
|
|
|
|
|
y += 0.05 * HEIGHT;
|
2006-06-06 15:25:49 -07:00
|
|
|
|
2005-08-08 13:46:11 +00:00
|
|
|
mask_surface = cairo_surface_create_similar (cairo_get_target (cr),
|
|
|
|
|
CAIRO_CONTENT_ALPHA,
|
|
|
|
|
width, height);
|
|
|
|
|
cr2 = cairo_create (mask_surface);
|
|
|
|
|
|
|
|
|
|
cairo_save (cr2);
|
|
|
|
|
cairo_set_source_rgba (cr2, 0, 0, 0, 0); /* transparent */
|
|
|
|
|
cairo_set_operator (cr2, CAIRO_OPERATOR_SOURCE);
|
|
|
|
|
cairo_paint (cr2);
|
|
|
|
|
cairo_restore (cr2);
|
|
|
|
|
|
|
|
|
|
cairo_set_source_rgb (cr2, 1, 1, 1); /* white */
|
|
|
|
|
|
|
|
|
|
cairo_arc (cr2, 0.5 * width, 0.5 * height, 0.45 * height, 0, 2 * M_PI);
|
|
|
|
|
cairo_fill (cr2);
|
|
|
|
|
|
|
|
|
|
cairo_destroy (cr2);
|
|
|
|
|
|
|
|
|
|
cairo_mask_surface (cr, mask_surface, x, y);
|
|
|
|
|
|
|
|
|
|
cairo_surface_destroy (mask_surface);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
draw_glyphs (cairo_t *cr, int x, int y)
|
|
|
|
|
{
|
|
|
|
|
cairo_text_extents_t extents;
|
|
|
|
|
|
|
|
|
|
cairo_set_font_size (cr, 0.8 * HEIGHT);
|
2006-06-06 15:25:49 -07:00
|
|
|
|
2005-08-08 13:46:11 +00:00
|
|
|
cairo_text_extents (cr, "FG", &extents);
|
|
|
|
|
cairo_move_to (cr,
|
|
|
|
|
x + (WIDTH - extents.width) / 2 - extents.x_bearing,
|
|
|
|
|
y + (HEIGHT - extents.height) / 2 - extents.y_bearing);
|
|
|
|
|
cairo_show_text (cr, "FG");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
draw_polygon (cairo_t *cr, int x, int y)
|
|
|
|
|
{
|
|
|
|
|
double width = (int)(0.9 * WIDTH);
|
|
|
|
|
double height = (int)(0.9 * HEIGHT);
|
|
|
|
|
x += 0.05 * WIDTH;
|
|
|
|
|
y += 0.05 * HEIGHT;
|
2006-06-06 15:25:49 -07:00
|
|
|
|
2005-08-08 13:46:11 +00:00
|
|
|
cairo_new_path (cr);
|
|
|
|
|
cairo_move_to (cr, x, y);
|
|
|
|
|
cairo_line_to (cr, x, y + height);
|
|
|
|
|
cairo_line_to (cr, x + width / 2, y + 3 * height / 4);
|
|
|
|
|
cairo_line_to (cr, x + width, y + height);
|
|
|
|
|
cairo_line_to (cr, x + width, y);
|
|
|
|
|
cairo_line_to (cr, x + width / 2, y + height / 4);
|
|
|
|
|
cairo_close_path (cr);
|
|
|
|
|
cairo_fill (cr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
draw_rects (cairo_t *cr, int x, int y)
|
2006-06-06 15:38:58 -07:00
|
|
|
{
|
2005-08-08 13:46:11 +00:00
|
|
|
double block_width = (int)(0.33 * WIDTH + 0.5);
|
|
|
|
|
double block_height = (int)(0.33 * HEIGHT + 0.5);
|
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < 3; i++)
|
|
|
|
|
for (j = 0; j < 3; j++)
|
|
|
|
|
if ((i + j) % 2 == 0)
|
|
|
|
|
cairo_rectangle (cr,
|
|
|
|
|
x + block_width * i, y + block_height * j,
|
|
|
|
|
block_width, block_height);
|
|
|
|
|
|
|
|
|
|
cairo_fill (cr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void (*draw_funcs[])(cairo_t *cr, int x, int y) = {
|
|
|
|
|
draw_mask,
|
|
|
|
|
draw_glyphs,
|
|
|
|
|
draw_polygon,
|
|
|
|
|
draw_rects
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define N_OPERATORS (1 + CAIRO_OPERATOR_SATURATE - CAIRO_OPERATOR_CLEAR)
|
|
|
|
|
|
|
|
|
|
#define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0]))
|
|
|
|
|
#define IMAGE_WIDTH (N_OPERATORS * (WIDTH + PAD) + PAD)
|
|
|
|
|
#define IMAGE_HEIGHT (ARRAY_SIZE (draw_funcs) * (HEIGHT + PAD) + PAD)
|
|
|
|
|
|
2006-07-11 22:19:39 -04:00
|
|
|
cairo_test_t test = {
|
2005-08-08 13:46:11 +00:00
|
|
|
"clip-operator",
|
|
|
|
|
"Surface clipping with different operators",
|
2006-07-11 22:19:39 -04:00
|
|
|
IMAGE_WIDTH, IMAGE_HEIGHT,
|
|
|
|
|
draw
|
2005-08-08 13:46:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static cairo_test_status_t
|
|
|
|
|
draw (cairo_t *cr, int width, int height)
|
|
|
|
|
{
|
|
|
|
|
int j, x, y;
|
|
|
|
|
cairo_operator_t op;
|
|
|
|
|
cairo_font_options_t *font_options;
|
|
|
|
|
cairo_pattern_t *pattern;
|
|
|
|
|
|
|
|
|
|
cairo_select_font_face (cr, "Bitstream Vera Sans",
|
|
|
|
|
CAIRO_FONT_SLANT_NORMAL,
|
|
|
|
|
CAIRO_FONT_WEIGHT_NORMAL);
|
|
|
|
|
cairo_set_font_size (cr, 0.9 * HEIGHT);
|
|
|
|
|
|
|
|
|
|
font_options = cairo_font_options_create ();
|
|
|
|
|
|
|
|
|
|
cairo_font_options_set_hint_style (font_options, CAIRO_HINT_STYLE_NONE);
|
|
|
|
|
cairo_font_options_set_antialias (font_options, CAIRO_ANTIALIAS_GRAY);
|
|
|
|
|
|
|
|
|
|
cairo_set_font_options (cr, font_options);
|
|
|
|
|
cairo_font_options_destroy (font_options);
|
|
|
|
|
|
|
|
|
|
for (j = 0; j < ARRAY_SIZE (draw_funcs); j++) {
|
2005-11-08 17:43:13 +00:00
|
|
|
for (op = CAIRO_OPERATOR_CLEAR; op < N_OPERATORS; op++) {
|
2005-08-08 13:46:11 +00:00
|
|
|
x = op * (WIDTH + PAD) + PAD;
|
|
|
|
|
y = j * (HEIGHT + PAD) + PAD;
|
2006-06-06 15:25:49 -07:00
|
|
|
|
2005-08-08 13:46:11 +00:00
|
|
|
cairo_save (cr);
|
|
|
|
|
|
|
|
|
|
pattern = cairo_pattern_create_linear (x + WIDTH, y,
|
|
|
|
|
x, y + HEIGHT);
|
|
|
|
|
cairo_pattern_add_color_stop_rgba (pattern, 0.2,
|
|
|
|
|
0.0, 0.0, 1.0, 1.0); /* Solid blue */
|
|
|
|
|
cairo_pattern_add_color_stop_rgba (pattern, 0.8,
|
|
|
|
|
0.0, 0.0, 1.0, 0.0); /* Transparent blue */
|
|
|
|
|
cairo_set_source (cr, pattern);
|
|
|
|
|
cairo_pattern_destroy (pattern);
|
2006-06-06 15:25:49 -07:00
|
|
|
|
2005-08-08 13:46:11 +00:00
|
|
|
cairo_rectangle (cr, x, y, WIDTH, HEIGHT);
|
|
|
|
|
cairo_fill (cr);
|
|
|
|
|
|
|
|
|
|
cairo_set_operator (cr, op);
|
|
|
|
|
cairo_set_source_rgb (cr, 1.0, 0.0, 0.0);
|
|
|
|
|
|
|
|
|
|
cairo_move_to (cr, x, y);
|
|
|
|
|
cairo_line_to (cr, x + WIDTH, y);
|
|
|
|
|
cairo_line_to (cr, x, y + HEIGHT);
|
|
|
|
|
cairo_clip (cr);
|
|
|
|
|
|
|
|
|
|
draw_funcs[j] (cr, x, y);
|
|
|
|
|
if (cairo_status (cr))
|
|
|
|
|
cairo_test_log ("%d %d HERE!\n", op, j);
|
2006-06-06 15:25:49 -07:00
|
|
|
|
2005-08-08 13:46:11 +00:00
|
|
|
cairo_restore (cr);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (cairo_status (cr) != CAIRO_STATUS_SUCCESS)
|
|
|
|
|
cairo_test_log ("%d %d .HERE!\n", op, j);
|
|
|
|
|
|
|
|
|
|
return CAIRO_TEST_SUCCESS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
main (void)
|
|
|
|
|
{
|
2006-07-11 22:19:39 -04:00
|
|
|
return cairo_test (&test);
|
2005-08-08 13:46:11 +00:00
|
|
|
}
|