Upgrade to gfx 0.18

This commit is contained in:
Joonas Javanainen 2019-04-10 21:38:57 +03:00
parent 7c1672b4f9
commit a51afa0539
No known key found for this signature in database
GPG Key ID: D39CCA5CB19B9179
6 changed files with 359 additions and 274 deletions

View File

@ -8,6 +8,10 @@
- `Ui::set_keyboard_focus_here`
- Support for window position pivot
### Changed
- Upgrade to gfx 0.18
### Removed
- Various things that were deprecated in imgui-rs 0.0.21 and 0.0.22

File diff suppressed because it is too large Load Diff

View File

@ -10,9 +10,9 @@ license = "MIT/Apache-2.0"
publish = false
[dev-dependencies]
gfx = "0.17"
gfx_window_glutin = "0.28"
glutin = "0.19"
gfx = "0.18"
gfx_window_glutin = "0.30"
glutin = "0.20"
imgui = { version = "0.0.23-pre", path = "../" }
imgui-gfx-renderer = { version = "0.0.23-pre", path = "../imgui-gfx-renderer" }
imgui-winit-support = { version = "0.0.23-pre", path = "../imgui-winit-support" }

View File

@ -13,6 +13,6 @@ categories = ["gui", "rendering"]
travis-ci = { repository = "Gekkio/imgui-rs" }
[dependencies]
gfx = "0.17"
gfx = "0.18"
imgui = { version = "0.0.23-pre", path = "../" }
imgui-sys = { version = "0.0.23-pre", path = "../imgui-sys", features = ["gfx"] }

View File

@ -321,34 +321,34 @@ dependencies = [
[[package]]
name = "imgui"
version = "0.0.22-pre"
version = "0.0.23-pre"
dependencies = [
"imgui-sys 0.0.22-pre",
"imgui-sys 0.0.23-pre",
]
[[package]]
name = "imgui-glium-examples"
version = "0.0.22-pre"
version = "0.0.23-pre"
dependencies = [
"glium 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)",
"image 0.20.1 (registry+https://github.com/rust-lang/crates.io-index)",
"imgui 0.0.22-pre",
"imgui-glium-renderer 0.0.22-pre",
"imgui-winit-support 0.0.22-pre",
"imgui 0.0.23-pre",
"imgui-glium-renderer 0.0.23-pre",
"imgui-winit-support 0.0.23-pre",
]
[[package]]
name = "imgui-glium-renderer"
version = "0.0.22-pre"
version = "0.0.23-pre"
dependencies = [
"glium 0.23.0 (registry+https://github.com/rust-lang/crates.io-index)",
"imgui 0.0.22-pre",
"imgui-sys 0.0.22-pre",
"imgui 0.0.23-pre",
"imgui-sys 0.0.23-pre",
]
[[package]]
name = "imgui-sys"
version = "0.0.22-pre"
version = "0.0.23-pre"
dependencies = [
"bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)",
"cc 1.0.28 (registry+https://github.com/rust-lang/crates.io-index)",
@ -358,9 +358,9 @@ dependencies = [
[[package]]
name = "imgui-winit-support"
version = "0.0.22-pre"
version = "0.0.23-pre"
dependencies = [
"imgui 0.0.22-pre",
"imgui 0.0.23-pre",
"winit 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)",
]

View File

@ -17,7 +17,7 @@ travis-ci = { repository = "Gekkio/imgui-rs" }
libc = "0.2"
bitflags = "1.0"
glium = { version = "0.23", default-features = false, optional = true }
gfx = { version = "0.17", optional = true }
gfx = { version = "0.18", optional = true }
[build-dependencies]
cc = "1.0"