diff options
Diffstat (limited to '')
-rw-r--r-- | renderer/src/backend.rs | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/renderer/src/backend.rs b/renderer/src/backend.rs index 120dd644..70b146f4 100644 --- a/renderer/src/backend.rs +++ b/renderer/src/backend.rs @@ -48,8 +48,13 @@ impl backend::Text for Backend { size: f32, font: Font, bounds: Size, + shaping: text::Shaping, ) -> (f32, f32) { - delegate!(self, backend, backend.measure(contents, size, font, bounds)) + delegate!( + self, + backend, + backend.measure(contents, size, font, bounds, shaping) + ) } fn hit_test( @@ -58,6 +63,7 @@ impl backend::Text for Backend { size: f32, font: Font, bounds: Size, + shaping: text::Shaping, position: Point, nearest_only: bool, ) -> Option<text::Hit> { @@ -69,8 +75,9 @@ impl backend::Text for Backend { size, font, bounds, + shaping, position, - nearest_only + nearest_only, ) ) } |