Searched refs:cover (Results 1 - 25 of 46) sorted by relevance

12

/haiku/src/servers/app/drawing/Painter/drawing_modes/
H A DDrawingModeInvert.h36 blend_pixel_invert(int x, int y, const color_type& c, uint8 cover, argument
41 if (cover == 255) {
44 BLEND_INVERT(p, cover);
52 const color_type& c, uint8 cover,
56 if(cover == 255) {
67 BLEND_INVERT(p, cover);
128 const uint8* covers, uint8 cover,
150 if (cover == 255) {
159 } else if (cover) {
162 BLEND_INVERT(p, cover);
51 blend_hline_invert(int x, int y, unsigned len, const color_type& c, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
126 blend_color_hspan_invert(int x, int y, unsigned len, const color_type* colors, const uint8* covers, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
[all...]
H A DDrawingModeBlend.h38 blend_pixel_blend(int x, int y, const color_type& c, uint8 cover, argument
43 if (cover == 255) {
46 BLEND_BLEND(p, color.red, color.green, color.blue, cover);
53 const color_type& c, uint8 cover,
57 if (cover == 255) {
70 BLEND_BLEND(p, color.red, color.green, color.blue, cover);
129 const uint8* covers, uint8 cover,
150 if (cover == 255) {
159 } else if (cover) {
161 BLEND_BLEND(p, colors->r, colors->g, colors->b, cover);
52 blend_hline_blend(int x, int y, unsigned len, const color_type& c, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
127 blend_color_hspan_blend(int x, int y, unsigned len, const color_type* colors, const uint8* covers, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
[all...]
H A DDrawingModeCopySolid.h16 blend_pixel_copy_solid(int x, int y, const color_type& c, uint8 cover, argument
20 if (cover == 255) {
23 BLEND_OVER(p, c.r, c.g, c.b, cover);
30 const color_type& c, uint8 cover,
33 if (cover == 255) {
49 BLEND_OVER(p, c.r, c.g, c.b, cover);
107 uint8 cover,
128 if (cover == 255) {
135 } else if (cover) {
137 BLEND_OVER(p, colors->r, colors->g, colors->b, cover);
29 blend_hline_copy_solid(int x, int y, unsigned len, const color_type& c, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
105 blend_color_hspan_copy_solid(int x, int y, unsigned len, const color_type* colors, const uint8* covers, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
[all...]
H A DDrawingModeErase.h31 blend_pixel_erase(int x, int y, const color_type& c, uint8 cover, argument
37 if (cover == 255) {
40 BLEND_ERASE(p, color.red, color.green, color.blue, cover);
48 const color_type& c, uint8 cover,
51 if (cover == 255) {
71 BLEND_ERASE(p, color.red, color.green, color.blue, cover);
134 const uint8* covers, uint8 cover,
157 if (cover == 255) {
167 } else if (cover) {
171 cover);
47 blend_hline_erase(int x, int y, unsigned len, const color_type& c, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
132 blend_color_hspan_erase(int x, int y, unsigned len, const color_type* colors, const uint8* covers, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
[all...]
H A DDrawingModeMax.h43 blend_pixel_max(int x, int y, const color_type& c, uint8 cover, argument
48 if (cover == 255) {
51 BLEND_MAX(p, color.red, color.green, color.blue, cover);
58 const color_type& c, uint8 cover,
62 if (cover == 255) {
75 BLEND_MAX(p, color.red, color.green, color.blue, cover);
134 const uint8* covers, uint8 cover,
154 if (cover == 255) {
163 } else if (cover) {
166 BLEND_MAX(p, colors->r, colors->g, colors->b, cover);
57 blend_hline_max(int x, int y, unsigned len, const color_type& c, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
132 blend_color_hspan_max(int x, int y, unsigned len, const color_type* colors, const uint8* covers, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
[all...]
H A DDrawingModeMin.h37 blend_pixel_min(int x, int y, const color_type& c, uint8 cover, argument
42 if (cover == 255) {
45 BLEND_MIN(p, color.red, color.green, color.blue, cover);
52 const color_type& c, uint8 cover,
56 if (cover == 255) {
69 BLEND_MIN(p, color.red, color.green, color.blue, cover);
128 const uint8* covers, uint8 cover,
148 if (cover == 255) {
157 } else if (cover) {
160 BLEND_MIN(p, colors->r, colors->g, colors->b, cover);
51 blend_hline_min(int x, int y, unsigned len, const color_type& c, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
126 blend_color_hspan_min(int x, int y, unsigned len, const color_type* colors, const uint8* covers, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
[all...]
H A DDrawingModeOver.h31 blend_pixel_over(int x, int y, const color_type& c, uint8 cover, argument
37 if (cover == 255) {
40 BLEND_OVER(p, color.red, color.green, color.blue, cover);
48 const color_type& c, uint8 cover,
51 if (cover == 255) {
71 BLEND_OVER(p, color.red, color.green, color.blue, cover);
134 const uint8* covers, uint8 cover,
154 if (cover == 255) {
163 } else if (cover) {
166 BLEND_OVER(p, colors->r, colors->g, colors->b, cover);
47 blend_hline_over(int x, int y, unsigned len, const color_type& c, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
132 blend_color_hspan_over(int x, int y, unsigned len, const color_type* colors, const uint8* covers, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
[all...]
H A DPixelFormat.h71 uint8 cover,
76 const color_type& c, uint8 cover,
89 uint8 cover,
127 uint8 cover);
133 uint8 cover);
138 uint8 cover);
159 uint8 cover);
165 uint8 cover);
232 PixelFormat::blend_pixel(int x, int y, const color_type& c, uint8 cover) argument
234 fBlendPixel(x, y, c, cover, fBuffe
239 blend_hline(int x, int y, unsigned len, const color_type& c, uint8 cover) argument
247 blend_vline(int x, int y, unsigned len, const color_type& c, uint8 cover) argument
279 blend_color_hspan(int x, int y, unsigned len, const color_type* colors, const uint8* covers, uint8 cover) argument
290 blend_color_vspan(int x, int y, unsigned len, const color_type* colors, const uint8* covers, uint8 cover) argument
[all...]
H A DDrawingModeOverSolid.h16 blend_pixel_over_solid(int x, int y, const color_type& c, uint8 cover, argument
23 if (cover == 255) {
26 BLEND_OVER(p, c.r, c.g, c.b, cover);
33 const color_type& c, uint8 cover,
39 if (cover == 255) {
55 BLEND_OVER(p, c.r, c.g, c.b, cover);
32 blend_hline_over_solid(int x, int y, unsigned len, const color_type& c, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
H A DDrawingModeCopy.h32 blend_pixel_copy(int x, int y, const color_type& c, uint8 cover, argument
37 if (cover == 255) {
39 } else if (cover != 0) {
41 BLEND_COPY(p, color.red, color.green, color.blue, cover,
49 const color_type& c, uint8 cover,
52 if (cover == 255) {
80 } else if (cover != 0) {
85 BLEND_COPY(p, color.red, color.green, color.blue, cover,
147 const uint8* covers, uint8 cover,
169 if (cover
48 blend_hline_copy(int x, int y, unsigned len, const color_type& c, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
146 blend_color_hspan_copy(int x, int y, unsigned len, const color_type* colors, const uint8* covers, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
[all...]
H A DDrawingModeAdd.h40 blend_pixel_add(int x, int y, const color_type& c, uint8 cover, argument
45 if (cover == 255) {
48 BLEND_ADD(p, color.red, color.green, color.blue, cover);
55 const color_type& c, uint8 cover,
59 if (cover == 255) {
72 BLEND_ADD(p, color.red, color.green, color.blue, cover);
131 const uint8* covers, uint8 cover,
151 if (cover == 255) {
160 } else if (cover) {
163 BLEND_ADD(p, colors->r, colors->g, colors->b, cover);
54 blend_hline_add(int x, int y, unsigned len, const color_type& c, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
129 blend_color_hspan_add(int x, int y, unsigned len, const color_type* colors, const uint8* covers, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
[all...]
H A DDrawingModeSelect.h55 blend_pixel_select(int x, int y, const color_type& c, uint8 cover, argument
64 if (cover == 255) {
67 BLEND_SELECT(p, color.red, color.green, color.blue, cover);
76 const color_type& c, uint8 cover,
83 if (cover == 255) {
95 BLEND_SELECT(p, color.red, color.green, color.blue, cover);
162 const uint8* covers, uint8 cover,
185 if (cover == 255) {
194 } else if (cover) {
197 BLEND_SELECT(p, color.red, color.green, color.blue, cover);
75 blend_hline_select(int x, int y, unsigned len, const color_type& c, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
160 blend_color_hspan_select(int x, int y, unsigned len, const color_type* colors, const uint8* covers, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
[all...]
H A DDrawingModeSubtract.h42 blend_pixel_subtract(int x, int y, const color_type& c, uint8 cover, argument
47 if (cover == 255) {
50 BLEND_SUBTRACT(p, color.red, color.green, color.blue, cover);
57 const color_type& c, uint8 cover,
61 if (cover == 255) {
74 BLEND_SUBTRACT(p, color.red, color.green, color.blue, cover);
133 const uint8* covers, uint8 cover,
153 if (cover == 255) {
162 } else if (cover) {
165 BLEND_SUBTRACT(p, colors->r, colors->g, colors->b, cover);
56 blend_hline_subtract(int x, int y, unsigned len, const color_type& c, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
131 blend_color_hspan_subtract(int x, int y, unsigned len, const color_type* colors, const uint8* covers, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
[all...]
H A DDrawingModeAlphaPC.h31 blend_pixel_alpha_pc(int x, int y, const color_type& c, uint8 cover, argument
36 uint16 alpha = color.alpha * cover;
47 const color_type& c, uint8 cover,
53 uint16 alpha = color.alpha * cover;
117 const uint8* covers, uint8 cover,
138 uint16 alpha = colors->a * cover;
46 blend_hline_alpha_pc(int x, int y, unsigned len, const color_type& c, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
115 blend_color_hspan_alpha_pc(int x, int y, unsigned len, const color_type* colors, const uint8* covers, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
H A DDrawingModeAlphaPCSolid.h32 blend_pixel_alpha_pc_solid(int x, int y, const color_type& color, uint8 cover, argument
36 uint16 alpha = color.a * cover;
47 const color_type& color, uint8 cover,
51 uint16 alpha = color.a * cover;
115 const uint8* covers, uint8 cover,
136 uint16 alpha = colors->a * cover;
46 blend_hline_alpha_pc_solid(int x, int y, unsigned len, const color_type& color, uint8 cover, agg_buffer* buffer, const PatternHandler*) argument
113 blend_color_hspan_alpha_pc_solid(int x, int y, unsigned len, const color_type* colors, const uint8* covers, uint8 cover, agg_buffer* buffer, const PatternHandler*) argument
H A DDrawingModeAlphaPO.h31 blend_pixel_alpha_po(int x, int y, const color_type& c, uint8 cover, argument
36 uint16 alpha = color.alpha * cover;
47 const color_type& c, uint8 cover,
53 uint16 alpha = color.alpha * cover;
119 const uint8* covers, uint8 cover,
140 uint16 alpha = colors->a * cover;
46 blend_hline_alpha_po(int x, int y, unsigned len, const color_type& c, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
117 blend_color_hspan_alpha_po(int x, int y, unsigned len, const color_type* colors, const uint8* covers, uint8 cover, agg_buffer* buffer, const PatternHandler* pattern) argument
/haiku/src/servers/app/drawing/Painter/
H A Dagg_rasterizer_scanline_aa_subpix.h90 unsigned apply_gamma(unsigned cover) const
92 return m_gamma[cover];
139 int cover = area >> (poly_subpixel_shift*2 + 1 - aa_shift); local
141 if(cover < 0) cover = -cover;
144 cover &= aa_mask2;
145 if(cover > aa_scale)
147 cover = aa_scale2 - cover;
163 int cover = 0; local
[all...]
/haiku/headers/libs/agg/
H A Dagg_rasterizer_scanline_aa.h49 int cover; member in struct:agg::cell_aa
56 cover = 0;
170 unsigned apply_gamma(unsigned cover) const
172 return m_gamma[cover];
216 int cover = area >> (poly_subpixel_shift*2 + 1 - aa_shift); local
218 if(cover < 0) cover = -cover;
221 cover &= aa_mask2;
222 if(cover > aa_scal
240 int cover = 0; local
[all...]
H A Dagg_pixfmt_transposer.h57 int8u cover)
59 m_pixf->blend_pixel(y, x, c, cover);
82 int8u cover)
84 m_pixf->blend_vline(y, x, len, c, cover);
91 int8u cover)
93 m_pixf->blend_hline(y, x, len, c, cover);
135 int8u cover)
137 m_pixf->blend_color_vspan(y, x, len, colors, covers, cover);
145 int8u cover)
147 m_pixf->blend_color_hspan(y, x, len, colors, covers, cover);
55 blend_pixel(int x, int y, const color_type& c, int8u cover) argument
79 blend_hline(int x, int y, unsigned len, const color_type& c, int8u cover) argument
88 blend_vline(int x, int y, unsigned len, const color_type& c, int8u cover) argument
131 blend_color_hspan(int x, int y, unsigned len, const color_type* colors, const int8u* covers, int8u cover) argument
141 blend_color_vspan(int x, int y, unsigned len, const color_type* colors, const int8u* covers, int8u cover) argument
[all...]
H A Dagg_renderer_mclip.h142 void blend_pixel(int x, int y, const color_type& c, cover_type cover) argument
149 m_ren.ren().blend_pixel(x, y, c, cover);
195 const color_type& c, cover_type cover)
200 m_ren.blend_hline(x1, y, x2, c, cover);
207 const color_type& c, cover_type cover)
212 m_ren.blend_vline(x, y1, y2, c, cover);
230 const color_type& c, cover_type cover)
235 m_ren.blend_bar(x1, y1, x2, y2, c, cover);
280 cover_type cover = cover_full)
285 m_ren.blend_color_hspan(x, y, len, colors, covers, cover);
194 blend_hline(int x1, int y, int x2, const color_type& c, cover_type cover) argument
206 blend_vline(int x, int y1, int y2, const color_type& c, cover_type cover) argument
229 blend_bar(int x1, int y1, int x2, int y2, const color_type& c, cover_type cover) argument
[all...]
H A Dagg_pixfmt_rgba.h145 unsigned cover=0)
175 unsigned cover)
178 cover = (cover + 1) << (base_shift - 8);
179 p[Order::R] = (value_type)((p[Order::R] * alpha + cr * cover) >> base_shift);
180 p[Order::G] = (value_type)((p[Order::G] * alpha + cg * cover) >> base_shift);
181 p[Order::B] = (value_type)((p[Order::B] * alpha + cb * cover) >> base_shift);
211 unsigned cover=0)
250 unsigned cover)
252 if(cover < 25
142 blend_pix(value_type* p, unsigned cr, unsigned cg, unsigned cb, unsigned alpha, unsigned cover=0) argument
172 blend_pix(value_type* p, unsigned cr, unsigned cg, unsigned cb, unsigned alpha, unsigned cover) argument
208 blend_pix(value_type* p, unsigned cr, unsigned cg, unsigned cb, unsigned alpha, unsigned cover=0) argument
248 blend_pix(value_type* p, unsigned, unsigned, unsigned, unsigned, unsigned cover) argument
274 blend_pix(value_type* p, unsigned sr, unsigned sg, unsigned sb, unsigned sa, unsigned cover) argument
325 blend_pix(value_type* p, unsigned sr, unsigned sg, unsigned sb, unsigned sa, unsigned cover) argument
359 blend_pix(value_type* p, unsigned sr, unsigned sg, unsigned sb, unsigned sa, unsigned cover) argument
393 blend_pix(value_type* p, unsigned sr, unsigned sg, unsigned sb, unsigned sa, unsigned cover) argument
431 blend_pix(value_type* p, unsigned, unsigned, unsigned, unsigned sa, unsigned cover) argument
461 blend_pix(value_type* p, unsigned sr, unsigned sg, unsigned sb, unsigned sa, unsigned cover) argument
499 blend_pix(value_type* p, unsigned, unsigned, unsigned, unsigned sa, unsigned cover) argument
530 blend_pix(value_type* p, unsigned sr, unsigned sg, unsigned sb, unsigned sa, unsigned cover) argument
564 blend_pix(value_type* p, unsigned sr, unsigned sg, unsigned sb, unsigned sa, unsigned cover) argument
606 blend_pix(value_type* p, unsigned sr, unsigned sg, unsigned sb, unsigned sa, unsigned cover) argument
644 blend_pix(value_type* p, unsigned sr, unsigned sg, unsigned sb, unsigned sa, unsigned cover) argument
684 blend_pix(value_type* p, unsigned sr, unsigned sg, unsigned sb, unsigned sa, unsigned cover) argument
724 blend_pix(value_type* p, unsigned sr, unsigned sg, unsigned sb, unsigned sa, unsigned cover) argument
765 blend_pix(value_type* p, unsigned sr, unsigned sg, unsigned sb, unsigned sa, unsigned cover) argument
809 blend_pix(value_type* p, unsigned sr, unsigned sg, unsigned sb, unsigned sa, unsigned cover) argument
866 blend_pix(value_type* p, unsigned sr, unsigned sg, unsigned sb, unsigned sa, unsigned cover) argument
909 blend_pix(value_type* p, unsigned sr, unsigned sg, unsigned sb, unsigned sa, unsigned cover) argument
957 blend_pix(value_type* p, unsigned sr, unsigned sg, unsigned sb, unsigned sa, unsigned cover) argument
1021 blend_pix(value_type* p, unsigned sr, unsigned sg, unsigned sb, unsigned sa, unsigned cover) argument
1085 blend_pix(value_type* p, unsigned sr, unsigned sg, unsigned sb, unsigned sa, unsigned cover) argument
1146 blend_pix(value_type* p, unsigned r, unsigned g, unsigned b, unsigned a, unsigned cover) argument
1202 blend_pix(value_type* p, unsigned sr, unsigned sg, unsigned sb, unsigned sa, unsigned cover) argument
1243 blend_pix(value_type* p, unsigned sr, unsigned sg, unsigned sb, unsigned sa, unsigned cover) argument
1285 blend_pix(value_type* p, unsigned sr, unsigned sg, unsigned sb, unsigned sa, unsigned cover) argument
1333 blend_pix(value_type* p, unsigned sr, unsigned sg, unsigned sb, unsigned sa, unsigned cover) argument
1369 blend_pix(value_type* p, unsigned sr, unsigned sg, unsigned sb, unsigned sa, unsigned cover) argument
1502 blend_pix(unsigned op, value_type* p, unsigned cr, unsigned cg, unsigned cb, unsigned ca, unsigned cover) argument
1527 blend_pix(unsigned op, value_type* p, unsigned cr, unsigned cg, unsigned cb, unsigned ca, unsigned cover) argument
1557 blend_pix(unsigned op, value_type* p, unsigned cr, unsigned cg, unsigned cb, unsigned ca, unsigned cover) argument
1578 blend_pix(unsigned op, value_type* p, unsigned cr, unsigned cg, unsigned cb, unsigned ca, unsigned cover) argument
1605 blend_pix(unsigned op, value_type* p, unsigned cr, unsigned cg, unsigned cb, unsigned ca, unsigned cover) argument
1630 blend_pix(unsigned op, value_type* p, unsigned cr, unsigned cg, unsigned cb, unsigned ca, unsigned cover) argument
1660 blend_pix(unsigned op, value_type* p, unsigned cr, unsigned cg, unsigned cb, unsigned ca, unsigned cover) argument
1716 copy_or_blend_pix(value_type* p, unsigned cr, unsigned cg, unsigned cb, unsigned alpha, unsigned cover) argument
1852 blend_pixel(int x, int y, const color_type& c, int8u cover) argument
1901 blend_hline(int x, int y, unsigned len, const color_type& c, int8u cover) argument
1950 blend_vline(int x, int y, unsigned len, const color_type& c, int8u cover) argument
2097 blend_color_hspan(int x, int y, unsigned len, const color_type* colors, const int8u* covers, int8u cover) argument
2156 blend_color_vspan(int x, int y, unsigned len, const color_type* colors, const int8u* covers, int8u cover) argument
2275 blend_from(const SrcPixelFormatRenderer& from, int xdst, int ydst, int xsrc, int ysrc, unsigned len, int8u cover) argument
2434 blend_pixel(int x, int y, const color_type& c, int8u cover) argument
2469 blend_hline(int x, int y, unsigned len, const color_type& c, int8u cover) argument
2483 blend_vline(int x, int y, unsigned len, const color_type& c, int8u cover) argument
2565 blend_color_hspan(int x, int y, unsigned len, const color_type* colors, const int8u* covers, int8u cover) argument
2587 blend_color_vspan(int x, int y, unsigned len, const color_type* colors, const int8u* covers, int8u cover) argument
2671 blend_from(const SrcPixelFormatRenderer& from, int xdst, int ydst, int xsrc, int ysrc, unsigned len, int8u cover) argument
[all...]
H A Dagg_scanline_boolean_algebra.h158 unsigned cover; local
178 cover = *covers1++ * *covers2++;
180 (cover == cover_full * cover_full) ?
182 (cover >> cover_shift));
198 cover = *(span1->covers) * *covers2++;
200 (cover == cover_full * cover_full) ?
202 (cover >> cover_shift));
219 cover = *covers1++ * *(span2->covers);
221 (cover == cover_full * cover_full) ?
223 (cover >> cover_shif
270 unsigned cover; local
374 unsigned cover = a + b; local
441 unsigned cover; local
530 unsigned cover; local
[all...]
H A Dagg_rasterizer_compound_aa.h46 int cover; member in struct:agg::cell_style_aa
54 cover = 0;
85 int x, area, cover; member in struct:agg::rasterizer_compound_aa::cell_info
182 int cover = area >> (poly_subpixel_shift*2 + 1 - aa_shift); local
183 if(cover < 0) cover = -cover;
186 cover &= aa_mask2;
187 if(cover > aa_scale)
189 cover
223 int cover = 0; local
[all...]
H A Dagg_scanline_p.h85 void add_cell(int x, unsigned cover) argument
87 *m_cover_ptr = (cover_type)cover;
123 void add_span(int x, unsigned len, unsigned cover) argument
127 cover == *m_cur_span->covers)
133 *m_cover_ptr = (cover_type)cover;
244 void add_cell(int x, unsigned cover) argument
246 *m_cover_ptr = cover_type(cover);
276 void add_span(int x, unsigned len, unsigned cover) argument
281 cover == *m_spans.last().covers)
287 *m_cover_ptr = cover_type(cover);
[all...]
H A Dagg_pixfmt_rgb_packed.h84 unsigned cover)
92 ((((r * alpha + cr * cover) >> 1) & 0x7C00) |
93 (((g * alpha + cg * cover) >> 6) & 0x03E0) |
94 ((b * alpha + cb * cover) >> 11) | 0x8000);
214 unsigned cover)
222 ((((r * alpha + cr * cover) ) & 0xF800) |
223 (((g * alpha + cg * cover) >> 5 ) & 0x07E0) |
224 ((b * alpha + cb * cover) >> 11));
339 unsigned cover)
342 cover
81 blend_pix(pixel_type* p, unsigned cr, unsigned cg, unsigned cb, unsigned alpha, unsigned cover) argument
211 blend_pix(pixel_type* p, unsigned cr, unsigned cg, unsigned cb, unsigned alpha, unsigned cover) argument
336 blend_pix(pixel_type* p, unsigned cr, unsigned cg, unsigned cb, unsigned alpha, unsigned cover) argument
464 blend_pix(pixel_type* p, unsigned cr, unsigned cg, unsigned cb, unsigned alpha, unsigned cover) argument
591 blend_pix(pixel_type* p, unsigned cr, unsigned cg, unsigned cb, unsigned alpha, unsigned cover) argument
713 blend_pix(pixel_type* p, unsigned cr, unsigned cg, unsigned cb, unsigned alpha, unsigned cover) argument
813 copy_or_blend_pix(pixel_type* p, const color_type& c, unsigned cover) argument
895 blend_pixel(int x, int y, const color_type& c, int8u cover) argument
929 blend_hline(int x, int y, unsigned len, const color_type& c, int8u cover) argument
960 blend_vline(int x, int y, unsigned len, const color_type& c, int8u cover) argument
1048 blend_color_hspan(int x, int y, unsigned len, const color_type* colors, const int8u* covers, int8u cover) argument
1063 blend_color_vspan(int x, int y, unsigned len, const color_type* colors, const int8u* covers, int8u cover) argument
1095 blend_from(const SrcPixelFormatRenderer& from, int xdst, int ydst, int xsrc, int ysrc, unsigned len, int8u cover) argument
[all...]

Completed in 123 milliseconds

12