1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
use crate::{PixmapMut, Path, Color, BlendMode, Shader, LineCap, Rect};
use crate::clip::ClipMaskData;
use crate::pipeline::{ContextStorage, RasterPipelineBlitter};
use crate::scan;
const MAX_DIM: u32 = 8192 - 1;
#[derive(Copy, Clone, PartialEq, Debug)]
pub enum FillRule {
Winding,
EvenOdd,
}
impl Default for FillRule {
#[inline]
fn default() -> Self {
FillRule::Winding
}
}
#[derive(Clone, Debug)]
pub struct Paint<'a> {
pub shader: Shader<'a>,
pub blend_mode: BlendMode,
pub anti_alias: bool,
pub force_hq_pipeline: bool,
}
impl Default for Paint<'_> {
#[inline]
fn default() -> Self {
Paint {
shader: Shader::SolidColor(Color::BLACK),
blend_mode: BlendMode::default(),
anti_alias: false,
force_hq_pipeline: false,
}
}
}
impl<'a> Paint<'a> {
#[inline]
pub fn set_color(&mut self, color: Color) {
self.shader = Shader::SolidColor(color);
}
#[inline]
pub fn set_color_rgba8(&mut self, r: u8, g: u8, b: u8, a: u8) {
self.set_color(Color::from_rgba8(r, g, b, a))
}
#[inline]
pub fn is_solid_color(&self) -> bool {
matches!(self.shader, Shader::SolidColor(_))
}
}
impl<'a> PixmapMut<'a> {
pub(crate) fn fill_rect(
&mut self,
rect: Rect,
paint: &Paint,
clip_mask: Option<&ClipMaskData>,
) -> Option<()> {
let bbox = rect.round_out();
if bbox.width() > MAX_DIM || bbox.height() > MAX_DIM {
return None;
}
let clip = self.size().to_screen_int_rect(0, 0);
let mut ctx_storage = ContextStorage::new();
let mut blitter = RasterPipelineBlitter::new(paint, clip_mask, &mut ctx_storage, self)?;
if paint.anti_alias {
scan::fill_rect_aa(&rect, &clip, &mut blitter)
} else {
scan::fill_rect(&rect, &clip, &mut blitter)
}
}
pub(crate) fn fill_path(
&mut self,
path: &Path,
paint: &Paint,
fill_type: FillRule,
clip_mask: Option<&ClipMaskData>,
) -> Option<()> {
let path_bounds = path.bounds();
let path_int_bounds = path_bounds.round_out();
if path_int_bounds.width() > MAX_DIM || path_int_bounds.height() > MAX_DIM {
return None;
}
if path.is_too_big_for_math() {
return None;
}
let clip_rect = self.size().to_screen_int_rect(0, 0);
let mut ctx_storage = ContextStorage::new();
let mut blitter = RasterPipelineBlitter::new(paint, clip_mask, &mut ctx_storage, self)?;
if paint.anti_alias {
scan::path_aa::fill_path(path, fill_type, &clip_rect, &mut blitter)
} else {
scan::path::fill_path(path, fill_type, &clip_rect, &mut blitter)
}
}
pub(crate) fn stroke_hairline(
&mut self,
path: &Path,
paint: &Paint,
line_cap: LineCap,
clip_mask: Option<&ClipMaskData>,
) -> Option<()> {
let clip = self.size().to_screen_int_rect(0, 0);
let mut ctx_storage = ContextStorage::new();
let mut blitter = RasterPipelineBlitter::new(paint, clip_mask, &mut ctx_storage, self)?;
if paint.anti_alias {
scan::hairline_aa::stroke_path(path, line_cap, &clip, &mut blitter)
} else {
scan::hairline::stroke_path(path, line_cap, &clip, &mut blitter)
}
}
}