Skip to content

Commit

Permalink
Merge pull request imgui-rs#225 from thomcc/update-glium-0.25
Browse files Browse the repository at this point in the history
Update glium to 0.25.0
  • Loading branch information
Gekkio authored Jun 26, 2019
2 parents 92ebcce + f878f54 commit 3721aca
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 17 deletions.
53 changes: 40 additions & 13 deletions imgui-glium-examples/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion imgui-glium-examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "MIT/Apache-2.0"
publish = false

[dev-dependencies]
glium = { version = "0.24", default-features = true }
glium = { version = "0.25", default-features = true }
imgui = { version = "0.0.24-pre", path = "../" }
imgui-glium-renderer = { version = "0.0.24-pre", path = "../imgui-glium-renderer" }
imgui-winit-support = { version = "0.0.24-pre", path = "../imgui-winit-support" }
Expand Down
3 changes: 2 additions & 1 deletion imgui-glium-examples/examples/support/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ where
.with_title(title)
.with_dimensions(glutin::dpi::LogicalSize::new(1024f64, 768f64));
let display = Display::new(builder, context, &events_loop).unwrap();
let window = display.gl_window();
let gl_window = display.gl_window();
let window = gl_window.window();

let mut imgui = ImGui::init();
imgui.set_ini_filename(None);
Expand Down
2 changes: 1 addition & 1 deletion imgui-glium-renderer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ categories = ["gui", "rendering"]
travis-ci = { repository = "Gekkio/imgui-rs" }

[dependencies]
glium = { version = "0.24", default-features = false }
glium = { version = "0.25", default-features = false }
imgui = { version = "0.0.24-pre", path = "../" }
imgui-sys = { version = "0.0.24-pre", path = "../imgui-sys", features = ["glium"] }
2 changes: 1 addition & 1 deletion imgui-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ travis-ci = { repository = "Gekkio/imgui-rs" }
[dependencies]
libc = "0.2"
bitflags = "1.0"
glium = { version = "0.24", default-features = false, optional = true }
glium = { version = "0.25", default-features = false, optional = true }
gfx = { version = "0.18", optional = true }

[build-dependencies]
Expand Down

0 comments on commit 3721aca

Please sign in to comment.