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]
|
[target.'cfg(windows)'.dependencies]
|
||||||
abletk-direct2d = { path = "../abletk-direct2d" }
|
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"
|
raw-window-handle = "0.4.3"
|
||||||
|
|
||||||
[dependencies.windows]
|
[dependencies.windows]
|
||||||
version = "0.35.0"
|
version = "0.36.1"
|
||||||
features = [
|
features = [
|
||||||
"Foundation_Numerics",
|
"Foundation_Numerics",
|
||||||
"Win32_System_Com",
|
"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 {
|
pub(crate) const DEFAULT_BRUSH_PROPERTIES: D2D1_BRUSH_PROPERTIES = D2D1_BRUSH_PROPERTIES {
|
||||||
opacity: 1.0,
|
opacity: 1.0,
|
||||||
// Matrix3x2::identity() is not a const fn but it could be
|
transform: Matrix3x2::identity(),
|
||||||
//
|
|
||||||
// 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
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue