2 # error config.h must be included before pixman-private.h
5 #ifndef PIXMAN_PRIVATE_H
6 #define PIXMAN_PRIVATE_H
8 #define PIXMAN_DISABLE_DEPRECATED
9 #define PIXMAN_USE_INTERNAL_API
15 #include "pixman-compiler.h"
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;
32 typedef void (*fetch_scanline_t) (pixman_image_t *image,
40 typedef uint32_t (*fetch_pixel_32_t) (bits_image_t *image,
44 typedef uint64_t (*fetch_pixel_64_t) (bits_image_t *image,
48 typedef void (*store_scanline_t) (bits_image_t * image,
52 const uint32_t *values);
65 SOURCE_IMAGE_CLASS_UNKNOWN,
66 SOURCE_IMAGE_CLASS_HORIZONTAL,
67 SOURCE_IMAGE_CLASS_VERTICAL,
68 } source_image_class_t;
70 typedef source_image_class_t (*classify_func_t) (pixman_image_t *image,
75 typedef void (*property_changed_func_t) (pixman_image_t *image);
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
85 pixman_bool_t clip_sources; /* Whether the clip applies when
86 * the image is used as a source
89 pixman_transform_t * transform;
90 pixman_repeat_t repeat;
91 pixman_filter_t filter;
92 pixman_fixed_t * filter_params;
94 bits_image_t * alpha_map;
97 pixman_bool_t component_alpha;
98 classify_func_t classify;
99 property_changed_func_t property_changed;
100 fetch_scanline_t get_scanline_32;
101 fetch_scanline_t get_scanline_64;
103 pixman_image_destroy_func_t destroy_func;
107 pixman_format_code_t extended_format_code;
112 image_common_t common;
113 source_image_class_t class;
118 source_image_t common;
119 pixman_color_t color;
127 source_image_t common;
129 pixman_gradient_stop_t *stops;
133 struct linear_gradient
136 pixman_point_fixed_t p1;
137 pixman_point_fixed_t p2;
144 pixman_fixed_t radius;
147 struct radial_gradient
159 struct conical_gradient
162 pixman_point_fixed_t center;
163 pixman_fixed_t angle;
168 image_common_t common;
169 pixman_format_code_t format;
170 const pixman_indexed_t * indexed;
175 int rowstride; /* in number of uint32_t's */
177 /* Fetch a pixel, disregarding alpha maps, transformations etc. */
178 fetch_pixel_32_t fetch_pixel_raw_32;
179 fetch_pixel_64_t fetch_pixel_raw_64;
181 /* Fetch a pixel, taking alpha maps into account */
182 fetch_pixel_32_t fetch_pixel_32;
183 fetch_pixel_64_t fetch_pixel_64;
185 /* Fetch raw scanlines, with no regard for transformations, alpha maps etc. */
186 fetch_scanline_t fetch_scanline_raw_32;
187 fetch_scanline_t fetch_scanline_raw_64;
189 /* Store scanlines with no regard for alpha maps */
190 store_scanline_t store_scanline_raw_32;
191 store_scanline_t store_scanline_raw_64;
193 /* Store a scanline, taking alpha maps into account */
194 store_scanline_t store_scanline_32;
195 store_scanline_t store_scanline_64;
197 /* Used for indirect access to the bits */
198 pixman_read_memory_func_t read_func;
199 pixman_write_memory_func_t write_func;
205 image_common_t common;
207 source_image_t source;
209 linear_gradient_t linear;
210 conical_gradient_t conical;
211 radial_gradient_t radial;
217 _pixman_bits_image_setup_raw_accessors (bits_image_t *image);
220 _pixman_image_get_scanline_generic_64 (pixman_image_t *image,
225 const uint32_t *mask,
229 _pixman_image_classify (pixman_image_t *image,
236 _pixman_image_get_scanline_32 (pixman_image_t *image,
241 const uint32_t *mask,
244 /* Even thought the type of buffer is uint32_t *, the function actually expects
245 * a uint64_t *buffer.
248 _pixman_image_get_scanline_64 (pixman_image_t *image,
253 const uint32_t *unused,
257 _pixman_image_store_scanline_32 (bits_image_t * image,
261 const uint32_t *buffer);
263 /* Even though the type of buffer is uint32_t *, the function
264 * actually expects a uint64_t *buffer.
267 _pixman_image_store_scanline_64 (bits_image_t * image,
271 const uint32_t *buffer);
274 _pixman_image_allocate (void);
277 _pixman_init_gradient (gradient_t * gradient,
278 const pixman_gradient_stop_t *stops,
281 _pixman_image_reset_clip_region (pixman_image_t *image);
284 _pixman_image_validate (pixman_image_t *image);
287 _pixman_image_get_solid (pixman_image_t * image,
288 pixman_format_code_t format);
290 #define PIXMAN_IMAGE_GET_LINE(image, x, y, type, out_stride, line, mul) \
293 uint32_t *__bits__; \
296 __bits__ = image->bits.bits; \
297 __stride__ = image->bits.rowstride; \
299 __stride__ * (int) sizeof (uint32_t) / (int) sizeof (type); \
301 ((type *) __bits__) + (out_stride) * (y) + (mul) * (x); \
317 pixman_gradient_stop_t *stops;
322 } pixman_gradient_walker_t;
325 _pixman_gradient_walker_init (pixman_gradient_walker_t *walker,
326 gradient_t * gradient,
327 unsigned int spread);
330 _pixman_gradient_walker_reset (pixman_gradient_walker_t *walker,
331 pixman_fixed_32_32_t pos);
334 _pixman_gradient_walker_pixel (pixman_gradient_walker_t *walker,
335 pixman_fixed_32_32_t x);
341 #define MAX_ALPHA(n) ((1 << (n)) - 1)
342 #define N_Y_FRAC(n) ((n) == 1 ? 1 : (1 << ((n) / 2)) - 1)
343 #define N_X_FRAC(n) ((n) == 1 ? 1 : (1 << ((n) / 2)) + 1)
345 #define STEP_Y_SMALL(n) (pixman_fixed_1 / N_Y_FRAC (n))
346 #define STEP_Y_BIG(n) (pixman_fixed_1 - (N_Y_FRAC (n) - 1) * STEP_Y_SMALL (n))
348 #define Y_FRAC_FIRST(n) (STEP_Y_BIG (n) / 2)
349 #define Y_FRAC_LAST(n) (Y_FRAC_FIRST (n) + (N_Y_FRAC (n) - 1) * STEP_Y_SMALL (n))
351 #define STEP_X_SMALL(n) (pixman_fixed_1 / N_X_FRAC (n))
352 #define STEP_X_BIG(n) (pixman_fixed_1 - (N_X_FRAC (n) - 1) * STEP_X_SMALL (n))
354 #define X_FRAC_FIRST(n) (STEP_X_BIG (n) / 2)
355 #define X_FRAC_LAST(n) (X_FRAC_FIRST (n) + (N_X_FRAC (n) - 1) * STEP_X_SMALL (n))
357 #define RENDER_SAMPLES_X(x, n) \
358 ((n) == 1? 0 : (pixman_fixed_frac (x) + \
359 X_FRAC_FIRST (n)) / STEP_X_SMALL (n))
362 pixman_rasterize_edges_accessors (pixman_image_t *image,
371 typedef struct pixman_implementation_t pixman_implementation_t;
373 typedef void (*pixman_combine_32_func_t) (pixman_implementation_t *imp,
376 const uint32_t * src,
377 const uint32_t * mask,
380 typedef void (*pixman_combine_64_func_t) (pixman_implementation_t *imp,
383 const uint64_t * src,
384 const uint64_t * mask,
387 typedef void (*pixman_composite_func_t) (pixman_implementation_t *imp,
389 pixman_image_t * src,
390 pixman_image_t * mask,
391 pixman_image_t * dest,
400 typedef pixman_bool_t (*pixman_blt_func_t) (pixman_implementation_t *imp,
413 typedef pixman_bool_t (*pixman_fill_func_t) (pixman_implementation_t *imp,
423 void _pixman_setup_combiner_functions_32 (pixman_implementation_t *imp);
424 void _pixman_setup_combiner_functions_64 (pixman_implementation_t *imp);
429 pixman_format_code_t src_format;
431 pixman_format_code_t mask_format;
433 pixman_format_code_t dest_format;
435 pixman_composite_func_t func;
436 } pixman_fast_path_t;
438 struct pixman_implementation_t
440 pixman_implementation_t * toplevel;
441 pixman_implementation_t * delegate;
442 const pixman_fast_path_t * fast_paths;
444 pixman_blt_func_t blt;
445 pixman_fill_func_t fill;
447 pixman_combine_32_func_t combine_32[PIXMAN_N_OPERATORS];
448 pixman_combine_32_func_t combine_32_ca[PIXMAN_N_OPERATORS];
449 pixman_combine_64_func_t combine_64[PIXMAN_N_OPERATORS];
450 pixman_combine_64_func_t combine_64_ca[PIXMAN_N_OPERATORS];
453 pixman_implementation_t *
454 _pixman_implementation_create (pixman_implementation_t *delegate,
455 const pixman_fast_path_t *fast_paths);
458 _pixman_implementation_combine_32 (pixman_implementation_t *imp,
461 const uint32_t * src,
462 const uint32_t * mask,
465 _pixman_implementation_combine_64 (pixman_implementation_t *imp,
468 const uint64_t * src,
469 const uint64_t * mask,
472 _pixman_implementation_combine_32_ca (pixman_implementation_t *imp,
475 const uint32_t * src,
476 const uint32_t * mask,
479 _pixman_implementation_combine_64_ca (pixman_implementation_t *imp,
482 const uint64_t * src,
483 const uint64_t * mask,
487 _pixman_implementation_blt (pixman_implementation_t *imp,
502 _pixman_implementation_fill (pixman_implementation_t *imp,
512 /* Specific implementations */
513 pixman_implementation_t *
514 _pixman_implementation_create_general (void);
516 pixman_implementation_t *
517 _pixman_implementation_create_fast_path (void);
520 pixman_implementation_t *
521 _pixman_implementation_create_mmx (void);
525 pixman_implementation_t *
526 _pixman_implementation_create_sse2 (void);
530 pixman_implementation_t *
531 _pixman_implementation_create_arm_simd (void);
535 pixman_implementation_t *
536 _pixman_implementation_create_arm_neon (void);
540 pixman_implementation_t *
541 _pixman_implementation_create_vmx (void);
544 pixman_implementation_t *
545 _pixman_choose_implementation (void);
553 /* These "formats" all have depth 0, so they
554 * will never clash with any real ones
556 #define PIXMAN_null PIXMAN_FORMAT (0, 0, 0, 0, 0, 0)
557 #define PIXMAN_solid PIXMAN_FORMAT (0, 1, 0, 0, 0, 0)
558 #define PIXMAN_pixbuf PIXMAN_FORMAT (0, 2, 0, 0, 0, 0)
559 #define PIXMAN_rpixbuf PIXMAN_FORMAT (0, 3, 0, 0, 0, 0)
560 #define PIXMAN_unknown PIXMAN_FORMAT (0, 4, 0, 0, 0, 0)
561 #define PIXMAN_any PIXMAN_FORMAT (0, 5, 0, 0, 0, 0)
563 #define PIXMAN_OP_any (PIXMAN_N_OPERATORS + 1)
565 #define FAST_PATH_ID_TRANSFORM (1 << 0)
566 #define FAST_PATH_NO_ALPHA_MAP (1 << 1)
567 #define FAST_PATH_NO_CONVOLUTION_FILTER (1 << 2)
568 #define FAST_PATH_NO_PAD_REPEAT (1 << 3)
569 #define FAST_PATH_NO_REFLECT_REPEAT (1 << 4)
570 #define FAST_PATH_NO_ACCESSORS (1 << 5)
571 #define FAST_PATH_NO_WIDE_FORMAT (1 << 6)
572 #define FAST_PATH_COVERS_CLIP (1 << 7)
573 #define FAST_PATH_COMPONENT_ALPHA (1 << 8)
574 #define FAST_PATH_UNIFIED_ALPHA (1 << 9)
575 #define FAST_PATH_SCALE_TRANSFORM (1 << 10)
576 #define FAST_PATH_NEAREST_FILTER (1 << 11)
577 #define FAST_PATH_SIMPLE_REPEAT (1 << 12)
578 #define FAST_PATH_IS_OPAQUE (1 << 13)
579 #define FAST_PATH_NEEDS_WORKAROUND (1 << 14)
581 #define _FAST_PATH_STANDARD_FLAGS \
582 (FAST_PATH_ID_TRANSFORM | \
583 FAST_PATH_NO_ALPHA_MAP | \
584 FAST_PATH_NO_CONVOLUTION_FILTER | \
585 FAST_PATH_NO_PAD_REPEAT | \
586 FAST_PATH_NO_REFLECT_REPEAT | \
587 FAST_PATH_NO_ACCESSORS | \
588 FAST_PATH_NO_WIDE_FORMAT | \
589 FAST_PATH_COVERS_CLIP)
591 #define FAST_PATH_STD_SRC_FLAGS \
592 _FAST_PATH_STANDARD_FLAGS
593 #define FAST_PATH_STD_MASK_U_FLAGS \
594 (_FAST_PATH_STANDARD_FLAGS | \
595 FAST_PATH_UNIFIED_ALPHA)
596 #define FAST_PATH_STD_MASK_CA_FLAGS \
597 (_FAST_PATH_STANDARD_FLAGS | \
598 FAST_PATH_COMPONENT_ALPHA)
599 #define FAST_PATH_STD_DEST_FLAGS \
600 (FAST_PATH_NO_ACCESSORS | \
601 FAST_PATH_NO_WIDE_FORMAT)
603 #define FAST_PATH(op, src, src_flags, mask, mask_flags, dest, dest_flags, func) \
613 #define PIXMAN_STD_FAST_PATH(op, src, mask, dest, func) \
616 src, FAST_PATH_STD_SRC_FLAGS, \
617 mask, (PIXMAN_ ## mask) ? FAST_PATH_STD_MASK_U_FLAGS : 0, \
618 dest, FAST_PATH_STD_DEST_FLAGS, \
621 #define PIXMAN_STD_FAST_PATH_CA(op, src, mask, dest, func) \
624 src, FAST_PATH_STD_SRC_FLAGS, \
625 mask, FAST_PATH_STD_MASK_CA_FLAGS, \
626 dest, FAST_PATH_STD_DEST_FLAGS, \
629 /* Memory allocation helpers */
631 pixman_malloc_ab (unsigned int n, unsigned int b);
634 pixman_malloc_abc (unsigned int a, unsigned int b, unsigned int c);
637 pixman_multiply_overflows_int (unsigned int a, unsigned int b);
640 pixman_addition_overflows_int (unsigned int a, unsigned int b);
642 /* Compositing utilities */
644 pixman_expand (uint64_t * dst,
645 const uint32_t * src,
646 pixman_format_code_t format,
650 pixman_contract (uint32_t * dst,
657 pixman_region32_copy_from_region16 (pixman_region32_t *dst,
658 pixman_region16_t *src);
661 pixman_region16_copy_from_region32 (pixman_region16_t *dst,
662 pixman_region32_t *src);
676 # define MIN(a, b) ((a < b) ? a : b)
680 # define MAX(a, b) ((a > b) ? a : b)
683 /* Integer division that rounds towards -infinity */
685 ((((a) < 0) == ((b) < 0)) ? (a) / (b) : \
686 ((a) - (b) + 1 - (((b) < 0) << 1)) / (b))
688 /* Modulus that produces the remainder wrt. DIV */
689 #define MOD(a, b) ((a) < 0 ? ((b) - ((-(a) - 1) % (b))) - 1 : (a) % (b))
691 #define CLIP(v, low, high) ((v) < (low) ? (low) : ((v) > (high) ? (high) : (v)))
693 /* Conversion between 8888 and 0565 */
695 #define CONVERT_8888_TO_0565(s) \
696 ((((s) >> 3) & 0x001f) | \
697 (((s) >> 5) & 0x07e0) | \
698 (((s) >> 8) & 0xf800))
700 #define CONVERT_0565_TO_0888(s) \
701 (((((s) << 3) & 0xf8) | (((s) >> 2) & 0x7)) | \
702 ((((s) << 5) & 0xfc00) | (((s) >> 1) & 0x300)) | \
703 ((((s) << 8) & 0xf80000) | (((s) << 3) & 0x70000)))
705 #define PIXMAN_FORMAT_IS_WIDE(f) \
706 (PIXMAN_FORMAT_A (f) > 8 || \
707 PIXMAN_FORMAT_R (f) > 8 || \
708 PIXMAN_FORMAT_G (f) > 8 || \
709 PIXMAN_FORMAT_B (f) > 8)
711 #ifdef WORDS_BIGENDIAN
712 # define SCREEN_SHIFT_LEFT(x,n) ((x) << (n))
713 # define SCREEN_SHIFT_RIGHT(x,n) ((x) >> (n))
715 # define SCREEN_SHIFT_LEFT(x,n) ((x) >> (n))
716 # define SCREEN_SHIFT_RIGHT(x,n) ((x) << (n))
720 * Various debugging code
725 /* Turn on debugging depending on what type of release this is
727 #if (((PIXMAN_VERSION_MICRO % 2) == 0) && ((PIXMAN_VERSION_MINOR % 2) == 1))
729 /* Debugging gets turned on for development releases because these
730 * are the things that end up in bleeding edge distributions such
733 * For performance reasons we don't turn it on for stable releases or
734 * random git checkouts. (Random git checkouts are often used for
745 _pixman_log_error (const char *function, const char *message);
747 #define return_if_fail(expr) \
752 _pixman_log_error (FUNC, "The expression " # expr " was false"); \
758 #define return_val_if_fail(expr, retval) \
763 _pixman_log_error (FUNC, "The expression " # expr " was false"); \
769 #define critical_if_fail(expr) \
773 _pixman_log_error (FUNC, "The expression " # expr " was false"); \
780 #define _pixman_log_error(f,m) do { } while (0) \
782 #define return_if_fail(expr) \
790 #define return_val_if_fail(expr, retval) \
798 #define critical_if_fail(expr) \
811 static inline uint64_t
812 oil_profile_stamp_rdtsc (void)
816 __asm__ __volatile__ ("rdtsc\n" : "=A" (ts));
820 #define OIL_STAMP oil_profile_stamp_rdtsc
822 typedef struct pixman_timer_t pixman_timer_t;
824 struct pixman_timer_t
830 pixman_timer_t *next;
833 extern int timer_defined;
835 void pixman_timer_register (pixman_timer_t *timer);
837 #define TIMER_BEGIN(tname) \
839 static pixman_timer_t timer ## tname; \
840 uint64_t begin ## tname; \
842 if (!timer ## tname.initialized) \
844 timer ## tname.initialized = 1; \
845 timer ## tname.name = # tname; \
846 pixman_timer_register (&timer ## tname); \
849 timer ## tname.n_times++; \
850 begin ## tname = OIL_STAMP ();
852 #define TIMER_END(tname) \
853 timer ## tname.total += OIL_STAMP () - begin ## tname; \
856 #endif /* PIXMAN_TIMERS */
858 #endif /* PIXMAN_PRIVATE_H */