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
17 #include "pixman-compiler.h"
22 typedef struct image_common image_common_t;
23 typedef struct solid_fill solid_fill_t;
24 typedef struct gradient gradient_t;
25 typedef struct linear_gradient linear_gradient_t;
26 typedef struct horizontal_gradient horizontal_gradient_t;
27 typedef struct vertical_gradient vertical_gradient_t;
28 typedef struct conical_gradient conical_gradient_t;
29 typedef struct radial_gradient radial_gradient_t;
30 typedef struct bits_image bits_image_t;
31 typedef struct circle circle_t;
33 typedef void (*fetch_scanline_t) (pixman_image_t *image,
38 const uint32_t *mask);
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_t;
69 typedef source_image_class_t (*classify_func_t) (pixman_image_t *image,
74 typedef void (*property_changed_func_t) (pixman_image_t *image);
80 pixman_region32_t clip_region;
81 int32_t alpha_count; /* How many times this image is being used as an alpha map */
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 pixman_color_t color;
121 image_common_t common;
123 pixman_gradient_stop_t *stops;
126 struct linear_gradient
129 pixman_point_fixed_t p1;
130 pixman_point_fixed_t p2;
137 pixman_fixed_t radius;
140 struct radial_gradient
153 struct conical_gradient
156 pixman_point_fixed_t center;
162 image_common_t common;
163 pixman_format_code_t format;
164 const pixman_indexed_t * indexed;
169 int rowstride; /* in number of uint32_t's */
171 fetch_scanline_t fetch_scanline_32;
172 fetch_pixel_32_t fetch_pixel_32;
173 store_scanline_t store_scanline_32;
175 fetch_scanline_t fetch_scanline_64;
176 fetch_pixel_64_t fetch_pixel_64;
177 store_scanline_t store_scanline_64;
179 /* Used for indirect access to the bits */
180 pixman_read_memory_func_t read_func;
181 pixman_write_memory_func_t write_func;
187 image_common_t common;
190 linear_gradient_t linear;
191 conical_gradient_t conical;
192 radial_gradient_t radial;
196 typedef struct pixman_iter_t pixman_iter_t;
199 ITER_NARROW = (1 << 0),
204 uint32_t *(* get_scanline) (pixman_iter_t *iter, const uint32_t *mask);
205 void (* write_back) (pixman_iter_t *iter);
207 pixman_image_t * image;
214 _pixman_bits_image_setup_accessors (bits_image_t *image);
217 _pixman_bits_image_src_iter_init (pixman_image_t *image,
219 int x, int y, int width, int height,
220 uint8_t *buffer, iter_flags_t flags);
222 _pixman_bits_image_dest_iter_init (pixman_image_t *image,
224 int x, int y, int width, int height,
225 uint8_t *buffer, iter_flags_t flags);
228 _pixman_image_get_scanline_generic_64 (pixman_image_t *image,
233 const uint32_t *mask);
236 _pixman_image_classify (pixman_image_t *image,
243 _pixman_image_get_scanline_32 (pixman_image_t *image,
248 const uint32_t *mask);
250 /* Even thought the type of buffer is uint32_t *, the function actually expects
251 * a uint64_t *buffer.
254 _pixman_image_get_scanline_64 (pixman_image_t *image,
259 const uint32_t *unused);
262 _pixman_image_allocate (void);
265 _pixman_init_gradient (gradient_t * gradient,
266 const pixman_gradient_stop_t *stops,
269 _pixman_image_reset_clip_region (pixman_image_t *image);
272 _pixman_image_validate (pixman_image_t *image);
275 _pixman_image_get_solid (pixman_image_t * image,
276 pixman_format_code_t format);
278 #define PIXMAN_IMAGE_GET_LINE(image, x, y, type, out_stride, line, mul) \
281 uint32_t *__bits__; \
284 __bits__ = image->bits.bits; \
285 __stride__ = image->bits.rowstride; \
287 __stride__ * (int) sizeof (uint32_t) / (int) sizeof (type); \
289 ((type *) __bits__) + (out_stride) * (y) + (mul) * (x); \
305 pixman_gradient_stop_t *stops;
310 } pixman_gradient_walker_t;
313 _pixman_gradient_walker_init (pixman_gradient_walker_t *walker,
314 gradient_t * gradient,
315 unsigned int spread);
318 _pixman_gradient_walker_reset (pixman_gradient_walker_t *walker,
319 pixman_fixed_32_32_t pos);
322 _pixman_gradient_walker_pixel (pixman_gradient_walker_t *walker,
323 pixman_fixed_32_32_t x);
329 #define MAX_ALPHA(n) ((1 << (n)) - 1)
330 #define N_Y_FRAC(n) ((n) == 1 ? 1 : (1 << ((n) / 2)) - 1)
331 #define N_X_FRAC(n) ((n) == 1 ? 1 : (1 << ((n) / 2)) + 1)
333 #define STEP_Y_SMALL(n) (pixman_fixed_1 / N_Y_FRAC (n))
334 #define STEP_Y_BIG(n) (pixman_fixed_1 - (N_Y_FRAC (n) - 1) * STEP_Y_SMALL (n))
336 #define Y_FRAC_FIRST(n) (STEP_Y_BIG (n) / 2)
337 #define Y_FRAC_LAST(n) (Y_FRAC_FIRST (n) + (N_Y_FRAC (n) - 1) * STEP_Y_SMALL (n))
339 #define STEP_X_SMALL(n) (pixman_fixed_1 / N_X_FRAC (n))
340 #define STEP_X_BIG(n) (pixman_fixed_1 - (N_X_FRAC (n) - 1) * STEP_X_SMALL (n))
342 #define X_FRAC_FIRST(n) (STEP_X_BIG (n) / 2)
343 #define X_FRAC_LAST(n) (X_FRAC_FIRST (n) + (N_X_FRAC (n) - 1) * STEP_X_SMALL (n))
345 #define RENDER_SAMPLES_X(x, n) \
346 ((n) == 1? 0 : (pixman_fixed_frac (x) + \
347 X_FRAC_FIRST (n)) / STEP_X_SMALL (n))
350 pixman_rasterize_edges_accessors (pixman_image_t *image,
359 typedef struct pixman_implementation_t pixman_implementation_t;
361 typedef void (*pixman_combine_32_func_t) (pixman_implementation_t *imp,
364 const uint32_t * src,
365 const uint32_t * mask,
368 typedef void (*pixman_combine_64_func_t) (pixman_implementation_t *imp,
371 const uint64_t * src,
372 const uint64_t * mask,
375 typedef void (*pixman_composite_func_t) (pixman_implementation_t *imp,
377 pixman_image_t * src,
378 pixman_image_t * mask,
379 pixman_image_t * dest,
388 typedef pixman_bool_t (*pixman_blt_func_t) (pixman_implementation_t *imp,
401 typedef pixman_bool_t (*pixman_fill_func_t) (pixman_implementation_t *imp,
411 void _pixman_setup_combiner_functions_32 (pixman_implementation_t *imp);
412 void _pixman_setup_combiner_functions_64 (pixman_implementation_t *imp);
417 pixman_format_code_t src_format;
419 pixman_format_code_t mask_format;
421 pixman_format_code_t dest_format;
423 pixman_composite_func_t func;
424 } pixman_fast_path_t;
426 struct pixman_implementation_t
428 pixman_implementation_t * toplevel;
429 pixman_implementation_t * delegate;
430 const pixman_fast_path_t * fast_paths;
432 pixman_blt_func_t blt;
433 pixman_fill_func_t fill;
435 pixman_combine_32_func_t combine_32[PIXMAN_N_OPERATORS];
436 pixman_combine_32_func_t combine_32_ca[PIXMAN_N_OPERATORS];
437 pixman_combine_64_func_t combine_64[PIXMAN_N_OPERATORS];
438 pixman_combine_64_func_t combine_64_ca[PIXMAN_N_OPERATORS];
441 pixman_implementation_t *
442 _pixman_implementation_create (pixman_implementation_t *delegate,
443 const pixman_fast_path_t *fast_paths);
446 _pixman_implementation_combine_32 (pixman_implementation_t *imp,
449 const uint32_t * src,
450 const uint32_t * mask,
453 _pixman_implementation_combine_64 (pixman_implementation_t *imp,
456 const uint64_t * src,
457 const uint64_t * mask,
460 _pixman_implementation_combine_32_ca (pixman_implementation_t *imp,
463 const uint32_t * src,
464 const uint32_t * mask,
467 _pixman_implementation_combine_64_ca (pixman_implementation_t *imp,
470 const uint64_t * src,
471 const uint64_t * mask,
475 _pixman_implementation_blt (pixman_implementation_t *imp,
490 _pixman_implementation_fill (pixman_implementation_t *imp,
500 /* Specific implementations */
501 pixman_implementation_t *
502 _pixman_implementation_create_general (void);
504 pixman_implementation_t *
505 _pixman_implementation_create_fast_path (void);
508 pixman_implementation_t *
509 _pixman_implementation_create_mmx (void);
513 pixman_implementation_t *
514 _pixman_implementation_create_sse2 (void);
518 pixman_implementation_t *
519 _pixman_implementation_create_arm_simd (void);
523 pixman_implementation_t *
524 _pixman_implementation_create_arm_neon (void);
528 pixman_implementation_t *
529 _pixman_implementation_create_vmx (void);
532 pixman_implementation_t *
533 _pixman_choose_implementation (void);
541 /* These "formats" all have depth 0, so they
542 * will never clash with any real ones
544 #define PIXMAN_null PIXMAN_FORMAT (0, 0, 0, 0, 0, 0)
545 #define PIXMAN_solid PIXMAN_FORMAT (0, 1, 0, 0, 0, 0)
546 #define PIXMAN_pixbuf PIXMAN_FORMAT (0, 2, 0, 0, 0, 0)
547 #define PIXMAN_rpixbuf PIXMAN_FORMAT (0, 3, 0, 0, 0, 0)
548 #define PIXMAN_unknown PIXMAN_FORMAT (0, 4, 0, 0, 0, 0)
549 #define PIXMAN_any PIXMAN_FORMAT (0, 5, 0, 0, 0, 0)
551 #define PIXMAN_OP_any (PIXMAN_N_OPERATORS + 1)
553 #define FAST_PATH_ID_TRANSFORM (1 << 0)
554 #define FAST_PATH_NO_ALPHA_MAP (1 << 1)
555 #define FAST_PATH_NO_CONVOLUTION_FILTER (1 << 2)
556 #define FAST_PATH_NO_PAD_REPEAT (1 << 3)
557 #define FAST_PATH_NO_REFLECT_REPEAT (1 << 4)
558 #define FAST_PATH_NO_ACCESSORS (1 << 5)
559 #define FAST_PATH_NARROW_FORMAT (1 << 6)
560 #define FAST_PATH_COMPONENT_ALPHA (1 << 8)
561 #define FAST_PATH_SAMPLES_OPAQUE (1 << 7)
562 #define FAST_PATH_UNIFIED_ALPHA (1 << 9)
563 #define FAST_PATH_SCALE_TRANSFORM (1 << 10)
564 #define FAST_PATH_NEAREST_FILTER (1 << 11)
565 #define FAST_PATH_HAS_TRANSFORM (1 << 12)
566 #define FAST_PATH_IS_OPAQUE (1 << 13)
567 #define FAST_PATH_NO_NORMAL_REPEAT (1 << 14)
568 #define FAST_PATH_NO_NONE_REPEAT (1 << 15)
569 #define FAST_PATH_SAMPLES_COVER_CLIP (1 << 16)
570 #define FAST_PATH_X_UNIT_POSITIVE (1 << 17)
571 #define FAST_PATH_AFFINE_TRANSFORM (1 << 18)
572 #define FAST_PATH_Y_UNIT_ZERO (1 << 19)
573 #define FAST_PATH_BILINEAR_FILTER (1 << 20)
575 #define FAST_PATH_PAD_REPEAT \
576 (FAST_PATH_NO_NONE_REPEAT | \
577 FAST_PATH_NO_NORMAL_REPEAT | \
578 FAST_PATH_NO_REFLECT_REPEAT)
580 #define FAST_PATH_NORMAL_REPEAT \
581 (FAST_PATH_NO_NONE_REPEAT | \
582 FAST_PATH_NO_PAD_REPEAT | \
583 FAST_PATH_NO_REFLECT_REPEAT)
585 #define FAST_PATH_NONE_REPEAT \
586 (FAST_PATH_NO_NORMAL_REPEAT | \
587 FAST_PATH_NO_PAD_REPEAT | \
588 FAST_PATH_NO_REFLECT_REPEAT)
590 #define FAST_PATH_REFLECT_REPEAT \
591 (FAST_PATH_NO_NONE_REPEAT | \
592 FAST_PATH_NO_NORMAL_REPEAT | \
593 FAST_PATH_NO_PAD_REPEAT)
595 #define FAST_PATH_STANDARD_FLAGS \
596 (FAST_PATH_NO_CONVOLUTION_FILTER | \
597 FAST_PATH_NO_ACCESSORS | \
598 FAST_PATH_NO_ALPHA_MAP | \
599 FAST_PATH_NARROW_FORMAT)
601 #define FAST_PATH_STD_DEST_FLAGS \
602 (FAST_PATH_NO_ACCESSORS | \
603 FAST_PATH_NO_ALPHA_MAP | \
604 FAST_PATH_NARROW_FORMAT)
606 #define SOURCE_FLAGS(format) \
607 (FAST_PATH_STANDARD_FLAGS | \
608 ((PIXMAN_ ## format == PIXMAN_solid) ? \
609 0 : (FAST_PATH_SAMPLES_COVER_CLIP | FAST_PATH_ID_TRANSFORM)))
611 #define MASK_FLAGS(format, extra) \
612 ((PIXMAN_ ## format == PIXMAN_null) ? 0 : (SOURCE_FLAGS (format) | extra))
614 #define FAST_PATH(op, src, src_flags, mask, mask_flags, dest, dest_flags, func) \
624 #define PIXMAN_STD_FAST_PATH(op, src, mask, dest, func) \
627 src, SOURCE_FLAGS (src), \
628 mask, MASK_FLAGS (mask, FAST_PATH_UNIFIED_ALPHA), \
629 dest, FAST_PATH_STD_DEST_FLAGS, \
632 #define PIXMAN_STD_FAST_PATH_CA(op, src, mask, dest, func) \
635 src, SOURCE_FLAGS (src), \
636 mask, MASK_FLAGS (mask, FAST_PATH_COMPONENT_ALPHA), \
637 dest, FAST_PATH_STD_DEST_FLAGS, \
640 /* Memory allocation helpers */
642 pixman_malloc_ab (unsigned int n, unsigned int b);
645 pixman_malloc_abc (unsigned int a, unsigned int b, unsigned int c);
648 pixman_multiply_overflows_int (unsigned int a, unsigned int b);
651 pixman_addition_overflows_int (unsigned int a, unsigned int b);
653 /* Compositing utilities */
655 pixman_expand (uint64_t * dst,
656 const uint32_t * src,
657 pixman_format_code_t format,
661 pixman_contract (uint32_t * dst,
668 pixman_region32_copy_from_region16 (pixman_region32_t *dst,
669 pixman_region16_t *src);
672 pixman_region16_copy_from_region32 (pixman_region16_t *dst,
673 pixman_region32_t *src);
687 # define MIN(a, b) ((a < b) ? a : b)
691 # define MAX(a, b) ((a > b) ? a : b)
694 /* Integer division that rounds towards -infinity */
696 ((((a) < 0) == ((b) < 0)) ? (a) / (b) : \
697 ((a) - (b) + 1 - (((b) < 0) << 1)) / (b))
699 /* Modulus that produces the remainder wrt. DIV */
700 #define MOD(a, b) ((a) < 0 ? ((b) - ((-(a) - 1) % (b))) - 1 : (a) % (b))
702 #define CLIP(v, low, high) ((v) < (low) ? (low) : ((v) > (high) ? (high) : (v)))
704 /* Conversion between 8888 and 0565 */
706 #define CONVERT_8888_TO_0565(s) \
707 ((((s) >> 3) & 0x001f) | \
708 (((s) >> 5) & 0x07e0) | \
709 (((s) >> 8) & 0xf800))
711 #define CONVERT_0565_TO_0888(s) \
712 (((((s) << 3) & 0xf8) | (((s) >> 2) & 0x7)) | \
713 ((((s) << 5) & 0xfc00) | (((s) >> 1) & 0x300)) | \
714 ((((s) << 8) & 0xf80000) | (((s) << 3) & 0x70000)))
716 #define CONVERT_0565_TO_8888(s) (CONVERT_0565_TO_0888(s) | 0xff000000)
718 /* Trivial versions that are useful in macros */
719 #define CONVERT_8888_TO_8888(s) (s)
720 #define CONVERT_0565_TO_0565(s) (s)
722 #define PIXMAN_FORMAT_IS_WIDE(f) \
723 (PIXMAN_FORMAT_A (f) > 8 || \
724 PIXMAN_FORMAT_R (f) > 8 || \
725 PIXMAN_FORMAT_G (f) > 8 || \
726 PIXMAN_FORMAT_B (f) > 8)
728 #ifdef WORDS_BIGENDIAN
729 # define SCREEN_SHIFT_LEFT(x,n) ((x) << (n))
730 # define SCREEN_SHIFT_RIGHT(x,n) ((x) >> (n))
732 # define SCREEN_SHIFT_LEFT(x,n) ((x) >> (n))
733 # define SCREEN_SHIFT_RIGHT(x,n) ((x) << (n))
737 * Various debugging code
742 #define COMPILE_TIME_ASSERT(x) \
743 do { typedef int compile_time_assertion [(x)?1:-1]; } while (0)
745 /* Turn on debugging depending on what type of release this is
747 #if (((PIXMAN_VERSION_MICRO % 2) == 0) && ((PIXMAN_VERSION_MINOR % 2) == 1))
749 /* Debugging gets turned on for development releases because these
750 * are the things that end up in bleeding edge distributions such
753 * For performance reasons we don't turn it on for stable releases or
754 * random git checkouts. (Random git checkouts are often used for
765 _pixman_log_error (const char *function, const char *message);
767 #define return_if_fail(expr) \
772 _pixman_log_error (FUNC, "The expression " # expr " was false"); \
778 #define return_val_if_fail(expr, retval) \
783 _pixman_log_error (FUNC, "The expression " # expr " was false"); \
789 #define critical_if_fail(expr) \
793 _pixman_log_error (FUNC, "The expression " # expr " was false"); \
800 #define _pixman_log_error(f,m) do { } while (0) \
802 #define return_if_fail(expr) \
810 #define return_val_if_fail(expr, retval) \
818 #define critical_if_fail(expr) \
831 static inline uint64_t
832 oil_profile_stamp_rdtsc (void)
836 __asm__ __volatile__ ("rdtsc\n" : "=A" (ts));
840 #define OIL_STAMP oil_profile_stamp_rdtsc
842 typedef struct pixman_timer_t pixman_timer_t;
844 struct pixman_timer_t
850 pixman_timer_t *next;
853 extern int timer_defined;
855 void pixman_timer_register (pixman_timer_t *timer);
857 #define TIMER_BEGIN(tname) \
859 static pixman_timer_t timer ## tname; \
860 uint64_t begin ## tname; \
862 if (!timer ## tname.initialized) \
864 timer ## tname.initialized = 1; \
865 timer ## tname.name = # tname; \
866 pixman_timer_register (&timer ## tname); \
869 timer ## tname.n_times++; \
870 begin ## tname = OIL_STAMP ();
872 #define TIMER_END(tname) \
873 timer ## tname.total += OIL_STAMP () - begin ## tname; \
876 #endif /* PIXMAN_TIMERS */
878 #endif /* PIXMAN_PRIVATE_H */