Skip to content

Commit baa021b

Browse files
committed
Split glr module into easy-opengl crate.
1 parent 18be763 commit baa021b

File tree

13 files changed

+180
-134
lines changed

13 files changed

+180
-134
lines changed

Cargo.lock

Lines changed: 57 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ members = [
66
"easy-imgui-renderer",
77
"easy-imgui-window",
88
"easy-imgui-filechooser",
9+
"easy-opengl",
910
]

easy-imgui-filechooser/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "easy-imgui-filechooser"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
edition = "2021"
55
description = "File-chooser widget for easy-imgui"
66
license = "MIT"
@@ -14,7 +14,7 @@ default = []
1414
tr = ["dep:tr", "dep:include-po"]
1515

1616
[dependencies]
17-
easy-imgui = { version = "0.11.0", path = "../easy-imgui" }
17+
easy-imgui = { version = "0.12.0", path = "../easy-imgui" }
1818
image = "0.25"
1919
glob = "0.3"
2020
time = { version = "0.3", features = ["macros", "formatting"] }
@@ -26,7 +26,7 @@ tr = { version = "0.1.10", default-features = false, optional = true }
2626
windows = { version = "0.58", features = ["Win32_Storage_FileSystem"] }
2727

2828
[dev-dependencies]
29-
easy-imgui-window = { version = "0.11.0", path = "../easy-imgui-window" }
29+
easy-imgui-window = { version = "0.12.0", path = "../easy-imgui-window" }
3030
sys-locale = "0.3"
3131

3232
[build-dependencies]

easy-imgui-renderer/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "easy-imgui-renderer"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
edition = "2021"
55
description = "Default renderer for the easy-imgui crate, using OpenGl via glow"
66
license = "MIT"
@@ -12,11 +12,11 @@ keywords = ["imgui", "ui", "graphics"]
1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

1414
[dependencies]
15-
easy-imgui-sys = { version = "=0.11.0", path = "../easy-imgui-sys" }
16-
easy-imgui = { version = "=0.11.0", path = "../easy-imgui" }
15+
easy-imgui-sys = { version = "=0.12.0", path = "../easy-imgui-sys" }
16+
easy-imgui = { version = "=0.12.0", path = "../easy-imgui" }
17+
easy-opengl = { version = "0.1", path = "../easy-opengl" }
1718

1819
anyhow = "1"
1920
cgmath = "0.18"
2021
smallvec = "1"
21-
glow = "0.16"
2222
log = "0.4"

0 commit comments

Comments
 (0)