1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
/*
* Copyright © 2011 Intel Corporation
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use, copy,
* modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
* Author: Chris Wilson <chris@chris-wilson.co.uk>
*/
#include "cairo-test.h"
#include <stdio.h>
#include <errno.h>
/* Basic test to exercise the new mime-surface callback. */
#define WIDTH 200
#define HEIGHT 80
static char *png_filename = NULL;
/* Lazy way of determining PNG dimensions... */
static void
png_dimensions (const char *filename,
cairo_content_t *content, int *width, int *height)
{
cairo_surface_t *surface;
surface = cairo_image_surface_create_from_png (filename);
*content = cairo_surface_get_content (surface);
*width = cairo_image_surface_get_width (surface);
*height = cairo_image_surface_get_height (surface);
cairo_surface_destroy (surface);
}
static cairo_surface_t *
png_acquire (cairo_pattern_t *pattern, void *closure,
cairo_surface_t *target,
const cairo_rectangle_int_t *extents)
{
return cairo_image_surface_create_from_png (closure);
}
static cairo_surface_t *
red_acquire (cairo_pattern_t *pattern, void *closure,
cairo_surface_t *target,
const cairo_rectangle_int_t *extents)
{
cairo_surface_t *image;
cairo_t *cr;
image = cairo_surface_create_similar_image (target,
CAIRO_FORMAT_RGB24,
extents->width,
extents->height);
cairo_surface_set_device_offset (image, extents->x, extents->y);
cr = cairo_create (image);
cairo_set_source_rgb (cr, 1, 0, 0);
cairo_paint (cr);
cairo_destroy (cr);
return image;
}
static void
release (cairo_pattern_t *pattern, void *closure, cairo_surface_t *image)
{
cairo_surface_destroy (image);
}
static void
free_filename(void)
{
free (png_filename);
}
static cairo_test_status_t
draw (cairo_t *cr, int width, int height)
{
cairo_pattern_t *png, *red;
cairo_content_t content;
int png_width, png_height;
int i, j;
if (png_filename == NULL) {
const cairo_test_context_t *ctx = cairo_test_get_context (cr);
xasprintf (&png_filename, "%s/png.png", ctx->srcdir);
atexit (free_filename);
}
png_dimensions (png_filename, &content, &png_width, &png_height);
png = cairo_pattern_create_raster_source ((void*)png_filename,
content, png_width, png_height);
cairo_raster_source_pattern_set_acquire (png, png_acquire, release);
red = cairo_pattern_create_raster_source (NULL,
CAIRO_CONTENT_COLOR, WIDTH, HEIGHT);
cairo_raster_source_pattern_set_acquire (red, red_acquire, release);
cairo_set_source_rgb (cr, 0, 0, 1);
cairo_paint (cr);
cairo_translate (cr, 0, (HEIGHT-png_height)/2);
for (i = 0; i < 4; i++) {
for (j = 0; j < 4; j++) {
cairo_pattern_t *source;
if ((i ^ j) & 1)
source = red;
else
source = png;
cairo_set_source (cr, source);
cairo_rectangle (cr, i * WIDTH/4, j * png_height/4, WIDTH/4, png_height/4);
cairo_fill (cr);
}
}
cairo_pattern_destroy (red);
cairo_pattern_destroy (png);
return CAIRO_TEST_SUCCESS;
}
CAIRO_TEST (raster_source,
"Check that the mime-surface embedding works",
"api", /* keywords */
NULL, /* requirements */
WIDTH, HEIGHT,
NULL, draw)
|