2 # error config.h must be included before pixman-private.h
5 #ifndef PIXMAN_PRIVATE_H
6 #define PIXMAN_PRIVATE_H
12 #include "pixman-compiler.h"
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;
29 typedef void (*fetchProc32) (bits_image_t *pict,
30 int x, int y, int width,
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,
37 typedef void (*fetchProc64) (bits_image_t *pict,
38 int x, int y, int width,
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,
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,
52 typedef void (*scanFetchProc) (pixman_image_t *,
53 int, int, int, uint32_t *,
54 uint32_t *, uint32_t);
67 SOURCE_IMAGE_CLASS_UNKNOWN,
68 SOURCE_IMAGE_CLASS_HORIZONTAL,
69 SOURCE_IMAGE_CLASS_VERTICAL,
70 } source_pict_class_t;
72 typedef source_pict_class_t (* classify_func_t) (pixman_image_t *image,
77 typedef void (* property_changed_func_t) (pixman_image_t *image);
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
87 pixman_bool_t clip_sources; /* Whether the clip applies when
88 * the image is used as a source
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 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;
106 pixman_image_destroy_func_t destroy_func;
112 image_common_t common;
113 source_pict_class_t class;
118 source_image_t common;
119 uint32_t color; /* FIXME: shouldn't this be a pixman_color_t? */
124 source_image_t common;
126 pixman_gradient_stop_t * stops;
128 uint32_t * color_table;
129 int color_table_size;
132 struct linear_gradient
135 pixman_point_fixed_t p1;
136 pixman_point_fixed_t p2;
143 pixman_fixed_t radius;
146 struct radial_gradient
158 struct conical_gradient
161 pixman_point_fixed_t center;
162 pixman_fixed_t angle;
167 image_common_t common;
168 pixman_format_code_t format;
169 const pixman_indexed_t *indexed;
174 int rowstride; /* in number of uint32_t's */
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;
180 /* Fetch raw scanlines, with no regard for transformations, alpha maps etc. */
181 fetchProc32 fetch_scanline_raw_32;
182 fetchProc64 fetch_scanline_raw_64;
184 /* Store scanlines with no regard for alpha maps */
185 storeProc32 store_scanline_raw_32;
186 storeProc64 store_scanline_raw_64;
188 /* Store a scanline, taking alpha maps into account */
189 scanStoreProc store_scanline_32;
190 scanStoreProc 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_64_generic (pixman_image_t *pict,
224 _pixman_image_classify (pixman_image_t *image,
231 _pixman_image_get_scanline_32 (pixman_image_t *image, int x, int y, int width,
232 uint32_t *buffer, uint32_t *mask,
235 /* Even thought the type of buffer is uint32_t *, the function actually expects
236 * a uint64_t *buffer.
239 _pixman_image_get_scanline_64 (pixman_image_t *image, int x, int y, int width,
241 uint32_t *unused, uint32_t unused2);
244 _pixman_image_store_scanline_32 (bits_image_t *image, int x, int y, int width,
247 _pixman_image_fetch_pixels (bits_image_t *image, uint32_t *buffer,
250 /* Even thought the type of buffer is uint32_t *, the function actually expects
251 * a uint64_t *buffer.
254 _pixman_image_store_scanline_64 (bits_image_t *image, int x, int y, int width,
258 _pixman_image_allocate (void);
261 _pixman_init_gradient (gradient_t *gradient,
262 const pixman_gradient_stop_t *stops,
265 _pixman_image_reset_clip_region (pixman_image_t *image);
268 _pixman_image_is_opaque(pixman_image_t *image);
271 _pixman_image_is_solid (pixman_image_t *image);
274 _pixman_image_get_solid (pixman_image_t *image,
275 pixman_format_code_t format);
290 pixman_gradient_stop_t *stops;
295 } pixman_gradient_walker_t;
298 _pixman_gradient_walker_init (pixman_gradient_walker_t *walker,
299 gradient_t *gradient,
300 unsigned int spread);
303 _pixman_gradient_walker_reset (pixman_gradient_walker_t *walker,
304 pixman_fixed_32_32_t pos);
307 _pixman_gradient_walker_pixel (pixman_gradient_walker_t *walker,
308 pixman_fixed_32_32_t x);
310 #define FbIntMult(a,b,t) ( (t) = (a) * (b) + 0x80, ( ( ( (t)>>8 ) + (t) )>>8 ) )
311 #define FbIntDiv(a,b) (((uint16_t) (a) * 255) / (b))
313 #define FbGet8(v,i) ((uint16_t) (uint8_t) ((v) >> i))
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)))
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.
331 #define FbInU(x,i,a,t) ((uint32_t) FbIntMult(FbGet8(x,i),(a),(t)) << (i))
333 #define FbAdd(x,y,i,t) ((t) = FbGet8(x,i) + FbGet8(y,i), \
334 (uint32_t) ((uint8_t) ((t) | (0 - ((t) >> 8)))) << (i))
336 #define div_255(x) (((x) + 0x80 + (((x) + 0x80) >> 8)) >> 8)
337 #define div_65535(x) (((x) + 0x8000 + (((x) + 0x8000) >> 16)) >> 16)
339 #ifdef PIXMAN_FB_ACCESSORS
341 #define ACCESS(sym) sym##_accessors
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))))
348 #define MEMCPY_WRAPPED(img, dst, src, size) \
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)); \
357 #define MEMSET_WRAPPED(img, dst, val, size) \
360 uint8_t *_dst = (uint8_t*)(dst); \
361 for(_i = 0; _i < (size_t) size; _i++) { \
362 WRITE((img), _dst +_i, (val)); \
368 #define ACCESS(sym) sym
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)
379 #define fbComposeGetStart(pict,x,y,type,out_stride,line,mul) do { \
380 uint32_t *__bits__; \
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); \
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)
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)
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))
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))
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))
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))
415 #define RenderSamplesX(x,n) ((n) == 1 ? 0 : (pixman_fixed_frac (x) + X_FRAC_FIRST(n)) / STEP_X_SMALL(n))
418 pixman_rasterize_edges_accessors (pixman_image_t *image,
428 typedef struct pixman_implementation_t pixman_implementation_t;
430 typedef void (* pixman_combine_32_func_t) (pixman_implementation_t * imp,
433 const uint32_t * src,
434 const uint32_t * mask,
437 typedef void (* pixman_combine_64_func_t) (pixman_implementation_t * imp,
440 const uint64_t * src,
441 const uint64_t * mask,
444 typedef void (* pixman_composite_func_t) (pixman_implementation_t * imp,
446 pixman_image_t * src,
447 pixman_image_t * mask,
448 pixman_image_t * dest,
457 typedef pixman_bool_t (* pixman_blt_func_t) (pixman_implementation_t * imp,
470 typedef pixman_bool_t (* pixman_fill_func_t) (pixman_implementation_t *imp,
480 void _pixman_setup_combiner_functions_32 (pixman_implementation_t *imp);
481 void _pixman_setup_combiner_functions_64 (pixman_implementation_t *imp);
483 struct pixman_implementation_t
485 pixman_implementation_t * toplevel;
486 pixman_implementation_t * delegate;
488 pixman_composite_func_t composite;
489 pixman_blt_func_t blt;
490 pixman_fill_func_t fill;
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];
498 pixman_implementation_t *
499 _pixman_implementation_create (pixman_implementation_t *delegate);
502 _pixman_implementation_combine_32 (pixman_implementation_t * imp,
505 const uint32_t * src,
506 const uint32_t * mask,
509 _pixman_implementation_combine_64 (pixman_implementation_t * imp,
512 const uint64_t * src,
513 const uint64_t * mask,
516 _pixman_implementation_combine_32_ca (pixman_implementation_t * imp,
519 const uint32_t * src,
520 const uint32_t * mask,
523 _pixman_implementation_combine_64_ca (pixman_implementation_t * imp,
526 const uint64_t * src,
527 const uint64_t * mask,
530 _pixman_implementation_composite (pixman_implementation_t * imp,
532 pixman_image_t * src,
533 pixman_image_t * mask,
534 pixman_image_t * dest,
545 _pixman_implementation_blt (pixman_implementation_t * imp,
559 _pixman_implementation_fill (pixman_implementation_t * imp,
569 /* Specific implementations */
570 pixman_implementation_t *
571 _pixman_implementation_create_general (void);
572 pixman_implementation_t *
573 _pixman_implementation_create_fast_path (void);
575 pixman_implementation_t *
576 _pixman_implementation_create_mmx (void);
579 pixman_implementation_t *
580 _pixman_implementation_create_sse2 (void);
583 pixman_implementation_t *
584 _pixman_implementation_create_arm_simd (void);
587 pixman_implementation_t *
588 _pixman_implementation_create_arm_neon (void);
591 pixman_implementation_t *
592 _pixman_implementation_create_vmx (void);
595 pixman_implementation_t *
596 _pixman_choose_implementation (void);
604 /* These "formats" both have depth 0, so they
605 * will never clash with any real ones
607 #define PIXMAN_null PIXMAN_FORMAT(0,0,0,0,0,0)
608 #define PIXMAN_solid PIXMAN_FORMAT(0,1,0,0,0,0)
610 #define NEED_COMPONENT_ALPHA (1 << 0)
611 #define NEED_PIXBUF (1 << 1)
612 #define NEED_SOLID_MASK (1 << 2)
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;
622 } pixman_fast_path_t;
624 /* Memory allocation helpers */
626 pixman_malloc_ab (unsigned int n, unsigned int b);
629 pixman_malloc_abc (unsigned int a, unsigned int b, unsigned int c);
632 pixman_multiply_overflows_int (unsigned int a, unsigned int b);
635 pixman_addition_overflows_int (unsigned int a, unsigned int b);
637 /* Compositing utilities */
639 _pixman_run_fast_path (const pixman_fast_path_t *paths,
640 pixman_implementation_t *imp,
643 pixman_image_t *mask,
644 pixman_image_t *dest,
655 _pixman_walk_composite_region (pixman_implementation_t *imp,
657 pixman_image_t * pSrc,
658 pixman_image_t * pMask,
659 pixman_image_t * pDst,
668 pixman_composite_func_t compositeRect);
671 pixman_expand (uint64_t *dst, const uint32_t *src, pixman_format_code_t, int width);
674 pixman_contract (uint32_t *dst, const uint64_t *src, int width);
679 pixman_region32_copy_from_region16 (pixman_region32_t *dst,
680 pixman_region16_t *src);
683 pixman_region16_copy_from_region32 (pixman_region16_t *dst,
684 pixman_region32_t *src);
696 # define MIN(a,b) ((a < b)? a : b)
700 # define MAX(a,b) ((a > b)? a : b)
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))
707 /* Modulus that produces the remainder wrt. DIV */
708 #define MOD(a,b) ((a) < 0 ? ((b) - ((-(a) - 1) % (b))) - 1 : (a) % (b))
710 #define CLIP(v,low,high) ((v) < (low) ? (low) : ((v) > (high) ? (high) : (high)))
714 * Various debugging code
722 #define return_if_fail(expr) \
727 fprintf(stderr, "In %s: %s failed\n", FUNC, #expr); \
733 #define return_val_if_fail(expr, retval) \
738 fprintf(stderr, "In %s: %s failed\n", FUNC, #expr); \
746 #define return_if_fail(expr) \
754 #define return_val_if_fail(expr, retval) \
770 static inline uint64_t
771 oil_profile_stamp_rdtsc (void)
774 __asm__ __volatile__("rdtsc\n" : "=A" (ts));
777 #define OIL_STAMP oil_profile_stamp_rdtsc
779 typedef struct pixman_timer_t pixman_timer_t;
781 struct pixman_timer_t
787 pixman_timer_t *next;
790 extern int timer_defined;
791 void pixman_timer_register (pixman_timer_t *timer);
793 #define TIMER_BEGIN(tname) \
795 static pixman_timer_t timer##tname; \
796 uint64_t begin##tname; \
798 if (!timer##tname.initialized) \
800 timer##tname.initialized = 1; \
801 timer##tname.name = #tname; \
802 pixman_timer_register (&timer##tname); \
805 timer##tname.n_times++; \
806 begin##tname = OIL_STAMP();
808 #define TIMER_END(tname) \
809 timer##tname.total += OIL_STAMP() - begin##tname; \
812 #endif /* PIXMAN_TIMERS */
814 #endif /* PIXMAN_PRIVATE_H */