Return result from pixman_image_set_transform().
[profile/ivi/pixman.git] / pixman / pixman-image.c
1 /*
2  * Copyright © 2000 SuSE, Inc.
3  * Copyright © 2007 Red Hat, Inc.
4  *
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.
14  *
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.
21  */
22
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
26
27 #include <stdlib.h>
28 #include <stdio.h>
29 #include <string.h>
30 #include <assert.h>
31
32 #include "pixman-private.h"
33 #include "pixman-combine32.h"
34
35 pixman_bool_t
36 _pixman_init_gradient (gradient_t *                  gradient,
37                        const pixman_gradient_stop_t *stops,
38                        int                           n_stops)
39 {
40     return_val_if_fail (n_stops > 0, FALSE);
41
42     gradient->stops = pixman_malloc_ab (n_stops, sizeof (pixman_gradient_stop_t));
43     if (!gradient->stops)
44         return FALSE;
45
46     memcpy (gradient->stops, stops, n_stops * sizeof (pixman_gradient_stop_t));
47
48     gradient->n_stops = n_stops;
49
50     gradient->stop_range = 0xffff;
51     gradient->color_table = NULL;
52     gradient->color_table_size = 0;
53     gradient->common.class = SOURCE_IMAGE_CLASS_UNKNOWN;
54
55     return TRUE;
56 }
57
58 /*
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.
63  */
64 void
65 _pixman_image_get_scanline_generic_64 (pixman_image_t * image,
66                                        int              x,
67                                        int              y,
68                                        int              width,
69                                        uint32_t *       buffer,
70                                        const uint32_t * mask,
71                                        uint32_t         mask_bits)
72 {
73     uint32_t *mask8 = NULL;
74
75     /* Contract the mask image, if one exists, so that the 32-bit fetch
76      * function can use it.
77      */
78     if (mask)
79     {
80         mask8 = pixman_malloc_ab (width, sizeof(uint32_t));
81         if (!mask8)
82             return;
83
84         pixman_contract (mask8, (uint64_t *)mask, width);
85     }
86
87     /* Fetch the source image into the first half of buffer. */
88     _pixman_image_get_scanline_32 (image, x, y, width, (uint32_t*)buffer, mask8,
89                                    mask_bits);
90
91     /* Expand from 32bpp to 64bpp in place. */
92     pixman_expand ((uint64_t *)buffer, buffer, PIXMAN_a8r8g8b8, width);
93
94     free (mask8);
95 }
96
97 pixman_image_t *
98 _pixman_image_allocate (void)
99 {
100     pixman_image_t *image = malloc (sizeof (pixman_image_t));
101
102     if (image)
103     {
104         image_common_t *common = &image->common;
105
106         pixman_region32_init (&common->clip_region);
107
108         common->have_clip_region = FALSE;
109         common->clip_sources = FALSE;
110         common->transform = NULL;
111         common->repeat = PIXMAN_REPEAT_NONE;
112         common->filter = PIXMAN_FILTER_NEAREST;
113         common->filter_params = NULL;
114         common->n_filter_params = 0;
115         common->alpha_map = NULL;
116         common->component_alpha = FALSE;
117         common->ref_count = 1;
118         common->classify = NULL;
119         common->client_clip = FALSE;
120         common->destroy_func = NULL;
121         common->destroy_data = NULL;
122         common->need_workaround = FALSE;
123         common->dirty = TRUE;
124     }
125
126     return image;
127 }
128
129 source_image_class_t
130 _pixman_image_classify (pixman_image_t *image,
131                         int             x,
132                         int             y,
133                         int             width,
134                         int             height)
135 {
136     if (image->common.classify)
137         return image->common.classify (image, x, y, width, height);
138     else
139         return SOURCE_IMAGE_CLASS_UNKNOWN;
140 }
141
142 void
143 _pixman_image_get_scanline_32 (pixman_image_t *image,
144                                int             x,
145                                int             y,
146                                int             width,
147                                uint32_t *      buffer,
148                                const uint32_t *mask,
149                                uint32_t        mask_bits)
150 {
151     image->common.get_scanline_32 (image, x, y, width, buffer, mask, mask_bits);
152 }
153
154 /* Even thought the type of buffer is uint32_t *, the function actually expects
155  * a uint64_t *buffer.
156  */
157 void
158 _pixman_image_get_scanline_64 (pixman_image_t *image,
159                                int             x,
160                                int             y,
161                                int             width,
162                                uint32_t *      buffer,
163                                const uint32_t *unused,
164                                uint32_t        unused2)
165 {
166     image->common.get_scanline_64 (image, x, y, width, buffer, unused, unused2);
167 }
168
169 static void
170 image_property_changed (pixman_image_t *image)
171 {
172     image->common.dirty = TRUE;
173 }
174
175 /* Ref Counting */
176 PIXMAN_EXPORT pixman_image_t *
177 pixman_image_ref (pixman_image_t *image)
178 {
179     image->common.ref_count++;
180
181     return image;
182 }
183
184 /* returns TRUE when the image is freed */
185 PIXMAN_EXPORT pixman_bool_t
186 pixman_image_unref (pixman_image_t *image)
187 {
188     image_common_t *common = (image_common_t *)image;
189
190     common->ref_count--;
191
192     if (common->ref_count == 0)
193     {
194         if (image->common.destroy_func)
195             image->common.destroy_func (image, image->common.destroy_data);
196
197         pixman_region32_fini (&common->clip_region);
198
199         if (common->transform)
200             free (common->transform);
201
202         if (common->filter_params)
203             free (common->filter_params);
204
205         if (common->alpha_map)
206             pixman_image_unref ((pixman_image_t *)common->alpha_map);
207
208         if (image->type == LINEAR ||
209             image->type == RADIAL ||
210             image->type == CONICAL)
211         {
212             if (image->gradient.stops)
213                 free (image->gradient.stops);
214         }
215
216         if (image->type == BITS && image->bits.free_me)
217             free (image->bits.free_me);
218
219         free (image);
220
221         return TRUE;
222     }
223
224     return FALSE;
225 }
226
227 PIXMAN_EXPORT void
228 pixman_image_set_destroy_function (pixman_image_t *            image,
229                                    pixman_image_destroy_func_t func,
230                                    void *                      data)
231 {
232     image->common.destroy_func = func;
233     image->common.destroy_data = data;
234 }
235
236 void
237 _pixman_image_reset_clip_region (pixman_image_t *image)
238 {
239     image->common.have_clip_region = FALSE;
240 }
241
242 void
243 _pixman_image_validate (pixman_image_t *image)
244 {
245     if (image->common.dirty)
246     {
247         image->common.property_changed (image);
248         image->common.dirty = FALSE;
249     }
250 }
251
252 PIXMAN_EXPORT pixman_bool_t
253 pixman_image_set_clip_region32 (pixman_image_t *   image,
254                                 pixman_region32_t *region)
255 {
256     image_common_t *common = (image_common_t *)image;
257     pixman_bool_t result;
258
259     if (region)
260     {
261         if ((result = pixman_region32_copy (&common->clip_region, region)))
262             image->common.have_clip_region = TRUE;
263     }
264     else
265     {
266         _pixman_image_reset_clip_region (image);
267
268         result = TRUE;
269     }
270
271     image_property_changed (image);
272
273     return result;
274 }
275
276 PIXMAN_EXPORT pixman_bool_t
277 pixman_image_set_clip_region (pixman_image_t *   image,
278                               pixman_region16_t *region)
279 {
280     image_common_t *common = (image_common_t *)image;
281     pixman_bool_t result;
282
283     if (region)
284     {
285         if ((result = pixman_region32_copy_from_region16 (&common->clip_region, region)))
286             image->common.have_clip_region = TRUE;
287     }
288     else
289     {
290         _pixman_image_reset_clip_region (image);
291
292         result = TRUE;
293     }
294
295     image_property_changed (image);
296
297     return result;
298 }
299
300 PIXMAN_EXPORT void
301 pixman_image_set_has_client_clip (pixman_image_t *image,
302                                   pixman_bool_t   client_clip)
303 {
304     image->common.client_clip = client_clip;
305 }
306
307 PIXMAN_EXPORT pixman_bool_t
308 pixman_image_set_transform (pixman_image_t *          image,
309                             const pixman_transform_t *transform)
310 {
311     static const pixman_transform_t id =
312     {
313         { { pixman_fixed_1, 0, 0 },
314           { 0, pixman_fixed_1, 0 },
315           { 0, 0, pixman_fixed_1 } }
316     };
317
318     image_common_t *common = (image_common_t *)image;
319     pixman_bool_t result;
320
321     if (common->transform == transform)
322         return TRUE;
323
324     if (memcmp (&id, transform, sizeof (pixman_transform_t)) == 0)
325     {
326         free (common->transform);
327         common->transform = NULL;
328         result = TRUE;
329
330         goto out;
331     }
332
333     if (common->transform == NULL)
334         common->transform = malloc (sizeof (pixman_transform_t));
335
336     if (common->transform == NULL)
337     {
338         result = FALSE;
339
340         goto out;
341     }
342
343     memcpy (common->transform, transform, sizeof(pixman_transform_t));
344
345     result = TRUE;
346
347 out:
348     image_property_changed (image);
349
350     return result;
351 }
352
353 PIXMAN_EXPORT void
354 pixman_image_set_repeat (pixman_image_t *image,
355                          pixman_repeat_t repeat)
356 {
357     image->common.repeat = repeat;
358
359     image_property_changed (image);
360 }
361
362 PIXMAN_EXPORT pixman_bool_t
363 pixman_image_set_filter (pixman_image_t *      image,
364                          pixman_filter_t       filter,
365                          const pixman_fixed_t *params,
366                          int                   n_params)
367 {
368     image_common_t *common = (image_common_t *)image;
369     pixman_fixed_t *new_params;
370
371     if (params == common->filter_params && filter == common->filter)
372         return TRUE;
373
374     new_params = NULL;
375     if (params)
376     {
377         new_params = pixman_malloc_ab (n_params, sizeof (pixman_fixed_t));
378         if (!new_params)
379             return FALSE;
380
381         memcpy (new_params,
382                 params, n_params * sizeof (pixman_fixed_t));
383     }
384
385     common->filter = filter;
386
387     if (common->filter_params)
388         free (common->filter_params);
389
390     common->filter_params = new_params;
391     common->n_filter_params = n_params;
392
393     image_property_changed (image);
394     return TRUE;
395 }
396
397 PIXMAN_EXPORT void
398 pixman_image_set_source_clipping (pixman_image_t *image,
399                                   pixman_bool_t   clip_sources)
400 {
401     image->common.clip_sources = clip_sources;
402
403     image_property_changed (image);
404 }
405
406 /* Unlike all the other property setters, this function does not
407  * copy the content of indexed. Doing this copying is simply
408  * way, way too expensive.
409  */
410 PIXMAN_EXPORT void
411 pixman_image_set_indexed (pixman_image_t *        image,
412                           const pixman_indexed_t *indexed)
413 {
414     bits_image_t *bits = (bits_image_t *)image;
415
416     bits->indexed = indexed;
417
418     image_property_changed (image);
419 }
420
421 PIXMAN_EXPORT void
422 pixman_image_set_alpha_map (pixman_image_t *image,
423                             pixman_image_t *alpha_map,
424                             int16_t         x,
425                             int16_t         y)
426 {
427     image_common_t *common = (image_common_t *)image;
428
429     return_if_fail (!alpha_map || alpha_map->type == BITS);
430
431     if (common->alpha_map != (bits_image_t *)alpha_map)
432     {
433         if (common->alpha_map)
434             pixman_image_unref ((pixman_image_t *)common->alpha_map);
435
436         if (alpha_map)
437             common->alpha_map = (bits_image_t *)pixman_image_ref (alpha_map);
438         else
439             common->alpha_map = NULL;
440     }
441
442     common->alpha_origin_x = x;
443     common->alpha_origin_y = y;
444
445     image_property_changed (image);
446 }
447
448 PIXMAN_EXPORT void
449 pixman_image_set_component_alpha   (pixman_image_t *image,
450                                     pixman_bool_t   component_alpha)
451 {
452     image->common.component_alpha = component_alpha;
453
454     image_property_changed (image);
455 }
456
457 PIXMAN_EXPORT void
458 pixman_image_set_accessors (pixman_image_t *           image,
459                             pixman_read_memory_func_t  read_func,
460                             pixman_write_memory_func_t write_func)
461 {
462     return_if_fail (image != NULL);
463
464     if (image->type == BITS)
465     {
466         image->bits.read_func = read_func;
467         image->bits.write_func = write_func;
468
469         image_property_changed (image);
470     }
471 }
472
473 PIXMAN_EXPORT uint32_t *
474 pixman_image_get_data (pixman_image_t *image)
475 {
476     if (image->type == BITS)
477         return image->bits.bits;
478
479     return NULL;
480 }
481
482 PIXMAN_EXPORT int
483 pixman_image_get_width (pixman_image_t *image)
484 {
485     if (image->type == BITS)
486         return image->bits.width;
487
488     return 0;
489 }
490
491 PIXMAN_EXPORT int
492 pixman_image_get_height (pixman_image_t *image)
493 {
494     if (image->type == BITS)
495         return image->bits.height;
496
497     return 0;
498 }
499
500 PIXMAN_EXPORT int
501 pixman_image_get_stride (pixman_image_t *image)
502 {
503     if (image->type == BITS)
504         return image->bits.rowstride * (int) sizeof (uint32_t);
505
506     return 0;
507 }
508
509 PIXMAN_EXPORT int
510 pixman_image_get_depth (pixman_image_t *image)
511 {
512     if (image->type == BITS)
513         return PIXMAN_FORMAT_DEPTH (image->bits.format);
514
515     return 0;
516 }
517
518 pixman_bool_t
519 _pixman_image_is_solid (pixman_image_t *image)
520 {
521     if (image->type == SOLID)
522         return TRUE;
523
524     if (image->type != BITS     ||
525         image->bits.width != 1  ||
526         image->bits.height != 1)
527     {
528         return FALSE;
529     }
530
531     if (image->common.repeat == PIXMAN_REPEAT_NONE)
532         return FALSE;
533
534     return TRUE;
535 }
536
537 uint32_t
538 _pixman_image_get_solid (pixman_image_t *     image,
539                          pixman_format_code_t format)
540 {
541     uint32_t result;
542
543     _pixman_image_get_scanline_32 (image, 0, 0, 1, &result, NULL, 0);
544
545     /* If necessary, convert RGB <--> BGR. */
546     if (PIXMAN_FORMAT_TYPE (format) != PIXMAN_TYPE_ARGB)
547     {
548         result = (((result & 0xff000000) >>  0) |
549                   ((result & 0x00ff0000) >> 16) |
550                   ((result & 0x0000ff00) >>  0) |
551                   ((result & 0x000000ff) << 16));
552     }
553
554     return result;
555 }
556
557 pixman_bool_t
558 _pixman_image_is_opaque (pixman_image_t *image)
559 {
560     int i;
561
562     if (image->common.alpha_map)
563         return FALSE;
564
565     switch (image->type)
566     {
567     case BITS:
568         if (image->common.repeat == PIXMAN_REPEAT_NONE)
569             return FALSE;
570
571         if (PIXMAN_FORMAT_A (image->bits.format))
572             return FALSE;
573         break;
574
575     case LINEAR:
576     case RADIAL:
577         if (image->common.repeat == PIXMAN_REPEAT_NONE)
578             return FALSE;
579
580         for (i = 0; i < image->gradient.n_stops; ++i)
581         {
582             if (image->gradient.stops[i].color.alpha != 0xffff)
583                 return FALSE;
584         }
585         break;
586
587     case CONICAL:
588         /* Conical gradients always have a transparent border */
589         return FALSE;
590         break;
591
592     case SOLID:
593         if (ALPHA_8 (image->solid.color) != 0xff)
594             return FALSE;
595         break;
596     }
597
598     /* Convolution filters can introduce translucency if the sum of the
599      * weights is lower than 1.
600      */
601     if (image->common.filter == PIXMAN_FILTER_CONVOLUTION)
602         return FALSE;
603
604     return TRUE;
605 }
606