headers/libs/agg/agg_blur.h
1079
calc_type s = calc_type(radius * 0.5);
headers/libs/agg/agg_blur.h
1080
calc_type q = calc_type((s < 2.5) ?
headers/libs/agg/agg_blur.h
1084
calc_type q2 = calc_type(q * q);
headers/libs/agg/agg_blur.h
1085
calc_type q3 = calc_type(q2 * q);
headers/libs/agg/agg_blur.h
1087
calc_type b0 = calc_type(1.0 / (1.578250 +
headers/libs/agg/agg_blur.h
1092
calc_type b1 = calc_type( 2.44413 * q +
headers/libs/agg/agg_blur.h
1096
calc_type b2 = calc_type(-1.42810 * q2 +
headers/libs/agg/agg_blur.h
1099
calc_type b3 = calc_type(0.422205 * q3);
headers/libs/agg/agg_blur.h
1101
calc_type b = calc_type(1 - (b1 + b2 + b3) * b0);
headers/libs/agg/agg_color_gray.h
122
v = value_type((calc_type(v) * a) >> base_shift);
headers/libs/agg/agg_color_gray.h
135
calc_type v_ = (calc_type(v) * a_) / a;
headers/libs/agg/agg_color_gray.h
150
calc_type v_ = (calc_type(v) * base_mask) / a;
headers/libs/agg/agg_color_gray.h
159
calc_type ik = uround(k * base_scale);
headers/libs/agg/agg_color_gray.h
160
ret.v = value_type(calc_type(v) + (((calc_type(c.v) - v) * ik) >> base_shift));
headers/libs/agg/agg_color_gray.h
161
ret.a = value_type(calc_type(a) + (((calc_type(c.a) - a) * ik) >> base_shift));
headers/libs/agg/agg_color_gray.h
168
calc_type cv, ca;
headers/libs/agg/agg_color_gray.h
177
cv = v + c.v; v = (cv > calc_type(base_mask)) ? calc_type(base_mask) : cv;
headers/libs/agg/agg_color_gray.h
178
ca = a + c.a; a = (ca > calc_type(base_mask)) ? calc_type(base_mask) : ca;
headers/libs/agg/agg_color_gray.h
185
v = (cv > calc_type(base_mask)) ? calc_type(base_mask) : cv;
headers/libs/agg/agg_color_gray.h
186
a = (ca > calc_type(base_mask)) ? calc_type(base_mask) : ca;
headers/libs/agg/agg_color_gray.h
309
v = value_type((calc_type(v) * a) >> base_shift);
headers/libs/agg/agg_color_gray.h
322
calc_type v_ = (calc_type(v) * a_) / a;
headers/libs/agg/agg_color_gray.h
337
calc_type v_ = (calc_type(v) * base_mask) / a;
headers/libs/agg/agg_color_gray.h
346
calc_type ik = uround(k * base_scale);
headers/libs/agg/agg_color_gray.h
347
ret.v = value_type(calc_type(v) + (((calc_type(c.v) - v) * ik) >> base_shift));
headers/libs/agg/agg_color_gray.h
348
ret.a = value_type(calc_type(a) + (((calc_type(c.a) - a) * ik) >> base_shift));
headers/libs/agg/agg_color_gray.h
355
calc_type cv, ca;
headers/libs/agg/agg_color_gray.h
364
cv = v + c.v; v = (cv > calc_type(base_mask)) ? calc_type(base_mask) : cv;
headers/libs/agg/agg_color_gray.h
365
ca = a + c.a; a = (ca > calc_type(base_mask)) ? calc_type(base_mask) : ca;
headers/libs/agg/agg_color_gray.h
372
v = (cv > calc_type(base_mask)) ? calc_type(base_mask) : cv;
headers/libs/agg/agg_color_gray.h
373
a = (ca > calc_type(base_mask)) ? calc_type(base_mask) : ca;
headers/libs/agg/agg_color_rgba.h
307
r = value_type((calc_type(r) * a) >> base_shift);
headers/libs/agg/agg_color_rgba.h
308
g = value_type((calc_type(g) * a) >> base_shift);
headers/libs/agg/agg_color_rgba.h
309
b = value_type((calc_type(b) * a) >> base_shift);
headers/libs/agg/agg_color_rgba.h
322
calc_type r_ = (calc_type(r) * a_) / a;
headers/libs/agg/agg_color_rgba.h
323
calc_type g_ = (calc_type(g) * a_) / a;
headers/libs/agg/agg_color_rgba.h
324
calc_type b_ = (calc_type(b) * a_) / a;
headers/libs/agg/agg_color_rgba.h
341
calc_type r_ = (calc_type(r) * base_mask) / a;
headers/libs/agg/agg_color_rgba.h
342
calc_type g_ = (calc_type(g) * base_mask) / a;
headers/libs/agg/agg_color_rgba.h
343
calc_type b_ = (calc_type(b) * base_mask) / a;
headers/libs/agg/agg_color_rgba.h
344
r = value_type((r_ > calc_type(base_mask)) ? calc_type(base_mask) : r_);
headers/libs/agg/agg_color_rgba.h
345
g = value_type((g_ > calc_type(base_mask)) ? calc_type(base_mask) : g_);
headers/libs/agg/agg_color_rgba.h
346
b = value_type((b_ > calc_type(base_mask)) ? calc_type(base_mask) : b_);
headers/libs/agg/agg_color_rgba.h
354
calc_type ik = uround(k * base_scale);
headers/libs/agg/agg_color_rgba.h
355
ret.r = value_type(calc_type(r) + (((calc_type(c.r) - r) * ik) >> base_shift));
headers/libs/agg/agg_color_rgba.h
356
ret.g = value_type(calc_type(g) + (((calc_type(c.g) - g) * ik) >> base_shift));
headers/libs/agg/agg_color_rgba.h
357
ret.b = value_type(calc_type(b) + (((calc_type(c.b) - b) * ik) >> base_shift));
headers/libs/agg/agg_color_rgba.h
358
ret.a = value_type(calc_type(a) + (((calc_type(c.a) - a) * ik) >> base_shift));
headers/libs/agg/agg_color_rgba.h
365
calc_type cr, cg, cb, ca;
headers/libs/agg/agg_color_rgba.h
374
cr = r + c.r; r = (cr > calc_type(base_mask)) ? calc_type(base_mask) : cr;
headers/libs/agg/agg_color_rgba.h
375
cg = g + c.g; g = (cg > calc_type(base_mask)) ? calc_type(base_mask) : cg;
headers/libs/agg/agg_color_rgba.h
376
cb = b + c.b; b = (cb > calc_type(base_mask)) ? calc_type(base_mask) : cb;
headers/libs/agg/agg_color_rgba.h
377
ca = a + c.a; a = (ca > calc_type(base_mask)) ? calc_type(base_mask) : ca;
headers/libs/agg/agg_color_rgba.h
386
r = (cr > calc_type(base_mask)) ? calc_type(base_mask) : cr;
headers/libs/agg/agg_color_rgba.h
387
g = (cg > calc_type(base_mask)) ? calc_type(base_mask) : cg;
headers/libs/agg/agg_color_rgba.h
388
b = (cb > calc_type(base_mask)) ? calc_type(base_mask) : cb;
headers/libs/agg/agg_color_rgba.h
389
a = (ca > calc_type(base_mask)) ? calc_type(base_mask) : ca;
headers/libs/agg/agg_color_rgba.h
569
r = value_type((calc_type(r) * a) >> base_shift);
headers/libs/agg/agg_color_rgba.h
570
g = value_type((calc_type(g) * a) >> base_shift);
headers/libs/agg/agg_color_rgba.h
571
b = value_type((calc_type(b) * a) >> base_shift);
headers/libs/agg/agg_color_rgba.h
584
calc_type r_ = (calc_type(r) * a_) / a;
headers/libs/agg/agg_color_rgba.h
585
calc_type g_ = (calc_type(g) * a_) / a;
headers/libs/agg/agg_color_rgba.h
586
calc_type b_ = (calc_type(b) * a_) / a;
headers/libs/agg/agg_color_rgba.h
603
calc_type r_ = (calc_type(r) * base_mask) / a;
headers/libs/agg/agg_color_rgba.h
604
calc_type g_ = (calc_type(g) * base_mask) / a;
headers/libs/agg/agg_color_rgba.h
605
calc_type b_ = (calc_type(b) * base_mask) / a;
headers/libs/agg/agg_color_rgba.h
606
r = value_type((r_ > calc_type(base_mask)) ? calc_type(base_mask) : r_);
headers/libs/agg/agg_color_rgba.h
607
g = value_type((g_ > calc_type(base_mask)) ? calc_type(base_mask) : g_);
headers/libs/agg/agg_color_rgba.h
608
b = value_type((b_ > calc_type(base_mask)) ? calc_type(base_mask) : b_);
headers/libs/agg/agg_color_rgba.h
616
calc_type ik = uround(k * base_scale);
headers/libs/agg/agg_color_rgba.h
617
ret.r = value_type(calc_type(r) + (((calc_type(c.r) - r) * ik) >> base_shift));
headers/libs/agg/agg_color_rgba.h
618
ret.g = value_type(calc_type(g) + (((calc_type(c.g) - g) * ik) >> base_shift));
headers/libs/agg/agg_color_rgba.h
619
ret.b = value_type(calc_type(b) + (((calc_type(c.b) - b) * ik) >> base_shift));
headers/libs/agg/agg_color_rgba.h
620
ret.a = value_type(calc_type(a) + (((calc_type(c.a) - a) * ik) >> base_shift));
headers/libs/agg/agg_color_rgba.h
627
calc_type cr, cg, cb, ca;
headers/libs/agg/agg_color_rgba.h
636
cr = r + c.r; r = (cr > calc_type(base_mask)) ? calc_type(base_mask) : cr;
headers/libs/agg/agg_color_rgba.h
637
cg = g + c.g; g = (cg > calc_type(base_mask)) ? calc_type(base_mask) : cg;
headers/libs/agg/agg_color_rgba.h
638
cb = b + c.b; b = (cb > calc_type(base_mask)) ? calc_type(base_mask) : cb;
headers/libs/agg/agg_color_rgba.h
639
ca = a + c.a; a = (ca > calc_type(base_mask)) ? calc_type(base_mask) : ca;
headers/libs/agg/agg_color_rgba.h
648
r = (cr > calc_type(base_mask)) ? calc_type(base_mask) : cr;
headers/libs/agg/agg_color_rgba.h
649
g = (cg > calc_type(base_mask)) ? calc_type(base_mask) : cg;
headers/libs/agg/agg_color_rgba.h
650
b = (cb > calc_type(base_mask)) ? calc_type(base_mask) : cb;
headers/libs/agg/agg_color_rgba.h
651
a = (ca > calc_type(base_mask)) ? calc_type(base_mask) : ca;
headers/libs/agg/agg_pattern_filters_rgba.h
55
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pattern_filters_rgba.h
69
calc_type r, g, b, a;
headers/libs/agg/agg_pattern_filters_rgba.h
72
calc_type weight;
headers/libs/agg/agg_pixfmt_gray.h
125
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_gray.h
144
calc_type alpha = (calc_type(c.a) * (cover + 1)) >> 8;
headers/libs/agg/agg_pixfmt_gray.h
291
calc_type alpha = (calc_type(c.a) * (cover + 1)) >> 8;
headers/libs/agg/agg_pixfmt_gray.h
323
calc_type alpha = (calc_type(c.a) * (cover + 1)) >> 8;
headers/libs/agg/agg_pixfmt_gray.h
363
calc_type alpha = (calc_type(c.a) * (calc_type(*covers) + 1)) >> 8;
headers/libs/agg/agg_pixfmt_gray.h
390
calc_type alpha = (calc_type(c.a) * (calc_type(*covers) + 1)) >> 8;
headers/libs/agg/agg_pixfmt_gray.h
40
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_gray.h
46
*p = (value_type)((((cv - calc_type(*p)) * alpha) + (calc_type(*p) << base_shift)) >> base_shift);
headers/libs/agg/agg_pixfmt_gray.h
56
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb.h
104
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb.h
143
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb.h
156
calc_type r = m_gamma->dir(p[Order::R]);
headers/libs/agg/agg_pixfmt_rgb.h
157
calc_type g = m_gamma->dir(p[Order::G]);
headers/libs/agg/agg_pixfmt_rgb.h
158
calc_type b = m_gamma->dir(p[Order::B]);
headers/libs/agg/agg_pixfmt_rgb.h
181
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb.h
198
calc_type alpha = (calc_type(c.a) * (cover + 1)) >> 8;
headers/libs/agg/agg_pixfmt_rgb.h
358
calc_type alpha = (calc_type(c.a) * (calc_type(cover) + 1)) >> 8;
headers/libs/agg/agg_pixfmt_rgb.h
392
calc_type alpha = (calc_type(c.a) * (cover + 1)) >> 8;
headers/libs/agg/agg_pixfmt_rgb.h
434
calc_type alpha = (calc_type(c.a) * (calc_type(*covers) + 1)) >> 8;
headers/libs/agg/agg_pixfmt_rgb.h
466
calc_type alpha = (calc_type(c.a) * (calc_type(*covers) + 1)) >> 8;
headers/libs/agg/agg_pixfmt_rgb.h
82
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
121
typedef color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
134
calc_type r = m_gamma->dir((rgb >> 7) & 0xF8);
headers/libs/agg/agg_pixfmt_rgb_packed.h
135
calc_type g = m_gamma->dir((rgb >> 2) & 0xF8);
headers/libs/agg/agg_pixfmt_rgb_packed.h
136
calc_type b = m_gamma->dir((rgb << 3) & 0xF8);
headers/libs/agg/agg_pixfmt_rgb_packed.h
170
typedef color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
179
calc_type r = (rgb >> 8) & 0xF8;
headers/libs/agg/agg_pixfmt_rgb_packed.h
180
calc_type g = (rgb >> 3) & 0xFC;
headers/libs/agg/agg_pixfmt_rgb_packed.h
181
calc_type b = (rgb << 3) & 0xF8;
headers/libs/agg/agg_pixfmt_rgb_packed.h
208
typedef color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
218
calc_type r = (rgb >> 8) & 0xF8;
headers/libs/agg/agg_pixfmt_rgb_packed.h
219
calc_type g = (rgb >> 3) & 0xFC;
headers/libs/agg/agg_pixfmt_rgb_packed.h
220
calc_type b = (rgb << 3) & 0xF8;
headers/libs/agg/agg_pixfmt_rgb_packed.h
248
typedef color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
261
calc_type r = m_gamma->dir((rgb >> 8) & 0xF8);
headers/libs/agg/agg_pixfmt_rgb_packed.h
262
calc_type g = m_gamma->dir((rgb >> 3) & 0xFC);
headers/libs/agg/agg_pixfmt_rgb_packed.h
263
calc_type b = m_gamma->dir((rgb << 3) & 0xF8);
headers/libs/agg/agg_pixfmt_rgb_packed.h
293
typedef color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
302
calc_type r = (rgb >> 14) & 0xFFC0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
303
calc_type g = (rgb >> 4) & 0xFFC0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
304
calc_type b = (rgb << 6) & 0xFFC0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
333
typedef color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
344
calc_type r = (rgb >> 14) & 0xFFC0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
345
calc_type g = (rgb >> 4) & 0xFFC0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
346
calc_type b = (rgb << 6) & 0xFFC0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
376
typedef color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
389
calc_type r = m_gamma->dir((rgb >> 14) & 0xFFC0);
headers/libs/agg/agg_pixfmt_rgb_packed.h
39
typedef color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
390
calc_type g = m_gamma->dir((rgb >> 4) & 0xFFC0);
headers/libs/agg/agg_pixfmt_rgb_packed.h
391
calc_type b = m_gamma->dir((rgb << 6) & 0xFFC0);
headers/libs/agg/agg_pixfmt_rgb_packed.h
421
typedef color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
430
calc_type b = (bgr >> 14) & 0xFFC0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
431
calc_type g = (bgr >> 4) & 0xFFC0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
432
calc_type r = (bgr << 6) & 0xFFC0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
461
typedef color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
472
calc_type b = (bgr >> 14) & 0xFFC0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
473
calc_type g = (bgr >> 4) & 0xFFC0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
474
calc_type r = (bgr << 6) & 0xFFC0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
48
calc_type r = (rgb >> 7) & 0xF8;
headers/libs/agg/agg_pixfmt_rgb_packed.h
49
calc_type g = (rgb >> 2) & 0xF8;
headers/libs/agg/agg_pixfmt_rgb_packed.h
50
calc_type b = (rgb << 3) & 0xF8;
headers/libs/agg/agg_pixfmt_rgb_packed.h
504
typedef color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
517
calc_type b = m_gamma->dir((bgr >> 14) & 0xFFC0);
headers/libs/agg/agg_pixfmt_rgb_packed.h
518
calc_type g = m_gamma->dir((bgr >> 4) & 0xFFC0);
headers/libs/agg/agg_pixfmt_rgb_packed.h
519
calc_type r = m_gamma->dir((bgr << 6) & 0xFFC0);
headers/libs/agg/agg_pixfmt_rgb_packed.h
551
typedef color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
560
calc_type r = (rgb >> 16) & 0xFFE0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
561
calc_type g = (rgb >> 5) & 0xFFE0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
562
calc_type b = (rgb << 6) & 0xFFC0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
588
typedef color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
599
calc_type r = (rgb >> 16) & 0xFFE0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
600
calc_type g = (rgb >> 5) & 0xFFE0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
601
calc_type b = (rgb << 6) & 0xFFC0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
629
typedef color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
642
calc_type r = m_gamma->dir((rgb >> 16) & 0xFFE0);
headers/libs/agg/agg_pixfmt_rgb_packed.h
643
calc_type g = m_gamma->dir((rgb >> 5) & 0xFFE0);
headers/libs/agg/agg_pixfmt_rgb_packed.h
644
calc_type b = m_gamma->dir((rgb << 6) & 0xFFC0);
headers/libs/agg/agg_pixfmt_rgb_packed.h
673
typedef color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
682
calc_type b = (bgr >> 16) & 0xFFC0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
683
calc_type g = (bgr >> 6) & 0xFFE0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
684
calc_type r = (bgr << 5) & 0xFFE0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
710
typedef color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
721
calc_type b = (bgr >> 16) & 0xFFC0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
722
calc_type g = (bgr >> 6) & 0xFFE0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
723
calc_type r = (bgr << 5) & 0xFFE0;
headers/libs/agg/agg_pixfmt_rgb_packed.h
751
typedef color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
764
calc_type b = m_gamma->dir((bgr >> 16) & 0xFFC0);
headers/libs/agg/agg_pixfmt_rgb_packed.h
765
calc_type g = m_gamma->dir((bgr >> 6) & 0xFFE0);
headers/libs/agg/agg_pixfmt_rgb_packed.h
766
calc_type r = m_gamma->dir((bgr << 5) & 0xFFE0);
headers/libs/agg/agg_pixfmt_rgb_packed.h
78
typedef color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
802
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgb_packed.h
817
calc_type alpha = (calc_type(c.a) * (cover + 1)) >> 8;
headers/libs/agg/agg_pixfmt_rgb_packed.h
88
calc_type r = (rgb >> 7) & 0xF8;
headers/libs/agg/agg_pixfmt_rgb_packed.h
89
calc_type g = (rgb >> 2) & 0xF8;
headers/libs/agg/agg_pixfmt_rgb_packed.h
90
calc_type b = (rgb << 3) & 0xF8;
headers/libs/agg/agg_pixfmt_rgb_packed.h
937
calc_type alpha = (calc_type(c.a) * (cover + 1)) >> 8;
headers/libs/agg/agg_pixfmt_rgb_packed.h
967
calc_type alpha = (calc_type(c.a) * (cover + 1)) >> 8;
headers/libs/agg/agg_pixfmt_rgba.h
1007
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
1034
calc_type d1a = base_mask - p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
1035
calc_type s1a = base_mask - sa;
headers/libs/agg/agg_pixfmt_rgba.h
1036
calc_type dr = p[Order::R];
headers/libs/agg/agg_pixfmt_rgba.h
1037
calc_type dg = p[Order::G];
headers/libs/agg/agg_pixfmt_rgba.h
1038
calc_type db = p[Order::B];
headers/libs/agg/agg_pixfmt_rgba.h
1039
calc_type da = p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
1071
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
1098
calc_type d1a = base_mask - p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
1099
calc_type s1a = base_mask - sa;
headers/libs/agg/agg_pixfmt_rgba.h
1100
calc_type dr = p[Order::R];
headers/libs/agg/agg_pixfmt_rgba.h
1101
calc_type dg = p[Order::G];
headers/libs/agg/agg_pixfmt_rgba.h
1102
calc_type db = p[Order::B];
headers/libs/agg/agg_pixfmt_rgba.h
1103
calc_type da = p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
1104
calc_type sada = sa * da;
headers/libs/agg/agg_pixfmt_rgba.h
1129
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
1191
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
1215
calc_type dr = p[Order::R];
headers/libs/agg/agg_pixfmt_rgba.h
1216
calc_type dg = p[Order::G];
headers/libs/agg/agg_pixfmt_rgba.h
1217
calc_type db = p[Order::B];
headers/libs/agg/agg_pixfmt_rgba.h
1218
calc_type da = p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
1233
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
1256
calc_type d1a = base_mask - p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
1257
calc_type s1a = base_mask - sa;
headers/libs/agg/agg_pixfmt_rgba.h
1258
calc_type dr = p[Order::R];
headers/libs/agg/agg_pixfmt_rgba.h
1259
calc_type dg = p[Order::G];
headers/libs/agg/agg_pixfmt_rgba.h
1260
calc_type db = p[Order::B];
headers/libs/agg/agg_pixfmt_rgba.h
1261
calc_type da = p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
1276
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
1323
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
134
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
1340
calc_type da = p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
1341
calc_type dr = ((da - p[Order::R]) * sa + base_mask) >> base_shift;
headers/libs/agg/agg_pixfmt_rgba.h
1342
calc_type dg = ((da - p[Order::G]) * sa + base_mask) >> base_shift;
headers/libs/agg/agg_pixfmt_rgba.h
1343
calc_type db = ((da - p[Order::B]) * sa + base_mask) >> base_shift;
headers/libs/agg/agg_pixfmt_rgba.h
1344
calc_type s1a = base_mask - sa;
headers/libs/agg/agg_pixfmt_rgba.h
1359
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
1382
calc_type da = p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
1383
calc_type dr = ((da - p[Order::R]) * sr + base_mask) >> base_shift;
headers/libs/agg/agg_pixfmt_rgba.h
1384
calc_type dg = ((da - p[Order::G]) * sg + base_mask) >> base_shift;
headers/libs/agg/agg_pixfmt_rgba.h
1385
calc_type db = ((da - p[Order::B]) * sb + base_mask) >> base_shift;
headers/libs/agg/agg_pixfmt_rgba.h
1386
calc_type s1a = base_mask - sa;
headers/libs/agg/agg_pixfmt_rgba.h
147
calc_type r = p[Order::R];
headers/libs/agg/agg_pixfmt_rgba.h
148
calc_type g = p[Order::G];
headers/libs/agg/agg_pixfmt_rgba.h
149
calc_type b = p[Order::B];
headers/libs/agg/agg_pixfmt_rgba.h
150
calc_type a = p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
164
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
1686
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
1763
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
1909
calc_type alpha = (calc_type(c.a) * (cover + 1)) >> 8;
headers/libs/agg/agg_pixfmt_rgba.h
1958
calc_type alpha = (calc_type(c.a) * (cover + 1)) >> 8;
headers/libs/agg/agg_pixfmt_rgba.h
2009
calc_type alpha = (calc_type(c.a) * (calc_type(*covers) + 1)) >> 8;
headers/libs/agg/agg_pixfmt_rgba.h
204
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
2040
calc_type alpha = (calc_type(c.a) * (calc_type(*covers) + 1)) >> 8;
headers/libs/agg/agg_pixfmt_rgba.h
214
calc_type a = p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
215
calc_type r = p[Order::R] * a;
headers/libs/agg/agg_pixfmt_rgba.h
216
calc_type g = p[Order::G] * a;
headers/libs/agg/agg_pixfmt_rgba.h
217
calc_type b = p[Order::B] * a;
headers/libs/agg/agg_pixfmt_rgba.h
2345
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
316
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
336
calc_type s1a = base_mask - sa;
headers/libs/agg/agg_pixfmt_rgba.h
350
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
370
calc_type d1a = base_mask - p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
384
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
397
calc_type da = p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
40
typedef typename ColorT::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
422
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
45
calc_type a = p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
452
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
465
calc_type da = base_mask - p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
490
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
521
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
541
calc_type da = p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
555
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
568
calc_type da = base_mask - p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
597
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
619
calc_type s1a = base_mask - sa;
headers/libs/agg/agg_pixfmt_rgba.h
620
calc_type d1a = base_mask - p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
63
calc_type a = p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
635
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
657
calc_type dr = p[Order::R] + sr;
headers/libs/agg/agg_pixfmt_rgba.h
658
calc_type dg = p[Order::G] + sg;
headers/libs/agg/agg_pixfmt_rgba.h
659
calc_type db = p[Order::B] + sb;
headers/libs/agg/agg_pixfmt_rgba.h
660
calc_type da = p[Order::A] + sa;
headers/libs/agg/agg_pixfmt_rgba.h
675
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
697
calc_type dr = p[Order::R] - sr;
headers/libs/agg/agg_pixfmt_rgba.h
698
calc_type dg = p[Order::G] - sg;
headers/libs/agg/agg_pixfmt_rgba.h
699
calc_type db = p[Order::B] - sb;
headers/libs/agg/agg_pixfmt_rgba.h
71
calc_type r = (calc_type(p[Order::R]) * ColorT::base_mask) / a;
headers/libs/agg/agg_pixfmt_rgba.h
715
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
72
calc_type g = (calc_type(p[Order::G]) * ColorT::base_mask) / a;
headers/libs/agg/agg_pixfmt_rgba.h
73
calc_type b = (calc_type(p[Order::B]) * ColorT::base_mask) / a;
headers/libs/agg/agg_pixfmt_rgba.h
737
calc_type s1a = base_mask - sa;
headers/libs/agg/agg_pixfmt_rgba.h
738
calc_type d1a = base_mask - p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
739
calc_type dr = p[Order::R];
headers/libs/agg/agg_pixfmt_rgba.h
740
calc_type dg = p[Order::G];
headers/libs/agg/agg_pixfmt_rgba.h
741
calc_type db = p[Order::B];
headers/libs/agg/agg_pixfmt_rgba.h
756
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
778
calc_type dr = p[Order::R];
headers/libs/agg/agg_pixfmt_rgba.h
779
calc_type dg = p[Order::G];
headers/libs/agg/agg_pixfmt_rgba.h
780
calc_type db = p[Order::B];
headers/libs/agg/agg_pixfmt_rgba.h
781
calc_type da = p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
796
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
822
calc_type d1a = base_mask - p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
823
calc_type s1a = base_mask - sa;
headers/libs/agg/agg_pixfmt_rgba.h
824
calc_type dr = p[Order::R];
headers/libs/agg/agg_pixfmt_rgba.h
825
calc_type dg = p[Order::G];
headers/libs/agg/agg_pixfmt_rgba.h
826
calc_type db = p[Order::B];
headers/libs/agg/agg_pixfmt_rgba.h
827
calc_type da = p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
828
calc_type sada = sa * p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
857
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
879
calc_type d1a = base_mask - p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
880
calc_type s1a = base_mask - sa;
headers/libs/agg/agg_pixfmt_rgba.h
881
calc_type dr = p[Order::R];
headers/libs/agg/agg_pixfmt_rgba.h
882
calc_type dg = p[Order::G];
headers/libs/agg/agg_pixfmt_rgba.h
883
calc_type db = p[Order::B];
headers/libs/agg/agg_pixfmt_rgba.h
884
calc_type da = p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
900
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
922
calc_type d1a = base_mask - p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
923
calc_type s1a = base_mask - sa;
headers/libs/agg/agg_pixfmt_rgba.h
924
calc_type dr = p[Order::R];
headers/libs/agg/agg_pixfmt_rgba.h
925
calc_type dg = p[Order::G];
headers/libs/agg/agg_pixfmt_rgba.h
926
calc_type db = p[Order::B];
headers/libs/agg/agg_pixfmt_rgba.h
927
calc_type da = p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
943
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_pixfmt_rgba.h
970
calc_type d1a = base_mask - p[Order::A];
headers/libs/agg/agg_pixfmt_rgba.h
971
calc_type s1a = base_mask - sa;
headers/libs/agg/agg_pixfmt_rgba.h
972
calc_type dr = p[Order::R];
headers/libs/agg/agg_pixfmt_rgba.h
973
calc_type dg = p[Order::G];
headers/libs/agg/agg_pixfmt_rgba.h
974
calc_type db = p[Order::B];
headers/libs/agg/agg_pixfmt_rgba.h
975
calc_type da = p[Order::A];
headers/libs/agg/agg_pixfmt_transposer.h
31
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_span_image_filter_gray.h
111
calc_type fg;
headers/libs/agg/agg_span_image_filter_gray.h
164
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_span_image_filter_gray.h
187
calc_type fg;
headers/libs/agg/agg_span_image_filter_gray.h
188
calc_type src_alpha;
headers/libs/agg/agg_span_image_filter_gray.h
341
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_span_image_filter_gray.h
363
calc_type fg;
headers/libs/agg/agg_span_image_filter_gray.h
440
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_span_image_filter_gray.h
45
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_span_image_filter_gray.h
91
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_span_image_filter_rgb.h
117
calc_type fg[3];
headers/libs/agg/agg_span_image_filter_rgb.h
192
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_span_image_filter_rgb.h
215
calc_type fg[3];
headers/libs/agg/agg_span_image_filter_rgb.h
216
calc_type src_alpha;
headers/libs/agg/agg_span_image_filter_rgb.h
426
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_span_image_filter_rgb.h
448
calc_type fg[3];
headers/libs/agg/agg_span_image_filter_rgb.h
46
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_span_image_filter_rgb.h
543
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_span_image_filter_rgb.h
97
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_span_image_filter_rgba.h
118
calc_type fg[4];
headers/libs/agg/agg_span_image_filter_rgba.h
198
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_span_image_filter_rgba.h
223
calc_type fg[4];
headers/libs/agg/agg_span_image_filter_rgba.h
437
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_span_image_filter_rgba.h
459
calc_type fg[4];
headers/libs/agg/agg_span_image_filter_rgba.h
46
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_span_image_filter_rgba.h
560
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_span_image_filter_rgba.h
97
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_span_pattern_gray.h
40
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_span_pattern_rgb.h
41
typedef typename color_type::calc_type calc_type;
headers/libs/agg/agg_span_pattern_rgba.h
41
typedef typename color_type::calc_type calc_type;