hayro_interpret/
device.rs1use crate::font::Glyph;
2use crate::soft_mask::SoftMask;
3use crate::{BlendMode, ClipPath, Image};
4use crate::{GlyphDrawMode, Paint, PathDrawMode};
5use kurbo::{Affine, BezPath};
6
7pub trait Device<'a> {
9 fn set_soft_mask(&mut self, mask: Option<SoftMask<'a>>);
12 fn set_blend_mode(&mut self, blend_mode: BlendMode);
14 fn draw_path(
16 &mut self,
17 path: &BezPath,
18 transform: Affine,
19 paint: &Paint<'a>,
20 draw_mode: &PathDrawMode,
21 );
22 fn push_clip_path(&mut self, clip_path: &ClipPath);
24 fn push_transparency_group(
26 &mut self,
27 opacity: f32,
28 mask: Option<SoftMask<'a>>,
29 blend_mode: BlendMode,
30 );
31 fn draw_glyph(
33 &mut self,
34 glyph: &Glyph<'a>,
35 transform: Affine,
36 glyph_transform: Affine,
37 paint: &Paint<'a>,
38 draw_mode: &GlyphDrawMode,
40 );
41 fn draw_image(&mut self, image: Image<'a, '_>, transform: Affine);
43 fn pop_clip_path(&mut self);
45 fn pop_transparency_group(&mut self);
47}