update windows crate dep
This commit is contained in:
parent
69c4cd9386
commit
70a3a97d48
|
@ -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"] }
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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(),
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue