Move computation of extended format code to validate.
[profile/ivi/pixman.git] / pixman / pixman-private.h
1 #ifndef PACKAGE
2 #  error config.h must be included before pixman-private.h
3 #endif
4
5 #ifndef PIXMAN_PRIVATE_H
6 #define PIXMAN_PRIVATE_H
7
8 #define PIXMAN_DISABLE_DEPRECATED
9 #define PIXMAN_USE_INTERNAL_API
10
11 #include "pixman.h"
12 #include <time.h>
13 #include <assert.h>
14
15 #include "pixman-compiler.h"
16
17 /*
18  * Images
19  */
20 typedef struct image_common image_common_t;
21 typedef struct source_image source_image_t;
22 typedef struct solid_fill solid_fill_t;
23 typedef struct gradient gradient_t;
24 typedef struct linear_gradient linear_gradient_t;
25 typedef struct horizontal_gradient horizontal_gradient_t;
26 typedef struct vertical_gradient vertical_gradient_t;
27 typedef struct conical_gradient conical_gradient_t;
28 typedef struct radial_gradient radial_gradient_t;
29 typedef struct bits_image bits_image_t;
30 typedef struct circle circle_t;
31
32 typedef void (*fetch_scanline_t) (pixman_image_t *image,
33                                   int             x,
34                                   int             y,
35                                   int             width,
36                                   uint32_t       *buffer,
37                                   const uint32_t *mask,
38                                   uint32_t        mask_bits);
39
40 typedef uint32_t (*fetch_pixel_32_t) (bits_image_t *image,
41                                       int           x,
42                                       int           y);
43
44 typedef uint64_t (*fetch_pixel_64_t) (bits_image_t *image,
45                                       int           x,
46                                       int           y);
47
48 typedef void (*store_scanline_t) (bits_image_t *  image,
49                                   int             x,
50                                   int             y,
51                                   int             width,
52                                   const uint32_t *values);
53
54 typedef enum
55 {
56     BITS,
57     LINEAR,
58     CONICAL,
59     RADIAL,
60     SOLID
61 } image_type_t;
62
63 typedef enum
64 {
65     SOURCE_IMAGE_CLASS_UNKNOWN,
66     SOURCE_IMAGE_CLASS_HORIZONTAL,
67     SOURCE_IMAGE_CLASS_VERTICAL,
68 } source_image_class_t;
69
70 typedef source_image_class_t (*classify_func_t) (pixman_image_t *image,
71                                                 int             x,
72                                                 int             y,
73                                                 int             width,
74                                                 int             height);
75 typedef void (*property_changed_func_t) (pixman_image_t *image);
76
77 struct image_common
78 {
79     image_type_t                type;
80     int32_t                     ref_count;
81     pixman_region32_t           clip_region;
82     pixman_bool_t               have_clip_region;   /* FALSE if there is no clip */
83     pixman_bool_t               client_clip;        /* Whether the source clip was
84                                                        set by a client */
85     pixman_bool_t               clip_sources;       /* Whether the clip applies when
86                                                      * the image is used as a source
87                                                      */
88     pixman_bool_t               dirty;
89     pixman_bool_t               need_workaround;
90     pixman_transform_t *        transform;
91     pixman_repeat_t             repeat;
92     pixman_filter_t             filter;
93     pixman_fixed_t *            filter_params;
94     int                         n_filter_params;
95     bits_image_t *              alpha_map;
96     int                         alpha_origin_x;
97     int                         alpha_origin_y;
98     pixman_bool_t               component_alpha;
99     classify_func_t             classify;
100     property_changed_func_t     property_changed;
101     fetch_scanline_t            get_scanline_32;
102     fetch_scanline_t            get_scanline_64;
103
104     pixman_image_destroy_func_t destroy_func;
105     void *                      destroy_data;
106
107     uint32_t                    flags;
108     pixman_format_code_t        extended_format_code;
109 };
110
111 struct source_image
112 {
113     image_common_t common;
114     source_image_class_t class;
115 };
116
117 struct solid_fill
118 {
119     source_image_t common;
120     pixman_color_t color;
121     
122     uint32_t       color_32;
123     uint64_t       color_64;
124 };
125
126 struct gradient
127 {
128     source_image_t          common;
129     int                     n_stops;
130     pixman_gradient_stop_t *stops;
131     int                     stop_range;
132 };
133
134 struct linear_gradient
135 {
136     gradient_t           common;
137     pixman_point_fixed_t p1;
138     pixman_point_fixed_t p2;
139 };
140
141 struct circle
142 {
143     pixman_fixed_t x;
144     pixman_fixed_t y;
145     pixman_fixed_t radius;
146 };
147
148 struct radial_gradient
149 {
150     gradient_t common;
151
152     circle_t   c1;
153     circle_t   c2;
154     double     cdx;
155     double     cdy;
156     double     dr;
157     double     A;
158 };
159
160 struct conical_gradient
161 {
162     gradient_t           common;
163     pixman_point_fixed_t center;
164     pixman_fixed_t       angle;
165 };
166
167 struct bits_image
168 {
169     image_common_t             common;
170     pixman_format_code_t       format;
171     const pixman_indexed_t *   indexed;
172     int                        width;
173     int                        height;
174     uint32_t *                 bits;
175     uint32_t *                 free_me;
176     int                        rowstride;  /* in number of uint32_t's */
177
178     /* Fetch a pixel, disregarding alpha maps, transformations etc. */
179     fetch_pixel_32_t           fetch_pixel_raw_32;
180     fetch_pixel_64_t           fetch_pixel_raw_64;
181
182     /* Fetch a pixel, taking alpha maps into account */
183     fetch_pixel_32_t           fetch_pixel_32;
184     fetch_pixel_64_t           fetch_pixel_64;
185
186     /* Fetch raw scanlines, with no regard for transformations, alpha maps etc. */
187     fetch_scanline_t           fetch_scanline_raw_32;
188     fetch_scanline_t           fetch_scanline_raw_64;
189
190     /* Store scanlines with no regard for alpha maps */
191     store_scanline_t           store_scanline_raw_32;
192     store_scanline_t           store_scanline_raw_64;
193
194     /* Store a scanline, taking alpha maps into account */
195     store_scanline_t           store_scanline_32;
196     store_scanline_t           store_scanline_64;
197
198     /* Used for indirect access to the bits */
199     pixman_read_memory_func_t  read_func;
200     pixman_write_memory_func_t write_func;
201 };
202
203 union pixman_image
204 {
205     image_type_t       type;
206     image_common_t     common;
207     bits_image_t       bits;
208     source_image_t     source;
209     gradient_t         gradient;
210     linear_gradient_t  linear;
211     conical_gradient_t conical;
212     radial_gradient_t  radial;
213     solid_fill_t       solid;
214 };
215
216
217 void
218 _pixman_bits_image_setup_raw_accessors (bits_image_t *image);
219
220 void
221 _pixman_image_get_scanline_generic_64  (pixman_image_t *image,
222                                         int             x,
223                                         int             y,
224                                         int             width,
225                                         uint32_t *      buffer,
226                                         const uint32_t *mask,
227                                         uint32_t        mask_bits);
228
229 source_image_class_t
230 _pixman_image_classify (pixman_image_t *image,
231                         int             x,
232                         int             y,
233                         int             width,
234                         int             height);
235
236 void
237 _pixman_image_get_scanline_32 (pixman_image_t *image,
238                                int             x,
239                                int             y,
240                                int             width,
241                                uint32_t *      buffer,
242                                const uint32_t *mask,
243                                uint32_t        mask_bits);
244
245 /* Even thought the type of buffer is uint32_t *, the function actually expects
246  * a uint64_t *buffer.
247  */
248 void
249 _pixman_image_get_scanline_64 (pixman_image_t *image,
250                                int             x,
251                                int             y,
252                                int             width,
253                                uint32_t *      buffer,
254                                const uint32_t *unused,
255                                uint32_t        unused2);
256
257 void
258 _pixman_image_store_scanline_32 (bits_image_t *  image,
259                                  int             x,
260                                  int             y,
261                                  int             width,
262                                  const uint32_t *buffer);
263
264 /* Even though the type of buffer is uint32_t *, the function
265  * actually expects a uint64_t *buffer.
266  */
267 void
268 _pixman_image_store_scanline_64 (bits_image_t *  image,
269                                  int             x,
270                                  int             y,
271                                  int             width,
272                                  const uint32_t *buffer);
273
274 pixman_image_t *
275 _pixman_image_allocate (void);
276
277 pixman_bool_t
278 _pixman_init_gradient (gradient_t *                  gradient,
279                        const pixman_gradient_stop_t *stops,
280                        int                           n_stops);
281 void
282 _pixman_image_reset_clip_region (pixman_image_t *image);
283
284 void
285 _pixman_image_validate (pixman_image_t *image);
286
287 pixman_bool_t
288 _pixman_image_is_opaque (pixman_image_t *image);
289
290 pixman_bool_t
291 _pixman_image_is_solid (pixman_image_t *image);
292
293 uint32_t
294 _pixman_image_get_solid (pixman_image_t *     image,
295                          pixman_format_code_t format);
296
297 #define PIXMAN_IMAGE_GET_LINE(image, x, y, type, out_stride, line, mul) \
298     do                                                                  \
299     {                                                                   \
300         uint32_t *__bits__;                                             \
301         int       __stride__;                                           \
302                                                                         \
303         __bits__ = image->bits.bits;                                    \
304         __stride__ = image->bits.rowstride;                             \
305         (out_stride) =                                                  \
306             __stride__ * (int) sizeof (uint32_t) / (int) sizeof (type); \
307         (line) =                                                        \
308             ((type *) __bits__) + (out_stride) * (y) + (mul) * (x);     \
309     } while (0)
310
311 /*
312  * Gradient walker
313  */
314 typedef struct
315 {
316     uint32_t                left_ag;
317     uint32_t                left_rb;
318     uint32_t                right_ag;
319     uint32_t                right_rb;
320     int32_t                 left_x;
321     int32_t                 right_x;
322     int32_t                 stepper;
323
324     pixman_gradient_stop_t *stops;
325     int                     num_stops;
326     unsigned int            spread;
327
328     int                     need_reset;
329 } pixman_gradient_walker_t;
330
331 void
332 _pixman_gradient_walker_init (pixman_gradient_walker_t *walker,
333                               gradient_t *              gradient,
334                               unsigned int              spread);
335
336 void
337 _pixman_gradient_walker_reset (pixman_gradient_walker_t *walker,
338                                pixman_fixed_32_32_t      pos);
339
340 uint32_t
341 _pixman_gradient_walker_pixel (pixman_gradient_walker_t *walker,
342                                pixman_fixed_32_32_t      x);
343
344 /*
345  * Edges
346  */
347
348 #define MAX_ALPHA(n)    ((1 << (n)) - 1)
349 #define N_Y_FRAC(n)     ((n) == 1 ? 1 : (1 << ((n) / 2)) - 1)
350 #define N_X_FRAC(n)     ((n) == 1 ? 1 : (1 << ((n) / 2)) + 1)
351
352 #define STEP_Y_SMALL(n) (pixman_fixed_1 / N_Y_FRAC (n))
353 #define STEP_Y_BIG(n)   (pixman_fixed_1 - (N_Y_FRAC (n) - 1) * STEP_Y_SMALL (n))
354
355 #define Y_FRAC_FIRST(n) (STEP_Y_BIG (n) / 2)
356 #define Y_FRAC_LAST(n)  (Y_FRAC_FIRST (n) + (N_Y_FRAC (n) - 1) * STEP_Y_SMALL (n))
357
358 #define STEP_X_SMALL(n) (pixman_fixed_1 / N_X_FRAC (n))
359 #define STEP_X_BIG(n)   (pixman_fixed_1 - (N_X_FRAC (n) - 1) * STEP_X_SMALL (n))
360
361 #define X_FRAC_FIRST(n) (STEP_X_BIG (n) / 2)
362 #define X_FRAC_LAST(n)  (X_FRAC_FIRST (n) + (N_X_FRAC (n) - 1) * STEP_X_SMALL (n))
363
364 #define RENDER_SAMPLES_X(x, n)                                          \
365     ((n) == 1? 0 : (pixman_fixed_frac (x) +                             \
366                     X_FRAC_FIRST (n)) / STEP_X_SMALL (n))
367
368 void
369 pixman_rasterize_edges_accessors (pixman_image_t *image,
370                                   pixman_edge_t * l,
371                                   pixman_edge_t * r,
372                                   pixman_fixed_t  t,
373                                   pixman_fixed_t  b);
374
375 /*
376  * Implementations
377  */
378 typedef struct pixman_implementation_t pixman_implementation_t;
379
380 typedef void (*pixman_combine_32_func_t) (pixman_implementation_t *imp,
381                                           pixman_op_t              op,
382                                           uint32_t *               dest,
383                                           const uint32_t *         src,
384                                           const uint32_t *         mask,
385                                           int                      width);
386
387 typedef void (*pixman_combine_64_func_t) (pixman_implementation_t *imp,
388                                           pixman_op_t              op,
389                                           uint64_t *               dest,
390                                           const uint64_t *         src,
391                                           const uint64_t *         mask,
392                                           int                      width);
393
394 typedef void (*pixman_composite_func_t) (pixman_implementation_t *imp,
395                                          pixman_op_t              op,
396                                          pixman_image_t *         src,
397                                          pixman_image_t *         mask,
398                                          pixman_image_t *         dest,
399                                          int32_t                  src_x,
400                                          int32_t                  src_y,
401                                          int32_t                  mask_x,
402                                          int32_t                  mask_y,
403                                          int32_t                  dest_x,
404                                          int32_t                  dest_y,
405                                          int32_t                  width,
406                                          int32_t                  height);
407 typedef pixman_bool_t (*pixman_blt_func_t) (pixman_implementation_t *imp,
408                                             uint32_t *               src_bits,
409                                             uint32_t *               dst_bits,
410                                             int                      src_stride,
411                                             int                      dst_stride,
412                                             int                      src_bpp,
413                                             int                      dst_bpp,
414                                             int                      src_x,
415                                             int                      src_y,
416                                             int                      dst_x,
417                                             int                      dst_y,
418                                             int                      width,
419                                             int                      height);
420 typedef pixman_bool_t (*pixman_fill_func_t) (pixman_implementation_t *imp,
421                                              uint32_t *               bits,
422                                              int                      stride,
423                                              int                      bpp,
424                                              int                      x,
425                                              int                      y,
426                                              int                      width,
427                                              int                      height,
428                                              uint32_t                 xor);
429
430 void _pixman_setup_combiner_functions_32 (pixman_implementation_t *imp);
431 void _pixman_setup_combiner_functions_64 (pixman_implementation_t *imp);
432
433 typedef struct
434 {
435     pixman_op_t             op;
436     pixman_format_code_t    src_format;
437     uint32_t                src_flags;
438     pixman_format_code_t    mask_format;
439     uint32_t                mask_flags;
440     pixman_format_code_t    dest_format;
441     uint32_t                dest_flags;
442     pixman_composite_func_t func;
443 } pixman_fast_path_t;
444
445 struct pixman_implementation_t
446 {
447     pixman_implementation_t *   toplevel;
448     pixman_implementation_t *   delegate;
449     const pixman_fast_path_t *  fast_paths;
450     
451     pixman_blt_func_t           blt;
452     pixman_fill_func_t          fill;
453
454     pixman_combine_32_func_t    combine_32[PIXMAN_N_OPERATORS];
455     pixman_combine_32_func_t    combine_32_ca[PIXMAN_N_OPERATORS];
456     pixman_combine_64_func_t    combine_64[PIXMAN_N_OPERATORS];
457     pixman_combine_64_func_t    combine_64_ca[PIXMAN_N_OPERATORS];
458 };
459
460 pixman_implementation_t *
461 _pixman_implementation_create (pixman_implementation_t *delegate,
462                                const pixman_fast_path_t *fast_paths);
463
464 void
465 _pixman_implementation_combine_32 (pixman_implementation_t *imp,
466                                    pixman_op_t              op,
467                                    uint32_t *               dest,
468                                    const uint32_t *         src,
469                                    const uint32_t *         mask,
470                                    int                      width);
471 void
472 _pixman_implementation_combine_64 (pixman_implementation_t *imp,
473                                    pixman_op_t              op,
474                                    uint64_t *               dest,
475                                    const uint64_t *         src,
476                                    const uint64_t *         mask,
477                                    int                      width);
478 void
479 _pixman_implementation_combine_32_ca (pixman_implementation_t *imp,
480                                       pixman_op_t              op,
481                                       uint32_t *               dest,
482                                       const uint32_t *         src,
483                                       const uint32_t *         mask,
484                                       int                      width);
485 void
486 _pixman_implementation_combine_64_ca (pixman_implementation_t *imp,
487                                       pixman_op_t              op,
488                                       uint64_t *               dest,
489                                       const uint64_t *         src,
490                                       const uint64_t *         mask,
491                                       int                      width);
492
493 pixman_bool_t
494 _pixman_implementation_blt (pixman_implementation_t *imp,
495                             uint32_t *               src_bits,
496                             uint32_t *               dst_bits,
497                             int                      src_stride,
498                             int                      dst_stride,
499                             int                      src_bpp,
500                             int                      dst_bpp,
501                             int                      src_x,
502                             int                      src_y,
503                             int                      dst_x,
504                             int                      dst_y,
505                             int                      width,
506                             int                      height);
507
508 pixman_bool_t
509 _pixman_implementation_fill (pixman_implementation_t *imp,
510                              uint32_t *               bits,
511                              int                      stride,
512                              int                      bpp,
513                              int                      x,
514                              int                      y,
515                              int                      width,
516                              int                      height,
517                              uint32_t                 xor);
518
519 /* Specific implementations */
520 pixman_implementation_t *
521 _pixman_implementation_create_general (void);
522
523 pixman_implementation_t *
524 _pixman_implementation_create_fast_path (void);
525
526 #ifdef USE_MMX
527 pixman_implementation_t *
528 _pixman_implementation_create_mmx (void);
529 #endif
530
531 #ifdef USE_SSE2
532 pixman_implementation_t *
533 _pixman_implementation_create_sse2 (void);
534 #endif
535
536 #ifdef USE_ARM_SIMD
537 pixman_implementation_t *
538 _pixman_implementation_create_arm_simd (void);
539 #endif
540
541 #ifdef USE_ARM_NEON
542 pixman_implementation_t *
543 _pixman_implementation_create_arm_neon (void);
544 #endif
545
546 #ifdef USE_VMX
547 pixman_implementation_t *
548 _pixman_implementation_create_vmx (void);
549 #endif
550
551 pixman_implementation_t *
552 _pixman_choose_implementation (void);
553
554
555
556 /*
557  * Utilities
558  */
559
560 /* These "formats" all have depth 0, so they
561  * will never clash with any real ones
562  */
563 #define PIXMAN_null             PIXMAN_FORMAT (0, 0, 0, 0, 0, 0)
564 #define PIXMAN_solid            PIXMAN_FORMAT (0, 1, 0, 0, 0, 0)
565 #define PIXMAN_pixbuf           PIXMAN_FORMAT (0, 2, 0, 0, 0, 0)
566 #define PIXMAN_rpixbuf          PIXMAN_FORMAT (0, 3, 0, 0, 0, 0)
567 #define PIXMAN_unknown          PIXMAN_FORMAT (0, 4, 0, 0, 0, 0)
568 #define PIXMAN_any              PIXMAN_FORMAT (0, 5, 0, 0, 0, 0)        
569
570 #define PIXMAN_OP_any           (PIXMAN_N_OPERATORS + 1)
571
572 #define FAST_PATH_ID_TRANSFORM                  (1 <<  0)
573 #define FAST_PATH_NO_ALPHA_MAP                  (1 <<  1)
574 #define FAST_PATH_NO_CONVOLUTION_FILTER         (1 <<  2)
575 #define FAST_PATH_NO_PAD_REPEAT                 (1 <<  3)
576 #define FAST_PATH_NO_REFLECT_REPEAT             (1 <<  4)
577 #define FAST_PATH_NO_ACCESSORS                  (1 <<  5)
578 #define FAST_PATH_NO_WIDE_FORMAT                (1 <<  6)
579 #define FAST_PATH_COVERS_CLIP                   (1 <<  7)
580 #define FAST_PATH_COMPONENT_ALPHA               (1 <<  8)
581 #define FAST_PATH_UNIFIED_ALPHA                 (1 <<  9)
582 #define FAST_PATH_SCALE_TRANSFORM               (1 << 10)
583 #define FAST_PATH_NEAREST_FILTER                (1 << 11)
584 #define FAST_PATH_SIMPLE_REPEAT                 (1 << 12)
585
586 #define _FAST_PATH_STANDARD_FLAGS                                       \
587     (FAST_PATH_ID_TRANSFORM             |                               \
588      FAST_PATH_NO_ALPHA_MAP             |                               \
589      FAST_PATH_NO_CONVOLUTION_FILTER    |                               \
590      FAST_PATH_NO_PAD_REPEAT            |                               \
591      FAST_PATH_NO_REFLECT_REPEAT        |                               \
592      FAST_PATH_NO_ACCESSORS             |                               \
593      FAST_PATH_NO_WIDE_FORMAT           |                               \
594      FAST_PATH_COVERS_CLIP)
595
596 #define FAST_PATH_STD_SRC_FLAGS                                         \
597     _FAST_PATH_STANDARD_FLAGS
598 #define FAST_PATH_STD_MASK_U_FLAGS                                      \
599     (_FAST_PATH_STANDARD_FLAGS          |                               \
600      FAST_PATH_UNIFIED_ALPHA)
601 #define FAST_PATH_STD_MASK_CA_FLAGS                                     \
602     (_FAST_PATH_STANDARD_FLAGS          |                               \
603      FAST_PATH_COMPONENT_ALPHA)
604 #define FAST_PATH_STD_DEST_FLAGS                                        \
605     (FAST_PATH_NO_ACCESSORS             |                               \
606      FAST_PATH_NO_WIDE_FORMAT)
607
608 #define FAST_PATH(op, src, src_flags, mask, mask_flags, dest, dest_flags, func) \
609     PIXMAN_OP_ ## op,                                                   \
610     PIXMAN_ ## src,                                                     \
611     src_flags,                                                          \
612     PIXMAN_ ## mask,                                                    \
613     mask_flags,                                                         \
614     PIXMAN_ ## dest,                                                    \
615     dest_flags,                                                         \
616     func
617
618 #define PIXMAN_STD_FAST_PATH(op, src, mask, dest, func)                 \
619     { FAST_PATH (                                                       \
620           op,                                                           \
621           src, FAST_PATH_STD_SRC_FLAGS,                                 \
622           mask, (PIXMAN_ ## mask) ? FAST_PATH_STD_MASK_U_FLAGS : 0,     \
623           dest, FAST_PATH_STD_DEST_FLAGS,                               \
624           func) }
625
626 #define PIXMAN_STD_FAST_PATH_CA(op, src, mask, dest, func)              \
627     { FAST_PATH (                                                       \
628           op,                                                           \
629           src, FAST_PATH_STD_SRC_FLAGS,                                 \
630           mask, FAST_PATH_STD_MASK_CA_FLAGS,                            \
631           dest, FAST_PATH_STD_DEST_FLAGS,                               \
632           func) }
633
634 /* Memory allocation helpers */
635 void *
636 pixman_malloc_ab (unsigned int n, unsigned int b);
637
638 void *
639 pixman_malloc_abc (unsigned int a, unsigned int b, unsigned int c);
640
641 pixman_bool_t
642 pixman_multiply_overflows_int (unsigned int a, unsigned int b);
643
644 pixman_bool_t
645 pixman_addition_overflows_int (unsigned int a, unsigned int b);
646
647 /* Compositing utilities */
648 void
649 pixman_expand (uint64_t *           dst,
650                const uint32_t *     src,
651                pixman_format_code_t format,
652                int                  width);
653
654 void
655 pixman_contract (uint32_t *      dst,
656                  const uint64_t *src,
657                  int             width);
658
659
660 /* Region Helpers */
661 pixman_bool_t
662 pixman_region32_copy_from_region16 (pixman_region32_t *dst,
663                                     pixman_region16_t *src);
664
665 pixman_bool_t
666 pixman_region16_copy_from_region32 (pixman_region16_t *dst,
667                                     pixman_region32_t *src);
668
669
670 /* Misc macros */
671
672 #ifndef FALSE
673 #   define FALSE 0
674 #endif
675
676 #ifndef TRUE
677 #   define TRUE 1
678 #endif
679
680 #ifndef MIN
681 #  define MIN(a, b) ((a < b) ? a : b)
682 #endif
683
684 #ifndef MAX
685 #  define MAX(a, b) ((a > b) ? a : b)
686 #endif
687
688 /* Integer division that rounds towards -infinity */
689 #define DIV(a, b)                                          \
690     ((((a) < 0) == ((b) < 0)) ? (a) / (b) :                \
691      ((a) - (b) + 1 - (((b) < 0) << 1)) / (b))
692
693 /* Modulus that produces the remainder wrt. DIV */
694 #define MOD(a, b) ((a) < 0 ? ((b) - ((-(a) - 1) % (b))) - 1 : (a) % (b))
695
696 #define CLIP(v, low, high) ((v) < (low) ? (low) : ((v) > (high) ? (high) : (v)))
697
698 /* Conversion between 8888 and 0565 */
699
700 #define CONVERT_8888_TO_0565(s)                                         \
701     ((((s) >> 3) & 0x001f) |                                            \
702      (((s) >> 5) & 0x07e0) |                                            \
703      (((s) >> 8) & 0xf800))
704
705 #define CONVERT_0565_TO_0888(s)                                         \
706     (((((s) << 3) & 0xf8) | (((s) >> 2) & 0x7)) |                       \
707      ((((s) << 5) & 0xfc00) | (((s) >> 1) & 0x300)) |                   \
708      ((((s) << 8) & 0xf80000) | (((s) << 3) & 0x70000)))
709
710 #define PIXMAN_FORMAT_IS_WIDE(f)                                        \
711     (PIXMAN_FORMAT_A (f) > 8 ||                                         \
712      PIXMAN_FORMAT_R (f) > 8 ||                                         \
713      PIXMAN_FORMAT_G (f) > 8 ||                                         \
714      PIXMAN_FORMAT_B (f) > 8)
715
716 #ifdef WORDS_BIGENDIAN
717 #   define SCREEN_SHIFT_LEFT(x,n)       ((x) << (n))
718 #   define SCREEN_SHIFT_RIGHT(x,n)      ((x) >> (n))
719 #else
720 #   define SCREEN_SHIFT_LEFT(x,n)       ((x) >> (n))
721 #   define SCREEN_SHIFT_RIGHT(x,n)      ((x) << (n))
722 #endif
723
724 /*
725  * Various debugging code
726  */
727
728 #undef DEBUG
729
730 /* Turn on debugging depending on what type of release this is
731  */
732 #if (((PIXMAN_VERSION_MICRO % 2) == 0) && ((PIXMAN_VERSION_MINOR % 2) == 1))
733
734 /* Debugging gets turned on for development releases because these
735  * are the things that end up in bleeding edge distributions such
736  * as Rawhide etc.
737  *
738  * For performance reasons we don't turn it on for stable releases or
739  * random git checkouts. (Random git checkouts are often used for
740  * performance work).
741  */
742
743 #    define DEBUG
744
745 #endif
746
747 #ifdef DEBUG
748
749 void
750 _pixman_log_error (const char *function, const char *message);
751
752 #define return_if_fail(expr)                                            \
753     do                                                                  \
754     {                                                                   \
755         if (!(expr))                                                    \
756         {                                                               \
757             _pixman_log_error (FUNC, "The expression " # expr " was false"); \
758             return;                                                     \
759         }                                                               \
760     }                                                                   \
761     while (0)
762
763 #define return_val_if_fail(expr, retval)                                \
764     do                                                                  \
765     {                                                                   \
766         if (!(expr))                                                    \
767         {                                                               \
768             _pixman_log_error (FUNC, "The expression " # expr " was false"); \
769             return (retval);                                            \
770         }                                                               \
771     }                                                                   \
772     while (0)
773
774 #define critical_if_fail(expr)                                          \
775     do                                                                  \
776     {                                                                   \
777         if (!(expr))                                                    \
778             _pixman_log_error (FUNC, "The expression " # expr " was false"); \
779     }                                                                   \
780     while (0)
781
782
783 #else
784
785 #define _pixman_log_error(f,m) do { } while (0)                         \
786
787 #define return_if_fail(expr)                                            \
788     do                                                                  \
789     {                                                                   \
790         if (!(expr))                                                    \
791             return;                                                     \
792     }                                                                   \
793     while (0)
794
795 #define return_val_if_fail(expr, retval)                                \
796     do                                                                  \
797     {                                                                   \
798         if (!(expr))                                                    \
799             return (retval);                                            \
800     }                                                                   \
801     while (0)
802
803 #define critical_if_fail(expr)                                          \
804     do                                                                  \
805     {                                                                   \
806     }                                                                   \
807     while (0)
808 #endif
809
810 /*
811  * Timers
812  */
813
814 #ifdef PIXMAN_TIMERS
815
816 static inline uint64_t
817 oil_profile_stamp_rdtsc (void)
818 {
819     uint64_t ts;
820
821     __asm__ __volatile__ ("rdtsc\n" : "=A" (ts));
822     return ts;
823 }
824
825 #define OIL_STAMP oil_profile_stamp_rdtsc
826
827 typedef struct pixman_timer_t pixman_timer_t;
828
829 struct pixman_timer_t
830 {
831     int             initialized;
832     const char *    name;
833     uint64_t        n_times;
834     uint64_t        total;
835     pixman_timer_t *next;
836 };
837
838 extern int timer_defined;
839
840 void pixman_timer_register (pixman_timer_t *timer);
841
842 #define TIMER_BEGIN(tname)                                              \
843     {                                                                   \
844         static pixman_timer_t timer ## tname;                           \
845         uint64_t              begin ## tname;                           \
846                                                                         \
847         if (!timer ## tname.initialized)                                \
848         {                                                               \
849             timer ## tname.initialized = 1;                             \
850             timer ## tname.name = # tname;                              \
851             pixman_timer_register (&timer ## tname);                    \
852         }                                                               \
853                                                                         \
854         timer ## tname.n_times++;                                       \
855         begin ## tname = OIL_STAMP ();
856
857 #define TIMER_END(tname)                                                \
858     timer ## tname.total += OIL_STAMP () - begin ## tname;              \
859     }
860
861 #endif /* PIXMAN_TIMERS */
862
863 #endif /* PIXMAN_PRIVATE_H */