2 * Copyright © 2000 SuSE, Inc.
3 * Copyright © 2007 Red Hat, Inc.
5 * Permission to use, copy, modify, distribute, and sell this software and its
6 * documentation for any purpose is hereby granted without fee, provided that
7 * the above copyright notice appear in all copies and that both that
8 * copyright notice and this permission notice appear in supporting
9 * documentation, and that the name of SuSE not be used in advertising or
10 * publicity pertaining to distribution of the software without specific,
11 * written prior permission. SuSE makes no representations about the
12 * suitability of this software for any purpose. It is provided "as is"
13 * without express or implied warranty.
15 * SuSE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL SuSE
17 * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
18 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
19 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
20 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
32 #include "pixman-private.h"
33 #include "pixman-combine32.h"
36 _pixman_init_gradient (gradient_t *gradient,
37 const pixman_gradient_stop_t *stops,
40 return_val_if_fail (n_stops > 0, FALSE);
42 gradient->stops = pixman_malloc_ab (n_stops, sizeof (pixman_gradient_stop_t));
46 memcpy (gradient->stops, stops, n_stops * sizeof (pixman_gradient_stop_t));
48 gradient->n_stops = n_stops;
50 gradient->stop_range = 0xffff;
51 gradient->color_table = NULL;
52 gradient->color_table_size = 0;
53 gradient->common.class = SOURCE_IMAGE_CLASS_UNKNOWN;
59 * By default, just evaluate the image at 32bpp and expand. Individual image
60 * types can plug in a better scanline getter if they want to. For example
61 * we could produce smoother gradients by evaluating them at higher color
62 * depth, but that's a project for the future.
65 _pixman_image_get_scanline_generic_64 (pixman_image_t * pict, int x, int y,
66 int width, uint32_t *buffer,
67 const uint32_t *mask, uint32_t mask_bits)
69 uint32_t *mask8 = NULL;
71 // Contract the mask image, if one exists, so that the 32-bit fetch
72 // function can use it.
74 mask8 = pixman_malloc_ab(width, sizeof(uint32_t));
78 pixman_contract (mask8, (uint64_t *)mask, width);
81 // Fetch the source image into the first half of buffer.
82 _pixman_image_get_scanline_32 (pict, x, y, width, (uint32_t*)buffer, mask8,
85 // Expand from 32bpp to 64bpp in place.
86 pixman_expand ((uint64_t *)buffer, buffer, PIXMAN_a8r8g8b8, width);
92 _pixman_image_allocate (void)
94 pixman_image_t *image = malloc (sizeof (pixman_image_t));
98 image_common_t *common = &image->common;
100 pixman_region32_init (&common->clip_region);
102 common->have_clip_region = FALSE;
103 common->clip_sources = FALSE;
104 common->transform = NULL;
105 common->repeat = PIXMAN_REPEAT_NONE;
106 common->filter = PIXMAN_FILTER_NEAREST;
107 common->filter_params = NULL;
108 common->n_filter_params = 0;
109 common->alpha_map = NULL;
110 common->component_alpha = FALSE;
111 common->ref_count = 1;
112 common->read_func = NULL;
113 common->write_func = NULL;
114 common->classify = NULL;
115 common->client_clip = FALSE;
116 common->destroy_func = NULL;
117 common->destroy_data = NULL;
124 _pixman_image_classify (pixman_image_t *image,
130 if (image->common.classify)
131 return image->common.classify (image, x, y, width, height);
133 return SOURCE_IMAGE_CLASS_UNKNOWN;
137 _pixman_image_get_scanline_32 (pixman_image_t *image, int x, int y, int width, uint32_t *buffer,
138 const uint32_t *mask, uint32_t mask_bits)
140 image->common.get_scanline_32 (image, x, y, width, buffer, mask, mask_bits);
143 /* Even thought the type of buffer is uint32_t *, the function actually expects
144 * a uint64_t *buffer.
147 _pixman_image_get_scanline_64 (pixman_image_t *image, int x, int y, int width, uint32_t *buffer,
148 const uint32_t *unused, uint32_t unused2)
150 image->common.get_scanline_64 (image, x, y, width, buffer, unused, unused2);
154 image_property_changed (pixman_image_t *image)
156 image->common.property_changed (image);
160 PIXMAN_EXPORT pixman_image_t *
161 pixman_image_ref (pixman_image_t *image)
163 image->common.ref_count++;
168 /* returns TRUE when the image is freed */
169 PIXMAN_EXPORT pixman_bool_t
170 pixman_image_unref (pixman_image_t *image)
172 image_common_t *common = (image_common_t *)image;
176 if (common->ref_count == 0)
178 if (image->common.destroy_func)
179 image->common.destroy_func (image, image->common.destroy_data);
181 pixman_region32_fini (&common->clip_region);
183 if (common->transform)
184 free (common->transform);
186 if (common->filter_params)
187 free (common->filter_params);
189 if (common->alpha_map)
190 pixman_image_unref ((pixman_image_t *)common->alpha_map);
193 if (image->type == BITS && image->bits.indexed)
194 free (image->bits.indexed);
198 memset (image, 0xaa, sizeof (pixman_image_t));
200 if (image->type == LINEAR || image->type == RADIAL || image->type == CONICAL)
202 if (image->gradient.stops)
203 free (image->gradient.stops);
207 if (image->type == BITS && image->bits.free_me)
208 free (image->bits.free_me);
219 pixman_image_set_destroy_function (pixman_image_t *image,
220 pixman_image_destroy_func_t func,
223 image->common.destroy_func = func;
224 image->common.destroy_data = data;
231 _pixman_image_reset_clip_region (pixman_image_t *image)
233 image->common.have_clip_region = FALSE;
236 PIXMAN_EXPORT pixman_bool_t
237 pixman_image_set_clip_region32 (pixman_image_t *image,
238 pixman_region32_t *region)
240 image_common_t *common = (image_common_t *)image;
241 pixman_bool_t result;
245 if ((result = pixman_region32_copy (&common->clip_region, region)))
246 image->common.have_clip_region = TRUE;
250 _pixman_image_reset_clip_region (image);
255 image_property_changed (image);
261 PIXMAN_EXPORT pixman_bool_t
262 pixman_image_set_clip_region (pixman_image_t *image,
263 pixman_region16_t *region)
265 image_common_t *common = (image_common_t *)image;
266 pixman_bool_t result;
270 if ((result = pixman_region32_copy_from_region16 (&common->clip_region, region)))
271 image->common.have_clip_region = TRUE;
275 _pixman_image_reset_clip_region (image);
280 image_property_changed (image);
286 pixman_image_set_has_client_clip (pixman_image_t *image,
287 pixman_bool_t client_clip)
289 image->common.client_clip = client_clip;
292 PIXMAN_EXPORT pixman_bool_t
293 pixman_image_set_transform (pixman_image_t *image,
294 const pixman_transform_t *transform)
296 static const pixman_transform_t id =
298 { { pixman_fixed_1, 0, 0 },
299 { 0, pixman_fixed_1, 0 },
300 { 0, 0, pixman_fixed_1 }
304 image_common_t *common = (image_common_t *)image;
305 pixman_bool_t result;
307 if (common->transform == transform)
310 if (memcmp (&id, transform, sizeof (pixman_transform_t)) == 0)
312 free(common->transform);
313 common->transform = NULL;
318 if (common->transform == NULL)
319 common->transform = malloc (sizeof (pixman_transform_t));
321 if (common->transform == NULL)
327 memcpy(common->transform, transform, sizeof(pixman_transform_t));
330 image_property_changed (image);
336 pixman_image_set_repeat (pixman_image_t *image,
337 pixman_repeat_t repeat)
339 image->common.repeat = repeat;
341 image_property_changed (image);
344 PIXMAN_EXPORT pixman_bool_t
345 pixman_image_set_filter (pixman_image_t *image,
346 pixman_filter_t filter,
347 const pixman_fixed_t *params,
350 image_common_t *common = (image_common_t *)image;
351 pixman_fixed_t *new_params;
353 if (params == common->filter_params && filter == common->filter)
359 new_params = pixman_malloc_ab (n_params, sizeof (pixman_fixed_t));
364 params, n_params * sizeof (pixman_fixed_t));
367 common->filter = filter;
369 if (common->filter_params)
370 free (common->filter_params);
372 common->filter_params = new_params;
373 common->n_filter_params = n_params;
375 image_property_changed (image);
380 pixman_image_set_source_clipping (pixman_image_t *image,
381 pixman_bool_t clip_sources)
383 image->common.clip_sources = clip_sources;
386 /* Unlike all the other property setters, this function does not
387 * copy the content of indexed. Doing this copying is simply
388 * way, way too expensive.
391 pixman_image_set_indexed (pixman_image_t *image,
392 const pixman_indexed_t *indexed)
394 bits_image_t *bits = (bits_image_t *)image;
396 bits->indexed = indexed;
398 image_property_changed (image);
402 pixman_image_set_alpha_map (pixman_image_t *image,
403 pixman_image_t *alpha_map,
407 image_common_t *common = (image_common_t *)image;
409 return_if_fail (!alpha_map || alpha_map->type == BITS);
411 if (common->alpha_map != (bits_image_t *)alpha_map)
413 if (common->alpha_map)
414 pixman_image_unref ((pixman_image_t *)common->alpha_map);
417 common->alpha_map = (bits_image_t *)pixman_image_ref (alpha_map);
419 common->alpha_map = NULL;
422 common->alpha_origin_x = x;
423 common->alpha_origin_y = y;
425 image_property_changed (image);
429 pixman_image_set_component_alpha (pixman_image_t *image,
430 pixman_bool_t component_alpha)
432 image->common.component_alpha = component_alpha;
434 image_property_changed (image);
439 pixman_image_set_accessors (pixman_image_t *image,
440 pixman_read_memory_func_t read_func,
441 pixman_write_memory_func_t write_func)
443 return_if_fail (image != NULL);
445 image->common.read_func = read_func;
446 image->common.write_func = write_func;
448 image_property_changed (image);
451 PIXMAN_EXPORT uint32_t *
452 pixman_image_get_data (pixman_image_t *image)
454 if (image->type == BITS)
455 return image->bits.bits;
461 pixman_image_get_width (pixman_image_t *image)
463 if (image->type == BITS)
464 return image->bits.width;
470 pixman_image_get_height (pixman_image_t *image)
472 if (image->type == BITS)
473 return image->bits.height;
479 pixman_image_get_stride (pixman_image_t *image)
481 if (image->type == BITS)
482 return image->bits.rowstride * (int) sizeof (uint32_t);
488 pixman_image_get_depth (pixman_image_t *image)
490 if (image->type == BITS)
491 return PIXMAN_FORMAT_DEPTH (image->bits.format);
497 _pixman_image_is_solid (pixman_image_t *image)
499 if (image->type == SOLID)
502 if (image->type != BITS ||
503 image->bits.width != 1 ||
504 image->bits.height != 1)
509 if (image->common.repeat == PIXMAN_REPEAT_NONE)
516 _pixman_image_get_solid (pixman_image_t *image, pixman_format_code_t format)
520 _pixman_image_get_scanline_32 (image, 0, 0, 1, &result, NULL, 0);
522 /* If necessary, convert RGB <--> BGR. */
523 if (PIXMAN_FORMAT_TYPE (format) != PIXMAN_TYPE_ARGB)
525 result = (((result & 0xff000000) >> 0) |
526 ((result & 0x00ff0000) >> 16) |
527 ((result & 0x0000ff00) >> 0) |
528 ((result & 0x000000ff) << 16));
535 _pixman_image_is_opaque (pixman_image_t *image)
539 if (image->common.alpha_map)
545 if (image->common.repeat == PIXMAN_REPEAT_NONE)
548 if (PIXMAN_FORMAT_A (image->bits.format))
554 if (image->common.repeat == PIXMAN_REPEAT_NONE)
557 for (i = 0; i < image->gradient.n_stops; ++i)
559 if (image->gradient.stops[i].color.alpha != 0xffff)
565 /* Conical gradients always have a transparent border */
570 if (ALPHA_8 (image->solid.color) != 0xff)
575 /* Convolution filters can introduce translucency if the sum of the
576 * weights is lower than 1.
578 if (image->common.filter == PIXMAN_FILTER_CONVOLUTION)