Upgrade to gfx 0.15

This commit is contained in:
Joonas Javanainen 2017-05-10 20:55:17 +03:00
parent 19ff43ddf8
commit 7cdac30bba
No known key found for this signature in database
GPG Key ID: D39CCA5CB19B9179
4 changed files with 6 additions and 6 deletions

View File

@ -32,8 +32,8 @@
- Support for 2-4 -element float sliders
- `ImVec4::zero()`
- `Into` array and tuple conversions for ImVec2 and ImVec4
- gfx 0.14 support in imgui-sys
- gfx 0.14 renderer implementation
- gfx 0.15 support in imgui-sys
- gfx 0.15 renderer implementation
### Changed

View File

@ -9,8 +9,8 @@ license = "MIT/Apache-2.0"
publish = false
[dev-dependencies]
gfx = "0.14"
gfx_window_glutin = "0.14"
gfx = "0.15"
gfx_window_glutin = "0.15"
glium = { version = "0.16", default-features = true }
glutin = "0.7"
imgui = { version = "0.0.14-pre", path = "../" }

View File

@ -9,6 +9,6 @@ license = "MIT/Apache-2.0"
categories = ["gui", "rendering"]
[dependencies]
gfx = "0.14"
gfx = "0.15"
imgui = { version = "0.0.14-pre", path = "../" }
imgui-sys = { version = "0.0.14-pre", path = "../imgui-sys", features = ["gfx"] }

View File

@ -12,7 +12,7 @@ build = "build.rs"
[dependencies]
bitflags = "0.8"
glium = { version = "0.16", default-features = false, optional = true }
gfx = { version = "0.14", optional = true }
gfx = { version = "0.15", optional = true }
[build-dependencies]
gcc = "0.3"