Merge branch 'eliminate-composite'
[profile/ivi/pixman.git] / pixman / pixman-edge-imp.h
1 /*
2  * Copyright © 2004 Keith Packard
3  *
4  * Permission to use, copy, modify, distribute, and sell this software and its
5  * documentation for any purpose is hereby granted without fee, provided that
6  * the above copyright notice appear in all copies and that both that
7  * copyright notice and this permission notice appear in supporting
8  * documentation, and that the name of Keith Packard not be used in
9  * advertising or publicity pertaining to distribution of the software without
10  * specific, written prior permission.  Keith Packard makes no
11  * representations about the suitability of this software for any purpose.  It
12  * is provided "as is" without express or implied warranty.
13  *
14  * KEITH PACKARD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16  * EVENT SHALL KEITH PACKARD BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
20  * PERFORMANCE OF THIS SOFTWARE.
21  */
22
23 #ifndef rasterize_span
24 #endif
25
26 static void
27 RASTERIZE_EDGES (pixman_image_t  *image,
28                 pixman_edge_t   *l,
29                 pixman_edge_t   *r,
30                 pixman_fixed_t          t,
31                 pixman_fixed_t          b)
32 {
33     pixman_fixed_t  y = t;
34     uint32_t  *line;
35     uint32_t *buf = (image)->bits.bits;
36     int stride = (image)->bits.rowstride;
37     int width = (image)->bits.width;
38
39     line = buf + pixman_fixed_to_int (y) * stride;
40
41     for (;;)
42     {
43         pixman_fixed_t  lx;
44         pixman_fixed_t      rx;
45         int     lxi;
46         int rxi;
47
48         lx = l->x;
49         rx = r->x;
50 #if N_BITS == 1
51         /* For the non-antialiased case, round the coordinates up, in effect
52          * sampling the center of the pixel. (The AA case does a similar 
53          * adjustment in RENDER_SAMPLES_X) */
54         lx += X_FRAC_FIRST(1);
55         rx += X_FRAC_FIRST(1);
56 #endif
57         /* clip X */
58         if (lx < 0)
59             lx = 0;
60         if (pixman_fixed_to_int (rx) >= width)
61 #if N_BITS == 1
62             rx = pixman_int_to_fixed (width);
63 #else
64             /* Use the last pixel of the scanline, covered 100%.
65              * We can't use the first pixel following the scanline,
66              * because accessing it could result in a buffer overrun.
67              */
68             rx = pixman_int_to_fixed (width) - 1;
69 #endif
70
71         /* Skip empty (or backwards) sections */
72         if (rx > lx)
73         {
74
75             /* Find pixel bounds for span */
76             lxi = pixman_fixed_to_int (lx);
77             rxi = pixman_fixed_to_int (rx);
78
79 #if N_BITS == 1
80             {
81
82 #define LEFT_MASK(x)                                                    \
83                 (((x) & 0x1f) ?                                         \
84                  SCREEN_SHIFT_RIGHT (0xffffffff, (x) & 0x1f) : 0)
85 #define RIGHT_MASK(x)                                                   \
86                 (((32 - (x)) & 0x1f) ?                                  \
87                  SCREEN_SHIFT_LEFT (0xffffffff, (32 - (x)) & 0x1f) : 0)
88                 
89 #define MASK_BITS(x,w,l,n,r) {                                          \
90                     n = (w);                                            \
91                     r = RIGHT_MASK ((x) + n);                           \
92                     l = LEFT_MASK (x);                                  \
93                     if (l) {                                            \
94                         n -= 32 - ((x) & 0x1f);                         \
95                         if (n < 0) {                                    \
96                             n = 0;                                      \
97                             l &= r;                                     \
98                             r = 0;                                      \
99                         }                                               \
100                     }                                                   \
101                     n >>= 5;                                            \
102                 }
103                 
104                 uint32_t  *a = line;
105                 uint32_t  startmask;
106                 uint32_t  endmask;
107                 int         nmiddle;
108                 int         width = rxi - lxi;
109                 int         x = lxi;
110                 
111                 a += x >> 5;
112                 x &= 0x1f;
113                 
114                 MASK_BITS (x, width, startmask, nmiddle, endmask);
115
116                 if (startmask) {
117                     WRITE(image, a, READ(image, a) | startmask);
118                     a++;
119                 }
120                 while (nmiddle--)
121                     WRITE(image, a++, 0xffffffff);
122                 if (endmask)
123                     WRITE(image, a, READ(image, a) | endmask);
124             }
125 #else
126             {
127                 DEFINE_ALPHA(line,lxi);
128                 int         lxs;
129                 int     rxs;
130
131                 /* Sample coverage for edge pixels */
132                 lxs = RENDER_SAMPLES_X (lx, N_BITS);
133                 rxs = RENDER_SAMPLES_X (rx, N_BITS);
134
135                 /* Add coverage across row */
136                 if (lxi == rxi)
137                 {
138                     ADD_ALPHA (rxs - lxs);
139                 }
140                 else
141                 {
142                     int xi;
143
144                     ADD_ALPHA (N_X_FRAC(N_BITS) - lxs);
145                     STEP_ALPHA;
146                     for (xi = lxi + 1; xi < rxi; xi++)
147                     {
148                         ADD_ALPHA (N_X_FRAC(N_BITS));
149                         STEP_ALPHA;
150                     }
151                     ADD_ALPHA (rxs);
152                 }
153             }
154 #endif
155         }
156
157         if (y == b)
158             break;
159
160 #if N_BITS > 1
161         if (pixman_fixed_frac (y) != Y_FRAC_LAST(N_BITS))
162         {
163             RENDER_EDGE_STEP_SMALL (l);
164             RENDER_EDGE_STEP_SMALL (r);
165             y += STEP_Y_SMALL(N_BITS);
166         }
167         else
168 #endif
169         {
170             RENDER_EDGE_STEP_BIG (l);
171             RENDER_EDGE_STEP_BIG (r);
172             y += STEP_Y_BIG(N_BITS);
173             line += stride;
174         }
175     }
176 }
177
178 #undef rasterize_span