From 7cdac30bba549ee83cd97acdb91edbb63302000d Mon Sep 17 00:00:00 2001 From: Joonas Javanainen Date: Wed, 10 May 2017 20:55:17 +0300 Subject: [PATCH] Upgrade to gfx 0.15 --- CHANGELOG.markdown | 4 ++-- imgui-examples/Cargo.toml | 4 ++-- imgui-gfx-renderer/Cargo.toml | 2 +- imgui-sys/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown index f6e74e1..6926be0 100644 --- a/CHANGELOG.markdown +++ b/CHANGELOG.markdown @@ -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 diff --git a/imgui-examples/Cargo.toml b/imgui-examples/Cargo.toml index 4cb2853..ad210fd 100644 --- a/imgui-examples/Cargo.toml +++ b/imgui-examples/Cargo.toml @@ -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 = "../" } diff --git a/imgui-gfx-renderer/Cargo.toml b/imgui-gfx-renderer/Cargo.toml index f20bdb0..9aaa980 100644 --- a/imgui-gfx-renderer/Cargo.toml +++ b/imgui-gfx-renderer/Cargo.toml @@ -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"] } diff --git a/imgui-sys/Cargo.toml b/imgui-sys/Cargo.toml index 97b0097..8561c6b 100644 --- a/imgui-sys/Cargo.toml +++ b/imgui-sys/Cargo.toml @@ -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"