update windows crate dep

master
TheOddGarlic 2022-04-28 11:52:50 +03:00
parent 69c4cd9386
commit 70a3a97d48
3 changed files with 3 additions and 9 deletions

View File

@ -10,4 +10,4 @@ raw-window-handle = "0.4.3"
[target.'cfg(windows)'.dependencies]
abletk-direct2d = { path = "../abletk-direct2d" }
windows = { version = "0.35.0", features = ["Win32_Graphics_Direct2D_Common"] }
windows = { version = "0.36.1", features = ["Win32_Graphics_Direct2D_Common"] }

View File

@ -9,7 +9,7 @@ edition = "2021"
raw-window-handle = "0.4.3"
[dependencies.windows]
version = "0.35.0"
version = "0.36.1"
features = [
"Foundation_Numerics",
"Win32_System_Com",

View File

@ -23,13 +23,7 @@ pub(crate) const DEFAULT_BRUSH_COLOR: D2D1_COLOR_F = D2D1_COLOR_F {
pub(crate) const DEFAULT_BRUSH_PROPERTIES: D2D1_BRUSH_PROPERTIES = D2D1_BRUSH_PROPERTIES {
opacity: 1.0,
// Matrix3x2::identity() is not a const fn but it could be
//
// I (TheOddGarlic) sent windows-rs a PR and it got merged but now we wait
// for it to be included in the next release
transform: Matrix3x2 {
M11: 1.0, M12: 0.0, M21: 0.0, M22: 1.0, M31: 0.0, M32: 0.0
}
transform: Matrix3x2::identity(),
};