Use fbOver() instead of fbOver24.
[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 #include "pixman.h"
9 #include <time.h>
10 #include <assert.h>
11
12 #include "pixman-compiler.h"
13
14 /*
15  * Images
16  */
17 typedef struct image_common image_common_t;
18 typedef struct source_image source_image_t;
19 typedef struct solid_fill solid_fill_t;
20 typedef struct gradient gradient_t;
21 typedef struct linear_gradient linear_gradient_t;
22 typedef struct horizontal_gradient horizontal_gradient_t;
23 typedef struct vertical_gradient vertical_gradient_t;
24 typedef struct conical_gradient conical_gradient_t;
25 typedef struct radial_gradient radial_gradient_t;
26 typedef struct bits_image bits_image_t;
27 typedef struct circle circle_t;
28
29 typedef void     (*fetchProc32)        (bits_image_t *pict,
30                                         int x, int y, int width,
31                                         uint32_t *buffer);
32 typedef uint32_t (*fetchPixelProc32)   (bits_image_t *pict,
33                                         int offset, int line);
34 typedef void     (*storeProc32)        (pixman_image_t *, uint32_t *bits,
35                                         const uint32_t *values,
36                                         int x, int width);
37 typedef void     (*fetchProc64)        (bits_image_t *pict,
38                                         int x, int y, int width,
39                                         uint64_t *buffer);
40 typedef uint64_t (*fetchPixelProc64)   (bits_image_t *pict,
41                                         int offset, int line);
42 typedef void     (*storeProc64)        (pixman_image_t *, uint32_t *bits,
43                                         const uint64_t *values,
44                                         int x, int width);
45 typedef void     (*fetch_pixels_32_t) (bits_image_t *image,
46                                        uint32_t *buffer, int n_pixels);
47 typedef void     (*fetch_pixels_64_t) (bits_image_t *image,
48                                        uint64_t *buffer, int n_pixels);
49 typedef void     (*scanStoreProc)     (bits_image_t *img,
50                                        int x, int y, int width,
51                                        uint32_t *buffer);
52 typedef void     (*scanFetchProc)     (pixman_image_t *,
53                                        int, int, int, uint32_t *,
54                                        uint32_t *, uint32_t);
55
56 typedef enum
57 {
58     BITS,
59     LINEAR,
60     CONICAL,
61     RADIAL,
62     SOLID
63 } image_type_t;
64
65 typedef enum
66 {
67     SOURCE_IMAGE_CLASS_UNKNOWN,
68     SOURCE_IMAGE_CLASS_HORIZONTAL,
69     SOURCE_IMAGE_CLASS_VERTICAL,
70 } source_pict_class_t;
71
72 typedef source_pict_class_t (* classify_func_t) (pixman_image_t *image,
73                                                  int             x,
74                                                  int             y,
75                                                  int             width,
76                                                  int             height);
77 typedef void (* property_changed_func_t)        (pixman_image_t *image);
78
79 struct image_common
80 {
81     image_type_t                type;
82     int32_t                     ref_count;
83     pixman_region32_t           clip_region;
84     pixman_bool_t               have_clip_region;   /* FALSE if there is no clip */
85     pixman_bool_t               client_clip;        /* Whether the source clip was
86                                                        set by a client */
87     pixman_bool_t               clip_sources;       /* Whether the clip applies when
88                                                      * the image is used as a source
89                                                      */
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     pixman_read_memory_func_t   read_func;
100     pixman_write_memory_func_t  write_func;
101     classify_func_t             classify;
102     property_changed_func_t     property_changed;
103     scanFetchProc               get_scanline_32;
104     scanFetchProc               get_scanline_64;
105
106     pixman_image_destroy_func_t destroy_func;
107     void *                      destroy_data;
108 };
109
110 struct source_image
111 {
112     image_common_t      common;
113     source_pict_class_t class;
114 };
115
116 struct solid_fill
117 {
118     source_image_t      common;
119     uint32_t            color;          /* FIXME: shouldn't this be a pixman_color_t? */
120 };
121
122 struct gradient
123 {
124     source_image_t              common;
125     int                         n_stops;
126     pixman_gradient_stop_t *    stops;
127     int                         stop_range;
128     uint32_t *                  color_table;
129     int                         color_table_size;
130 };
131
132 struct linear_gradient
133 {
134     gradient_t                  common;
135     pixman_point_fixed_t        p1;
136     pixman_point_fixed_t        p2;
137 };
138
139 struct circle
140 {
141     pixman_fixed_t x;
142     pixman_fixed_t y;
143     pixman_fixed_t radius;
144 };
145
146 struct radial_gradient
147 {
148     gradient_t  common;
149
150     circle_t    c1;
151     circle_t    c2;
152     double      cdx;
153     double      cdy;
154     double      dr;
155     double      A;
156 };
157
158 struct conical_gradient
159 {
160     gradient_t                  common;
161     pixman_point_fixed_t        center;
162     pixman_fixed_t              angle;
163 };
164
165 struct bits_image
166 {
167     image_common_t              common;
168     pixman_format_code_t        format;
169     const pixman_indexed_t     *indexed;
170     int                         width;
171     int                         height;
172     uint32_t *                  bits;
173     uint32_t *                  free_me;
174     int                         rowstride; /* in number of uint32_t's */
175
176     /* Fetch raw pixels, with no regard for transformations, alpha map etc. */
177     fetch_pixels_32_t           fetch_pixels_raw_32;
178     fetch_pixels_64_t           fetch_pixels_raw_64;
179
180     /* Fetch raw scanlines, with no regard for transformations, alpha maps etc. */
181     fetchProc32                 fetch_scanline_raw_32;
182     fetchProc64                 fetch_scanline_raw_64;
183
184     /* Store scanlines with no regard for alpha maps */
185     storeProc32                 store_scanline_raw_32;
186     storeProc64                 store_scanline_raw_64;
187
188     /* Store a scanline, taking alpha maps into account */
189     scanStoreProc               store_scanline_32;
190     scanStoreProc               store_scanline_64;
191
192     /* Used for indirect access to the bits */
193     pixman_read_memory_func_t   read_func;
194     pixman_write_memory_func_t  write_func;
195 };
196
197 union pixman_image
198 {
199     image_type_t                type;
200     image_common_t              common;
201     bits_image_t                bits;
202     source_image_t              source;
203     gradient_t                  gradient;
204     linear_gradient_t           linear;
205     conical_gradient_t          conical;
206     radial_gradient_t           radial;
207     solid_fill_t                solid;
208 };
209
210
211 void
212 _pixman_bits_image_setup_raw_accessors (bits_image_t   *image);
213
214 void
215 _pixman_image_get_scanline_64_generic  (pixman_image_t *pict,
216                                         int             x,
217                                         int             y,
218                                         int             width,
219                                         uint64_t       *buffer,
220                                         uint64_t       *mask,
221                                         uint32_t        maskBits);
222
223 source_pict_class_t
224 _pixman_image_classify (pixman_image_t *image,
225                         int             x,
226                         int             y,
227                         int             width,
228                         int             height);
229
230 void
231 _pixman_image_get_scanline_32 (pixman_image_t *image, int x, int y, int width,
232                                uint32_t *buffer, uint32_t *mask,
233                                uint32_t mask_bits);
234
235 /* Even thought the type of buffer is uint32_t *, the function actually expects
236  * a uint64_t *buffer.
237  */
238 void
239 _pixman_image_get_scanline_64 (pixman_image_t *image, int x, int y, int width,
240                                uint32_t *buffer,
241                                uint32_t *unused, uint32_t unused2);
242
243 void
244 _pixman_image_store_scanline_32 (bits_image_t *image, int x, int y, int width,
245                                  uint32_t *buffer);
246 void
247 _pixman_image_fetch_pixels (bits_image_t *image, uint32_t *buffer,
248                             int n_pixels);
249
250 /* Even thought the type of buffer is uint32_t *, the function actually expects
251  * a uint64_t *buffer.
252  */
253 void
254 _pixman_image_store_scanline_64 (bits_image_t *image, int x, int y, int width,
255                                  uint32_t *buffer);
256
257 pixman_image_t *
258 _pixman_image_allocate (void);
259
260 pixman_bool_t
261 _pixman_init_gradient (gradient_t                   *gradient,
262                        const pixman_gradient_stop_t *stops,
263                        int                           n_stops);
264 void
265 _pixman_image_reset_clip_region (pixman_image_t *image);
266
267 pixman_bool_t
268 _pixman_image_is_opaque(pixman_image_t *image);
269
270 pixman_bool_t
271 _pixman_image_is_solid (pixman_image_t *image);
272
273 uint32_t
274 _pixman_image_get_solid (pixman_image_t *image,
275                         pixman_format_code_t format);
276
277 /*
278  * Gradient walker
279  */
280 typedef struct
281 {
282     uint32_t        left_ag;
283     uint32_t        left_rb;
284     uint32_t        right_ag;
285     uint32_t        right_rb;
286     int32_t       left_x;
287     int32_t       right_x;
288     int32_t       stepper;
289
290     pixman_gradient_stop_t      *stops;
291     int                      num_stops;
292     unsigned int             spread;
293
294     int           need_reset;
295 } pixman_gradient_walker_t;
296
297 void
298 _pixman_gradient_walker_init (pixman_gradient_walker_t  *walker,
299                               gradient_t      *gradient,
300                               unsigned int     spread);
301
302 void
303 _pixman_gradient_walker_reset (pixman_gradient_walker_t       *walker,
304                                pixman_fixed_32_32_t  pos);
305
306 uint32_t
307 _pixman_gradient_walker_pixel (pixman_gradient_walker_t       *walker,
308                                pixman_fixed_32_32_t  x);
309
310 #define FbIntMult(a,b,t) ( (t) = (a) * (b) + 0x80, ( ( ( (t)>>8 ) + (t) )>>8 ) )
311 #define FbIntDiv(a,b)    (((uint16_t) (a) * 255) / (b))
312
313 #define FbGet8(v,i)   ((uint16_t) (uint8_t) ((v) >> i))
314
315
316 #define cvt8888to0565(s)    ((((s) >> 3) & 0x001f) | \
317                              (((s) >> 5) & 0x07e0) | \
318                              (((s) >> 8) & 0xf800))
319 #define cvt0565to0888(s)    (((((s) << 3) & 0xf8) | (((s) >> 2) & 0x7)) | \
320                              ((((s) << 5) & 0xfc00) | (((s) >> 1) & 0x300)) | \
321                              ((((s) << 8) & 0xf80000) | (((s) << 3) & 0x70000)))
322
323 /*
324  * There are two ways of handling alpha -- either as a single unified value or
325  * a separate value for each component, hence each macro must have two
326  * versions.  The unified alpha version has a 'U' at the end of the name,
327  * the component version has a 'C'.  Similarly, functions which deal with
328  * this difference will have two versions using the same convention.
329  */
330
331 #define FbInU(x,i,a,t) ((uint32_t) FbIntMult(FbGet8(x,i),(a),(t)) << (i))
332
333 #define FbAdd(x,y,i,t)  ((t) = FbGet8(x,i) + FbGet8(y,i),               \
334                          (uint32_t) ((uint8_t) ((t) | (0 - ((t) >> 8)))) << (i))
335
336 #define div_255(x) (((x) + 0x80 + (((x) + 0x80) >> 8)) >> 8)
337 #define div_65535(x) (((x) + 0x8000 + (((x) + 0x8000) >> 16)) >> 16)
338
339 #ifdef PIXMAN_FB_ACCESSORS
340
341 #define ACCESS(sym) sym##_accessors
342
343 #define READ(img, ptr)                                                  \
344     ((img)->common.read_func ((ptr), sizeof(*(ptr))))
345 #define WRITE(img, ptr,val)                                             \
346     ((img)->common.write_func ((ptr), (val), sizeof (*(ptr))))
347
348 #define MEMCPY_WRAPPED(img, dst, src, size)                             \
349     do {                                                                \
350         size_t _i;                                                      \
351         uint8_t *_dst = (uint8_t*)(dst), *_src = (uint8_t*)(src);       \
352         for(_i = 0; _i < size; _i++) {                                  \
353             WRITE((img), _dst +_i, READ((img), _src + _i));             \
354         }                                                               \
355     } while (0)
356
357 #define MEMSET_WRAPPED(img, dst, val, size)                             \
358     do {                                                                \
359         size_t _i;                                                      \
360         uint8_t *_dst = (uint8_t*)(dst);                                \
361         for(_i = 0; _i < (size_t) size; _i++) {                         \
362             WRITE((img), _dst +_i, (val));                              \
363         }                                                               \
364     } while (0)
365
366 #else
367
368 #define ACCESS(sym) sym
369
370 #define READ(img, ptr)          (*(ptr))
371 #define WRITE(img, ptr, val)    (*(ptr) = (val))
372 #define MEMCPY_WRAPPED(img, dst, src, size)                             \
373     memcpy(dst, src, size)
374 #define MEMSET_WRAPPED(img, dst, val, size)                             \
375     memset(dst, val, size)
376
377 #endif
378
379 #define fbComposeGetStart(pict,x,y,type,out_stride,line,mul) do {       \
380         uint32_t        *__bits__;                                      \
381         int             __stride__;                                     \
382                                                                         \
383         __bits__ = pict->bits.bits;                                     \
384         __stride__ = pict->bits.rowstride;                              \
385         (out_stride) = __stride__ * (int) sizeof (uint32_t) / (int) sizeof (type);      \
386         (line) = ((type *) __bits__) +                                  \
387             (out_stride) * (y) + (mul) * (x);                           \
388     } while (0)
389
390
391 #define PIXMAN_FORMAT_16BPC(f)  (PIXMAN_FORMAT_A(f) > 8 || \
392                                  PIXMAN_FORMAT_R(f) > 8 || \
393                                  PIXMAN_FORMAT_G(f) > 8 || \
394                                  PIXMAN_FORMAT_B(f) > 8)
395 /*
396  * Edges
397  */
398
399 #define MAX_ALPHA(n)    ((1 << (n)) - 1)
400 #define N_Y_FRAC(n)     ((n) == 1 ? 1 : (1 << ((n)/2)) - 1)
401 #define N_X_FRAC(n)     ((n) == 1 ? 1 : (1 << ((n)/2)) + 1)
402
403 #define STEP_Y_SMALL(n) (pixman_fixed_1 / N_Y_FRAC(n))
404 #define STEP_Y_BIG(n)   (pixman_fixed_1 - (N_Y_FRAC(n) - 1) * STEP_Y_SMALL(n))
405
406 #define Y_FRAC_FIRST(n) (STEP_Y_SMALL(n) / 2)
407 #define Y_FRAC_LAST(n)  (Y_FRAC_FIRST(n) + (N_Y_FRAC(n) - 1) * STEP_Y_SMALL(n))
408
409 #define STEP_X_SMALL(n) (pixman_fixed_1 / N_X_FRAC(n))
410 #define STEP_X_BIG(n)   (pixman_fixed_1 - (N_X_FRAC(n) - 1) * STEP_X_SMALL(n))
411
412 #define X_FRAC_FIRST(n) (STEP_X_SMALL(n) / 2)
413 #define X_FRAC_LAST(n)  (X_FRAC_FIRST(n) + (N_X_FRAC(n) - 1) * STEP_X_SMALL(n))
414
415 #define RenderSamplesX(x,n)     ((n) == 1 ? 0 : (pixman_fixed_frac (x) + X_FRAC_FIRST(n)) / STEP_X_SMALL(n))
416
417 void
418 pixman_rasterize_edges_accessors (pixman_image_t *image,
419                                   pixman_edge_t *l,
420                                   pixman_edge_t *r,
421                                   pixman_fixed_t        t,
422                                   pixman_fixed_t        b);
423
424 /*
425  * Implementations
426  */
427
428 typedef struct pixman_implementation_t pixman_implementation_t;
429
430 typedef void (* pixman_combine_32_func_t) (pixman_implementation_t *    imp,
431                                            pixman_op_t                  op,
432                                            uint32_t *                   dest,
433                                            const uint32_t *             src,
434                                            const uint32_t *             mask,
435                                            int                          width);
436
437 typedef void (* pixman_combine_64_func_t) (pixman_implementation_t *    imp,
438                                            pixman_op_t                  op,
439                                            uint64_t *                   dest,
440                                            const uint64_t *             src,
441                                            const uint64_t *             mask,
442                                            int                          width);
443
444 typedef void (* pixman_composite_func_t)  (pixman_implementation_t *    imp,
445                                            pixman_op_t                  op,
446                                            pixman_image_t *             src,
447                                            pixman_image_t *             mask,
448                                            pixman_image_t *             dest,
449                                            int32_t                      src_x,
450                                            int32_t                      src_y,
451                                            int32_t                      mask_x,
452                                            int32_t                      mask_y,
453                                            int32_t                      dest_x,
454                                            int32_t                      dest_y,
455                                            int32_t                      width,
456                                            int32_t                      height);
457 typedef pixman_bool_t (* pixman_blt_func_t) (pixman_implementation_t *  imp,
458                                              uint32_t *                 src_bits,
459                                              uint32_t *                 dst_bits,
460                                              int                        src_stride,
461                                              int                        dst_stride,
462                                              int                        src_bpp,
463                                              int                        dst_bpp,
464                                              int                        src_x,
465                                              int                        src_y,
466                                              int                        dst_x,
467                                              int                        dst_y,
468                                              int                        width,
469                                              int                        height);
470 typedef pixman_bool_t (* pixman_fill_func_t) (pixman_implementation_t *imp,
471                                               uint32_t *bits,
472                                               int stride,
473                                               int bpp,
474                                               int x,
475                                               int y,
476                                               int width,
477                                               int height,
478                                               uint32_t xor);
479
480 void _pixman_setup_combiner_functions_32 (pixman_implementation_t *imp);
481 void _pixman_setup_combiner_functions_64 (pixman_implementation_t *imp);
482
483 struct pixman_implementation_t
484 {
485     pixman_implementation_t *   toplevel;
486     pixman_implementation_t *   delegate;
487
488     pixman_composite_func_t     composite;
489     pixman_blt_func_t           blt;
490     pixman_fill_func_t          fill;
491     
492     pixman_combine_32_func_t    combine_32[PIXMAN_OP_LAST];
493     pixman_combine_32_func_t    combine_32_ca[PIXMAN_OP_LAST];
494     pixman_combine_64_func_t    combine_64[PIXMAN_OP_LAST];
495     pixman_combine_64_func_t    combine_64_ca[PIXMAN_OP_LAST];
496 };
497
498 pixman_implementation_t *
499 _pixman_implementation_create (pixman_implementation_t *delegate);
500
501 void
502 _pixman_implementation_combine_32 (pixman_implementation_t *    imp,
503                                    pixman_op_t                  op,
504                                    uint32_t *                   dest,
505                                    const uint32_t *             src,
506                                    const uint32_t *             mask,
507                                    int                          width);
508 void
509 _pixman_implementation_combine_64 (pixman_implementation_t *    imp,
510                                    pixman_op_t                  op,
511                                    uint64_t *                   dest,
512                                    const uint64_t *             src,
513                                    const uint64_t *             mask,
514                                    int                          width);
515 void
516 _pixman_implementation_combine_32_ca (pixman_implementation_t * imp,
517                                       pixman_op_t               op,
518                                       uint32_t *                dest,
519                                       const uint32_t *          src,
520                                       const uint32_t *          mask,
521                                       int                       width);
522 void
523 _pixman_implementation_combine_64_ca (pixman_implementation_t * imp,
524                                       pixman_op_t               op,
525                                       uint64_t *                dest,
526                                       const uint64_t *          src,
527                                       const uint64_t *          mask,
528                                       int                       width);
529 void
530 _pixman_implementation_composite (pixman_implementation_t *     imp,
531                                   pixman_op_t                   op,
532                                   pixman_image_t *              src,
533                                   pixman_image_t *              mask,
534                                   pixman_image_t *              dest,
535                                   int32_t                       src_x,
536                                   int32_t                       src_y,
537                                   int32_t                       mask_x,
538                                   int32_t                       mask_y,
539                                   int32_t                       dest_x,
540                                   int32_t                       dest_y,
541                                   int32_t                       width,
542                                   int32_t                       height);
543
544 pixman_bool_t
545 _pixman_implementation_blt (pixman_implementation_t *   imp,
546                             uint32_t *                  src_bits,
547                             uint32_t *                  dst_bits,
548                             int                         src_stride,
549                             int                         dst_stride,
550                             int                         src_bpp,
551                             int                         dst_bpp,
552                             int                         src_x,
553                             int                         src_y,
554                             int                         dst_x,
555                             int                         dst_y,
556                             int                         width,
557                             int                         height);
558 pixman_bool_t
559 _pixman_implementation_fill (pixman_implementation_t *   imp,
560                              uint32_t *bits,
561                              int stride,
562                              int bpp,
563                              int x,
564                              int y,
565                              int width,
566                              int height,
567                              uint32_t xor);
568     
569 /* Specific implementations */
570 pixman_implementation_t *
571 _pixman_implementation_create_general (void);
572 pixman_implementation_t *
573 _pixman_implementation_create_fast_path (void);
574 #ifdef USE_MMX
575 pixman_implementation_t *
576 _pixman_implementation_create_mmx (void);
577 #endif
578 #ifdef USE_SSE2
579 pixman_implementation_t *
580 _pixman_implementation_create_sse2 (void);
581 #endif
582 #ifdef USE_ARM_SIMD
583 pixman_implementation_t *
584 _pixman_implementation_create_arm_simd (void);
585 #endif
586 #ifdef USE_ARM_NEON
587 pixman_implementation_t *
588 _pixman_implementation_create_arm_neon (void);
589 #endif
590 #ifdef USE_VMX
591 pixman_implementation_t *
592 _pixman_implementation_create_vmx (void);
593 #endif
594
595 pixman_implementation_t *
596 _pixman_choose_implementation (void);
597
598
599
600 /*
601  * Utilities
602  */
603
604 /* These "formats" both have depth 0, so they
605  * will never clash with any real ones
606  */
607 #define PIXMAN_null             PIXMAN_FORMAT(0,0,0,0,0,0)
608 #define PIXMAN_solid            PIXMAN_FORMAT(0,1,0,0,0,0)
609
610 #define NEED_COMPONENT_ALPHA            (1 << 0)
611 #define NEED_PIXBUF                     (1 << 1)
612 #define NEED_SOLID_MASK                 (1 << 2)
613
614 typedef struct
615 {
616     pixman_op_t                 op;
617     pixman_format_code_t        src_format;
618     pixman_format_code_t        mask_format;
619     pixman_format_code_t        dest_format;
620     pixman_composite_func_t     func;
621     uint32_t                    flags;
622 } pixman_fast_path_t;
623
624 /* Memory allocation helpers */
625 void *
626 pixman_malloc_ab (unsigned int n, unsigned int b);
627
628 void *
629 pixman_malloc_abc (unsigned int a, unsigned int b, unsigned int c);
630
631 pixman_bool_t
632 pixman_multiply_overflows_int (unsigned int a, unsigned int b);
633
634 pixman_bool_t
635 pixman_addition_overflows_int (unsigned int a, unsigned int b);
636
637 /* Compositing utilities */
638 pixman_bool_t
639 _pixman_run_fast_path (const pixman_fast_path_t *paths,
640                        pixman_implementation_t *imp,
641                        pixman_op_t op,
642                        pixman_image_t *src,
643                        pixman_image_t *mask,
644                        pixman_image_t *dest,
645                        int32_t src_x,
646                        int32_t src_y,
647                        int32_t mask_x,
648                        int32_t mask_y,
649                        int32_t dest_x,
650                        int32_t dest_y,
651                        int32_t width,
652                        int32_t height);
653     
654 void
655 _pixman_walk_composite_region (pixman_implementation_t *imp,
656                                pixman_op_t op,
657                                pixman_image_t * pSrc,
658                                pixman_image_t * pMask,
659                                pixman_image_t * pDst,
660                                int16_t xSrc,
661                                int16_t ySrc,
662                                int16_t xMask,
663                                int16_t yMask,
664                                int16_t xDst,
665                                int16_t yDst,
666                                uint16_t width,
667                                uint16_t height,
668                                pixman_composite_func_t compositeRect);
669
670 void
671 pixman_expand (uint64_t *dst, const uint32_t *src, pixman_format_code_t, int width);
672
673 void
674 pixman_contract (uint32_t *dst, const uint64_t *src, int width);
675
676
677 /* Region Helpers */
678 pixman_bool_t
679 pixman_region32_copy_from_region16 (pixman_region32_t *dst,
680                                     pixman_region16_t *src);
681
682 pixman_bool_t
683 pixman_region16_copy_from_region32 (pixman_region16_t *dst,
684                                     pixman_region32_t *src);
685
686
687 #ifndef FALSE
688 #   define FALSE 0
689 #endif
690
691 #ifndef TRUE
692 #   define TRUE 1
693 #endif
694
695 #ifndef MIN
696 #  define MIN(a,b) ((a < b)? a : b)
697 #endif
698
699 #ifndef MAX
700 #  define MAX(a,b) ((a > b)? a : b)
701 #endif
702
703 /* Integer division that rounds towards -infinity */
704 #define DIV(a,b) ((((a) < 0) == ((b) < 0)) ? (a) / (b) :                \
705                   ((a) - (b) + 1 - (((b) < 0) << 1)) / (b))
706
707 /* Modulus that produces the remainder wrt. DIV */
708 #define MOD(a,b) ((a) < 0 ? ((b) - ((-(a) - 1) % (b))) - 1 : (a) % (b))
709
710 #define CLIP(v,low,high) ((v) < (low) ? (low) : ((v) > (high) ? (high) : (high)))
711
712
713 /*
714  * Various debugging code
715  */
716
717 #undef DEBUG
718 #define DEBUG 0
719
720 #if DEBUG
721
722 #define return_if_fail(expr)                                            \
723     do                                                                  \
724     {                                                                   \
725         if (!(expr))                                                    \
726         {                                                               \
727             fprintf(stderr, "In %s: %s failed\n", FUNC, #expr);         \
728             return;                                                     \
729         }                                                               \
730     }                                                                   \
731     while (0)
732
733 #define return_val_if_fail(expr, retval)                                \
734     do                                                                  \
735     {                                                                   \
736         if (!(expr))                                                    \
737         {                                                               \
738             fprintf(stderr, "In %s: %s failed\n", FUNC, #expr);         \
739             return (retval);                                            \
740         }                                                               \
741     }                                                                   \
742     while (0)
743
744 #else
745
746 #define return_if_fail(expr)                                            \
747     do                                                                  \
748     {                                                                   \
749         if (!(expr))                                                    \
750             return;                                                     \
751     }                                                                   \
752     while (0)
753
754 #define return_val_if_fail(expr, retval)                                \
755     do                                                                  \
756     {                                                                   \
757         if (!(expr))                                                    \
758             return (retval);                                            \
759     }                                                                   \
760     while (0)
761
762 #endif
763
764 /*
765  * Timers
766  */
767
768 #ifdef PIXMAN_TIMERS
769
770 static inline uint64_t
771 oil_profile_stamp_rdtsc (void)
772 {
773     uint64_t ts;
774     __asm__ __volatile__("rdtsc\n" : "=A" (ts));
775     return ts;
776 }
777 #define OIL_STAMP oil_profile_stamp_rdtsc
778
779 typedef struct pixman_timer_t pixman_timer_t;
780
781 struct pixman_timer_t
782 {
783     int initialized;
784     const char *name;
785     uint64_t n_times;
786     uint64_t total;
787     pixman_timer_t *next;
788 };
789
790 extern int timer_defined;
791 void pixman_timer_register (pixman_timer_t *timer);
792
793 #define TIMER_BEGIN(tname)                                              \
794     {                                                                   \
795         static pixman_timer_t   timer##tname;                           \
796         uint64_t                begin##tname;                           \
797                                                                         \
798         if (!timer##tname.initialized)                                  \
799         {                                                               \
800             timer##tname.initialized = 1;                               \
801             timer##tname.name = #tname;                                 \
802             pixman_timer_register (&timer##tname);                      \
803         }                                                               \
804                                                                         \
805         timer##tname.n_times++;                                         \
806         begin##tname = OIL_STAMP();
807
808 #define TIMER_END(tname)                                                \
809         timer##tname.total += OIL_STAMP() - begin##tname;               \
810     }
811
812 #endif /* PIXMAN_TIMERS */
813
814 #endif /* PIXMAN_PRIVATE_H */