aboutsummaryrefslogtreecommitdiff
path: root/font/src/directwrite/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'font/src/directwrite/mod.rs')
-rw-r--r--font/src/directwrite/mod.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/font/src/directwrite/mod.rs b/font/src/directwrite/mod.rs
index 87130a37..ccb43b33 100644
--- a/font/src/directwrite/mod.rs
+++ b/font/src/directwrite/mod.rs
@@ -220,7 +220,7 @@ impl crate::Rasterize for DirectWriteRasterizer {
// This searches for the "best" font - should mean we don't have to worry about
// fallbacks if our exact desired weight/style isn't available
Ok(family.get_first_matching_font(weight.into(), FontStretch::Normal, slant.into()))
- }
+ },
Style::Specific(ref style) => {
let mut idx = 0;
let count = family.get_font_count();
@@ -238,7 +238,7 @@ impl crate::Rasterize for DirectWriteRasterizer {
idx += 1;
}
- }
+ },
}?;
let key = FontKey::next();
@@ -288,7 +288,7 @@ impl Display for Error {
Error::FontNotLoaded => f.write_str("Tried to use a font that hasn't been loaded"),
Error::DirectWriteError(hresult) => {
write!(f, "A DirectWrite rendering error occurred: {:#X}", hresult)
- }
+ },
}
}
}