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_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;
95 bits_image_t * alpha_map;
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;
104 pixman_image_destroy_func_t destroy_func;
110 image_common_t common;
111 source_image_class_t class;
116 source_image_t common;
117 uint32_t color; /* FIXME: shouldn't this be a pixman_color_t? */
122 source_image_t common;
124 pixman_gradient_stop_t *stops;
128 struct linear_gradient
131 pixman_point_fixed_t p1;
132 pixman_point_fixed_t p2;
139 pixman_fixed_t radius;
142 struct radial_gradient
154 struct conical_gradient
157 pixman_point_fixed_t center;
158 pixman_fixed_t angle;
163 image_common_t common;
164 pixman_format_code_t format;
165 const pixman_indexed_t * indexed;
170 int rowstride; /* in number of uint32_t's */
172 /* Fetch a pixel, disregarding alpha maps, transformations etc. */
173 fetch_pixel_32_t fetch_pixel_raw_32;
174 fetch_pixel_64_t fetch_pixel_raw_64;
176 /* Fetch a pixel, taking alpha maps into account */
177 fetch_pixel_32_t fetch_pixel_32;
178 fetch_pixel_64_t fetch_pixel_64;
180 /* Fetch raw scanlines, with no regard for transformations, alpha maps etc. */
181 fetch_scanline_t fetch_scanline_raw_32;
182 fetch_scanline_t fetch_scanline_raw_64;
184 /* Store scanlines with no regard for alpha maps */
185 store_scanline_t store_scanline_raw_32;
186 store_scanline_t store_scanline_raw_64;
188 /* Store a scanline, taking alpha maps into account */
189 store_scanline_t store_scanline_32;
190 store_scanline_t store_scanline_64;
192 /* Used for indirect access to the bits */
193 pixman_read_memory_func_t read_func;
194 pixman_write_memory_func_t write_func;
200 image_common_t common;
202 source_image_t source;
204 linear_gradient_t linear;
205 conical_gradient_t conical;
206 radial_gradient_t radial;
212 _pixman_bits_image_setup_raw_accessors (bits_image_t *image);
215 _pixman_image_get_scanline_generic_64 (pixman_image_t *image,
220 const uint32_t *mask,
224 _pixman_image_classify (pixman_image_t *image,
231 _pixman_image_get_scanline_32 (pixman_image_t *image,
236 const uint32_t *mask,
239 /* Even thought the type of buffer is uint32_t *, the function actually expects
240 * a uint64_t *buffer.
243 _pixman_image_get_scanline_64 (pixman_image_t *image,
248 const uint32_t *unused,
252 _pixman_image_store_scanline_32 (bits_image_t * image,
256 const uint32_t *buffer);
258 /* Even though the type of buffer is uint32_t *, the function
259 * actually expects a uint64_t *buffer.
262 _pixman_image_store_scanline_64 (bits_image_t * image,
266 const uint32_t *buffer);
269 _pixman_image_allocate (void);
272 _pixman_init_gradient (gradient_t * gradient,
273 const pixman_gradient_stop_t *stops,
276 _pixman_image_reset_clip_region (pixman_image_t *image);
279 _pixman_image_validate (pixman_image_t *image);
282 _pixman_image_is_opaque (pixman_image_t *image);
285 _pixman_image_is_solid (pixman_image_t *image);
288 _pixman_image_get_solid (pixman_image_t * image,
289 pixman_format_code_t format);
291 #define PIXMAN_IMAGE_GET_LINE(image, x, y, type, out_stride, line, mul) \
294 uint32_t *__bits__; \
297 __bits__ = image->bits.bits; \
298 __stride__ = image->bits.rowstride; \
300 __stride__ * (int) sizeof (uint32_t) / (int) sizeof (type); \
302 ((type *) __bits__) + (out_stride) * (y) + (mul) * (x); \
318 pixman_gradient_stop_t *stops;
323 } pixman_gradient_walker_t;
326 _pixman_gradient_walker_init (pixman_gradient_walker_t *walker,
327 gradient_t * gradient,
328 unsigned int spread);
331 _pixman_gradient_walker_reset (pixman_gradient_walker_t *walker,
332 pixman_fixed_32_32_t pos);
335 _pixman_gradient_walker_pixel (pixman_gradient_walker_t *walker,
336 pixman_fixed_32_32_t x);
342 #define MAX_ALPHA(n) ((1 << (n)) - 1)
343 #define N_Y_FRAC(n) ((n) == 1 ? 1 : (1 << ((n) / 2)) - 1)
344 #define N_X_FRAC(n) ((n) == 1 ? 1 : (1 << ((n) / 2)) + 1)
346 #define STEP_Y_SMALL(n) (pixman_fixed_1 / N_Y_FRAC (n))
347 #define STEP_Y_BIG(n) (pixman_fixed_1 - (N_Y_FRAC (n) - 1) * STEP_Y_SMALL (n))
349 #define Y_FRAC_FIRST(n) (STEP_Y_SMALL (n) / 2)
350 #define Y_FRAC_LAST(n) (Y_FRAC_FIRST (n) + (N_Y_FRAC (n) - 1) * STEP_Y_SMALL (n))
352 #define STEP_X_SMALL(n) (pixman_fixed_1 / N_X_FRAC (n))
353 #define STEP_X_BIG(n) (pixman_fixed_1 - (N_X_FRAC (n) - 1) * STEP_X_SMALL (n))
355 #define X_FRAC_FIRST(n) (STEP_X_SMALL (n) / 2)
356 #define X_FRAC_LAST(n) (X_FRAC_FIRST (n) + (N_X_FRAC (n) - 1) * STEP_X_SMALL (n))
358 #define RENDER_SAMPLES_X(x, n) \
359 ((n) == 1? 0 : (pixman_fixed_frac (x) + \
360 X_FRAC_FIRST (n)) / STEP_X_SMALL (n))
363 pixman_rasterize_edges_accessors (pixman_image_t *image,
373 typedef struct pixman_implementation_t pixman_implementation_t;
375 typedef void (*pixman_combine_32_func_t) (pixman_implementation_t *imp,
378 const uint32_t * src,
379 const uint32_t * mask,
382 typedef void (*pixman_combine_64_func_t) (pixman_implementation_t *imp,
385 const uint64_t * src,
386 const uint64_t * mask,
389 typedef void (*pixman_composite_func_t) (pixman_implementation_t *imp,
391 pixman_image_t * src,
392 pixman_image_t * mask,
393 pixman_image_t * dest,
402 typedef pixman_bool_t (*pixman_blt_func_t) (pixman_implementation_t *imp,
415 typedef pixman_bool_t (*pixman_fill_func_t) (pixman_implementation_t *imp,
425 void _pixman_setup_combiner_functions_32 (pixman_implementation_t *imp);
426 void _pixman_setup_combiner_functions_64 (pixman_implementation_t *imp);
428 struct pixman_implementation_t
430 pixman_implementation_t *toplevel;
431 pixman_implementation_t *delegate;
433 pixman_composite_func_t composite;
434 pixman_blt_func_t blt;
435 pixman_fill_func_t fill;
437 pixman_combine_32_func_t combine_32[PIXMAN_N_OPERATORS];
438 pixman_combine_32_func_t combine_32_ca[PIXMAN_N_OPERATORS];
439 pixman_combine_64_func_t combine_64[PIXMAN_N_OPERATORS];
440 pixman_combine_64_func_t combine_64_ca[PIXMAN_N_OPERATORS];
443 pixman_implementation_t *
444 _pixman_implementation_create (pixman_implementation_t *delegate);
447 _pixman_implementation_combine_32 (pixman_implementation_t *imp,
450 const uint32_t * src,
451 const uint32_t * mask,
454 _pixman_implementation_combine_64 (pixman_implementation_t *imp,
457 const uint64_t * src,
458 const uint64_t * mask,
461 _pixman_implementation_combine_32_ca (pixman_implementation_t *imp,
464 const uint32_t * src,
465 const uint32_t * mask,
468 _pixman_implementation_combine_64_ca (pixman_implementation_t *imp,
471 const uint64_t * src,
472 const uint64_t * mask,
475 _pixman_implementation_composite (pixman_implementation_t *imp,
477 pixman_image_t * src,
478 pixman_image_t * mask,
479 pixman_image_t * dest,
490 _pixman_implementation_blt (pixman_implementation_t *imp,
505 _pixman_implementation_fill (pixman_implementation_t *imp,
515 /* Specific implementations */
516 pixman_implementation_t *
517 _pixman_implementation_create_general (void);
519 pixman_implementation_t *
520 _pixman_implementation_create_fast_path (void);
523 pixman_implementation_t *
524 _pixman_implementation_create_mmx (void);
528 pixman_implementation_t *
529 _pixman_implementation_create_sse2 (void);
533 pixman_implementation_t *
534 _pixman_implementation_create_arm_simd (void);
538 pixman_implementation_t *
539 _pixman_implementation_create_arm_neon (void);
543 pixman_implementation_t *
544 _pixman_implementation_create_vmx (void);
547 pixman_implementation_t *
548 _pixman_choose_implementation (void);
556 /* These "formats" all have depth 0, so they
557 * will never clash with any real ones
559 #define PIXMAN_null PIXMAN_FORMAT (0, 0, 0, 0, 0, 0)
560 #define PIXMAN_solid PIXMAN_FORMAT (0, 1, 0, 0, 0, 0)
561 #define PIXMAN_a8r8g8b8_ca PIXMAN_FORMAT (0, 2, 0, 0, 0, 0)
562 #define PIXMAN_a8b8g8r8_ca PIXMAN_FORMAT (0, 3, 0, 0, 0, 0)
563 #define PIXMAN_pixbuf PIXMAN_FORMAT (0, 4, 0, 0, 0, 0)
564 #define PIXMAN_rpixbuf PIXMAN_FORMAT (0, 5, 0, 0, 0, 0)
569 pixman_format_code_t src_format;
570 pixman_format_code_t mask_format;
571 pixman_format_code_t dest_format;
572 pixman_composite_func_t func;
573 } pixman_fast_path_t;
575 /* Memory allocation helpers */
577 pixman_malloc_ab (unsigned int n, unsigned int b);
580 pixman_malloc_abc (unsigned int a, unsigned int b, unsigned int c);
583 pixman_multiply_overflows_int (unsigned int a, unsigned int b);
586 pixman_addition_overflows_int (unsigned int a, unsigned int b);
588 /* Compositing utilities */
590 _pixman_run_fast_path (const pixman_fast_path_t *paths,
591 pixman_implementation_t * imp,
593 pixman_image_t * src,
594 pixman_image_t * mask,
595 pixman_image_t * dest,
606 _pixman_walk_composite_region (pixman_implementation_t *imp,
608 pixman_image_t * src_image,
609 pixman_image_t * mask_image,
610 pixman_image_t * dst_image,
619 pixman_composite_func_t composite_rect);
622 pixman_expand (uint64_t * dst,
623 const uint32_t * src,
624 pixman_format_code_t format,
628 pixman_contract (uint32_t * dst,
635 pixman_region32_copy_from_region16 (pixman_region32_t *dst,
636 pixman_region16_t *src);
639 pixman_region16_copy_from_region32 (pixman_region16_t *dst,
640 pixman_region32_t *src);
654 # define MIN(a, b) ((a < b) ? a : b)
658 # define MAX(a, b) ((a > b) ? a : b)
661 /* Integer division that rounds towards -infinity */
663 ((((a) < 0) == ((b) < 0)) ? (a) / (b) : \
664 ((a) - (b) + 1 - (((b) < 0) << 1)) / (b))
666 /* Modulus that produces the remainder wrt. DIV */
667 #define MOD(a, b) ((a) < 0 ? ((b) - ((-(a) - 1) % (b))) - 1 : (a) % (b))
669 #define CLIP(v, low, high) ((v) < (low) ? (low) : ((v) > (high) ? (high) : (v)))
671 /* Conversion between 8888 and 0565 */
673 #define CONVERT_8888_TO_0565(s) \
674 ((((s) >> 3) & 0x001f) | \
675 (((s) >> 5) & 0x07e0) | \
676 (((s) >> 8) & 0xf800))
678 #define CONVERT_0565_TO_0888(s) \
679 (((((s) << 3) & 0xf8) | (((s) >> 2) & 0x7)) | \
680 ((((s) << 5) & 0xfc00) | (((s) >> 1) & 0x300)) | \
681 ((((s) << 8) & 0xf80000) | (((s) << 3) & 0x70000)))
683 #define PIXMAN_FORMAT_IS_WIDE(f) \
684 (PIXMAN_FORMAT_A (f) > 8 || \
685 PIXMAN_FORMAT_R (f) > 8 || \
686 PIXMAN_FORMAT_G (f) > 8 || \
687 PIXMAN_FORMAT_B (f) > 8)
690 * Various debugging code
698 #define return_if_fail(expr) \
703 fprintf (stderr, "In %s: %s failed\n", FUNC, # expr); \
709 #define return_val_if_fail(expr, retval) \
714 fprintf (stderr, "In %s: %s failed\n", FUNC, # expr); \
722 #define return_if_fail(expr) \
730 #define return_val_if_fail(expr, retval) \
746 static inline uint64_t
747 oil_profile_stamp_rdtsc (void)
751 __asm__ __volatile__ ("rdtsc\n" : "=A" (ts));
755 #define OIL_STAMP oil_profile_stamp_rdtsc
757 typedef struct pixman_timer_t pixman_timer_t;
759 struct pixman_timer_t
765 pixman_timer_t *next;
768 extern int timer_defined;
770 void pixman_timer_register (pixman_timer_t *timer);
772 #define TIMER_BEGIN(tname) \
774 static pixman_timer_t timer ## tname; \
775 uint64_t begin ## tname; \
777 if (!timer ## tname.initialized) \
779 timer ## tname.initialized = 1; \
780 timer ## tname.name = # tname; \
781 pixman_timer_register (&timer ## tname); \
784 timer ## tname.n_times++; \
785 begin ## tname = OIL_STAMP ();
787 #define TIMER_END(tname) \
788 timer ## tname.total += OIL_STAMP () - begin ## tname; \
791 #endif /* PIXMAN_TIMERS */
793 #endif /* PIXMAN_PRIVATE_H */