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;
197 _pixman_bits_image_setup_accessors (bits_image_t *image);
200 _pixman_image_get_scanline_generic_64 (pixman_image_t *image,
205 const uint32_t *mask);
208 _pixman_image_classify (pixman_image_t *image,
215 _pixman_image_get_scanline_32 (pixman_image_t *image,
220 const uint32_t *mask);
222 /* Even thought the type of buffer is uint32_t *, the function actually expects
223 * a uint64_t *buffer.
226 _pixman_image_get_scanline_64 (pixman_image_t *image,
231 const uint32_t *unused);
234 _pixman_image_store_scanline_32 (bits_image_t * image,
238 const uint32_t *buffer);
240 /* Even though the type of buffer is uint32_t *, the function
241 * actually expects a uint64_t *buffer.
244 _pixman_image_store_scanline_64 (bits_image_t * image,
248 const uint32_t *buffer);
251 _pixman_image_allocate (void);
254 _pixman_init_gradient (gradient_t * gradient,
255 const pixman_gradient_stop_t *stops,
258 _pixman_image_reset_clip_region (pixman_image_t *image);
261 _pixman_image_validate (pixman_image_t *image);
264 _pixman_image_get_solid (pixman_image_t * image,
265 pixman_format_code_t format);
267 #define PIXMAN_IMAGE_GET_LINE(image, x, y, type, out_stride, line, mul) \
270 uint32_t *__bits__; \
273 __bits__ = image->bits.bits; \
274 __stride__ = image->bits.rowstride; \
276 __stride__ * (int) sizeof (uint32_t) / (int) sizeof (type); \
278 ((type *) __bits__) + (out_stride) * (y) + (mul) * (x); \
294 pixman_gradient_stop_t *stops;
299 } pixman_gradient_walker_t;
302 _pixman_gradient_walker_init (pixman_gradient_walker_t *walker,
303 gradient_t * gradient,
304 unsigned int spread);
307 _pixman_gradient_walker_reset (pixman_gradient_walker_t *walker,
308 pixman_fixed_32_32_t pos);
311 _pixman_gradient_walker_pixel (pixman_gradient_walker_t *walker,
312 pixman_fixed_32_32_t x);
318 #define MAX_ALPHA(n) ((1 << (n)) - 1)
319 #define N_Y_FRAC(n) ((n) == 1 ? 1 : (1 << ((n) / 2)) - 1)
320 #define N_X_FRAC(n) ((n) == 1 ? 1 : (1 << ((n) / 2)) + 1)
322 #define STEP_Y_SMALL(n) (pixman_fixed_1 / N_Y_FRAC (n))
323 #define STEP_Y_BIG(n) (pixman_fixed_1 - (N_Y_FRAC (n) - 1) * STEP_Y_SMALL (n))
325 #define Y_FRAC_FIRST(n) (STEP_Y_BIG (n) / 2)
326 #define Y_FRAC_LAST(n) (Y_FRAC_FIRST (n) + (N_Y_FRAC (n) - 1) * STEP_Y_SMALL (n))
328 #define STEP_X_SMALL(n) (pixman_fixed_1 / N_X_FRAC (n))
329 #define STEP_X_BIG(n) (pixman_fixed_1 - (N_X_FRAC (n) - 1) * STEP_X_SMALL (n))
331 #define X_FRAC_FIRST(n) (STEP_X_BIG (n) / 2)
332 #define X_FRAC_LAST(n) (X_FRAC_FIRST (n) + (N_X_FRAC (n) - 1) * STEP_X_SMALL (n))
334 #define RENDER_SAMPLES_X(x, n) \
335 ((n) == 1? 0 : (pixman_fixed_frac (x) + \
336 X_FRAC_FIRST (n)) / STEP_X_SMALL (n))
339 pixman_rasterize_edges_accessors (pixman_image_t *image,
348 typedef struct pixman_implementation_t pixman_implementation_t;
350 typedef void (*pixman_combine_32_func_t) (pixman_implementation_t *imp,
353 const uint32_t * src,
354 const uint32_t * mask,
357 typedef void (*pixman_combine_64_func_t) (pixman_implementation_t *imp,
360 const uint64_t * src,
361 const uint64_t * mask,
364 typedef void (*pixman_composite_func_t) (pixman_implementation_t *imp,
366 pixman_image_t * src,
367 pixman_image_t * mask,
368 pixman_image_t * dest,
377 typedef pixman_bool_t (*pixman_blt_func_t) (pixman_implementation_t *imp,
390 typedef pixman_bool_t (*pixman_fill_func_t) (pixman_implementation_t *imp,
400 void _pixman_setup_combiner_functions_32 (pixman_implementation_t *imp);
401 void _pixman_setup_combiner_functions_64 (pixman_implementation_t *imp);
406 pixman_format_code_t src_format;
408 pixman_format_code_t mask_format;
410 pixman_format_code_t dest_format;
412 pixman_composite_func_t func;
413 } pixman_fast_path_t;
415 struct pixman_implementation_t
417 pixman_implementation_t * toplevel;
418 pixman_implementation_t * delegate;
419 const pixman_fast_path_t * fast_paths;
421 pixman_blt_func_t blt;
422 pixman_fill_func_t fill;
424 pixman_combine_32_func_t combine_32[PIXMAN_N_OPERATORS];
425 pixman_combine_32_func_t combine_32_ca[PIXMAN_N_OPERATORS];
426 pixman_combine_64_func_t combine_64[PIXMAN_N_OPERATORS];
427 pixman_combine_64_func_t combine_64_ca[PIXMAN_N_OPERATORS];
430 pixman_implementation_t *
431 _pixman_implementation_create (pixman_implementation_t *delegate,
432 const pixman_fast_path_t *fast_paths);
435 _pixman_implementation_combine_32 (pixman_implementation_t *imp,
438 const uint32_t * src,
439 const uint32_t * mask,
442 _pixman_implementation_combine_64 (pixman_implementation_t *imp,
445 const uint64_t * src,
446 const uint64_t * mask,
449 _pixman_implementation_combine_32_ca (pixman_implementation_t *imp,
452 const uint32_t * src,
453 const uint32_t * mask,
456 _pixman_implementation_combine_64_ca (pixman_implementation_t *imp,
459 const uint64_t * src,
460 const uint64_t * mask,
464 _pixman_implementation_blt (pixman_implementation_t *imp,
479 _pixman_implementation_fill (pixman_implementation_t *imp,
489 /* Specific implementations */
490 pixman_implementation_t *
491 _pixman_implementation_create_general (void);
493 pixman_implementation_t *
494 _pixman_implementation_create_fast_path (void);
497 pixman_implementation_t *
498 _pixman_implementation_create_mmx (void);
502 pixman_implementation_t *
503 _pixman_implementation_create_sse2 (void);
507 pixman_implementation_t *
508 _pixman_implementation_create_arm_simd (void);
512 pixman_implementation_t *
513 _pixman_implementation_create_arm_neon (void);
517 pixman_implementation_t *
518 _pixman_implementation_create_vmx (void);
521 pixman_implementation_t *
522 _pixman_choose_implementation (void);
530 /* These "formats" all have depth 0, so they
531 * will never clash with any real ones
533 #define PIXMAN_null PIXMAN_FORMAT (0, 0, 0, 0, 0, 0)
534 #define PIXMAN_solid PIXMAN_FORMAT (0, 1, 0, 0, 0, 0)
535 #define PIXMAN_pixbuf PIXMAN_FORMAT (0, 2, 0, 0, 0, 0)
536 #define PIXMAN_rpixbuf PIXMAN_FORMAT (0, 3, 0, 0, 0, 0)
537 #define PIXMAN_unknown PIXMAN_FORMAT (0, 4, 0, 0, 0, 0)
538 #define PIXMAN_any PIXMAN_FORMAT (0, 5, 0, 0, 0, 0)
540 #define PIXMAN_OP_any (PIXMAN_N_OPERATORS + 1)
542 #define FAST_PATH_ID_TRANSFORM (1 << 0)
543 #define FAST_PATH_NO_ALPHA_MAP (1 << 1)
544 #define FAST_PATH_NO_CONVOLUTION_FILTER (1 << 2)
545 #define FAST_PATH_NO_PAD_REPEAT (1 << 3)
546 #define FAST_PATH_NO_REFLECT_REPEAT (1 << 4)
547 #define FAST_PATH_NO_ACCESSORS (1 << 5)
548 #define FAST_PATH_NARROW_FORMAT (1 << 6)
549 #define FAST_PATH_COMPONENT_ALPHA (1 << 8)
550 #define FAST_PATH_SAMPLES_OPAQUE (1 << 7)
551 #define FAST_PATH_UNIFIED_ALPHA (1 << 9)
552 #define FAST_PATH_SCALE_TRANSFORM (1 << 10)
553 #define FAST_PATH_NEAREST_FILTER (1 << 11)
554 #define FAST_PATH_HAS_TRANSFORM (1 << 12)
555 #define FAST_PATH_IS_OPAQUE (1 << 13)
556 #define FAST_PATH_NO_NORMAL_REPEAT (1 << 14)
557 #define FAST_PATH_NO_NONE_REPEAT (1 << 15)
558 #define FAST_PATH_SAMPLES_COVER_CLIP (1 << 16)
559 #define FAST_PATH_X_UNIT_POSITIVE (1 << 17)
560 #define FAST_PATH_AFFINE_TRANSFORM (1 << 18)
561 #define FAST_PATH_Y_UNIT_ZERO (1 << 19)
562 #define FAST_PATH_BILINEAR_FILTER (1 << 20)
564 #define FAST_PATH_PAD_REPEAT \
565 (FAST_PATH_NO_NONE_REPEAT | \
566 FAST_PATH_NO_NORMAL_REPEAT | \
567 FAST_PATH_NO_REFLECT_REPEAT)
569 #define FAST_PATH_NORMAL_REPEAT \
570 (FAST_PATH_NO_NONE_REPEAT | \
571 FAST_PATH_NO_PAD_REPEAT | \
572 FAST_PATH_NO_REFLECT_REPEAT)
574 #define FAST_PATH_NONE_REPEAT \
575 (FAST_PATH_NO_NORMAL_REPEAT | \
576 FAST_PATH_NO_PAD_REPEAT | \
577 FAST_PATH_NO_REFLECT_REPEAT)
579 #define FAST_PATH_REFLECT_REPEAT \
580 (FAST_PATH_NO_NONE_REPEAT | \
581 FAST_PATH_NO_NORMAL_REPEAT | \
582 FAST_PATH_NO_PAD_REPEAT)
584 #define FAST_PATH_STANDARD_FLAGS \
585 (FAST_PATH_NO_CONVOLUTION_FILTER | \
586 FAST_PATH_NO_ACCESSORS | \
587 FAST_PATH_NO_ALPHA_MAP | \
588 FAST_PATH_NARROW_FORMAT)
590 #define FAST_PATH_STD_DEST_FLAGS \
591 (FAST_PATH_NO_ACCESSORS | \
592 FAST_PATH_NO_ALPHA_MAP | \
593 FAST_PATH_NARROW_FORMAT)
595 #define SOURCE_FLAGS(format) \
596 (FAST_PATH_STANDARD_FLAGS | \
597 ((PIXMAN_ ## format == PIXMAN_solid) ? \
598 0 : (FAST_PATH_SAMPLES_COVER_CLIP | FAST_PATH_ID_TRANSFORM)))
600 #define MASK_FLAGS(format, extra) \
601 ((PIXMAN_ ## format == PIXMAN_null) ? 0 : (SOURCE_FLAGS (format) | extra))
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, SOURCE_FLAGS (src), \
617 mask, MASK_FLAGS (mask, FAST_PATH_UNIFIED_ALPHA), \
618 dest, FAST_PATH_STD_DEST_FLAGS, \
621 #define PIXMAN_STD_FAST_PATH_CA(op, src, mask, dest, func) \
624 src, SOURCE_FLAGS (src), \
625 mask, MASK_FLAGS (mask, FAST_PATH_COMPONENT_ALPHA), \
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 CONVERT_0565_TO_8888(s) (CONVERT_0565_TO_0888(s) | 0xff000000)
707 /* Trivial versions that are useful in macros */
708 #define CONVERT_8888_TO_8888(s) (s)
709 #define CONVERT_0565_TO_0565(s) (s)
711 #define PIXMAN_FORMAT_IS_WIDE(f) \
712 (PIXMAN_FORMAT_A (f) > 8 || \
713 PIXMAN_FORMAT_R (f) > 8 || \
714 PIXMAN_FORMAT_G (f) > 8 || \
715 PIXMAN_FORMAT_B (f) > 8)
717 #ifdef WORDS_BIGENDIAN
718 # define SCREEN_SHIFT_LEFT(x,n) ((x) << (n))
719 # define SCREEN_SHIFT_RIGHT(x,n) ((x) >> (n))
721 # define SCREEN_SHIFT_LEFT(x,n) ((x) >> (n))
722 # define SCREEN_SHIFT_RIGHT(x,n) ((x) << (n))
726 * Various debugging code
731 #define COMPILE_TIME_ASSERT(x) \
732 do { typedef int compile_time_assertion [(x)?1:-1]; } while (0)
734 /* Turn on debugging depending on what type of release this is
736 #if (((PIXMAN_VERSION_MICRO % 2) == 0) && ((PIXMAN_VERSION_MINOR % 2) == 1))
738 /* Debugging gets turned on for development releases because these
739 * are the things that end up in bleeding edge distributions such
742 * For performance reasons we don't turn it on for stable releases or
743 * random git checkouts. (Random git checkouts are often used for
754 _pixman_log_error (const char *function, const char *message);
756 #define return_if_fail(expr) \
761 _pixman_log_error (FUNC, "The expression " # expr " was false"); \
767 #define return_val_if_fail(expr, retval) \
772 _pixman_log_error (FUNC, "The expression " # expr " was false"); \
778 #define critical_if_fail(expr) \
782 _pixman_log_error (FUNC, "The expression " # expr " was false"); \
789 #define _pixman_log_error(f,m) do { } while (0) \
791 #define return_if_fail(expr) \
799 #define return_val_if_fail(expr, retval) \
807 #define critical_if_fail(expr) \
820 static inline uint64_t
821 oil_profile_stamp_rdtsc (void)
825 __asm__ __volatile__ ("rdtsc\n" : "=A" (ts));
829 #define OIL_STAMP oil_profile_stamp_rdtsc
831 typedef struct pixman_timer_t pixman_timer_t;
833 struct pixman_timer_t
839 pixman_timer_t *next;
842 extern int timer_defined;
844 void pixman_timer_register (pixman_timer_t *timer);
846 #define TIMER_BEGIN(tname) \
848 static pixman_timer_t timer ## tname; \
849 uint64_t begin ## tname; \
851 if (!timer ## tname.initialized) \
853 timer ## tname.initialized = 1; \
854 timer ## tname.name = # tname; \
855 pixman_timer_register (&timer ## tname); \
858 timer ## tname.n_times++; \
859 begin ## tname = OIL_STAMP ();
861 #define TIMER_END(tname) \
862 timer ## tname.total += OIL_STAMP () - begin ## tname; \
865 #endif /* PIXMAN_TIMERS */
867 #endif /* PIXMAN_PRIVATE_H */