Skip to content

Commit

Permalink
feat: use custom fork of imgui to prevent alpha bleding error
Browse files Browse the repository at this point in the history
  • Loading branch information
Syndelis committed Dec 13, 2023
1 parent 3d5ea4c commit 2d05354
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
10 changes: 4 additions & 6 deletions 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 Cargo.toml
Expand Up @@ -12,7 +12,7 @@ readme = "README.md"

[dependencies]
implot-sys = { path = "implot-sys" }
imgui = { version = "0.10.0", features = ["docking"] }
imgui = { git = "https://github.com/syndelis/imgui-rs", branch = "fix/alpha-blending", features = ["docking"] }
bitflags = "1.0"
parking_lot = "0.11"
rustversion = "1.0.4"
2 changes: 1 addition & 1 deletion implot-sys-bindgen/Cargo.toml
Expand Up @@ -6,5 +6,5 @@ edition = "2018"

[dependencies]
bindgen = "0.57"
imgui-sys = {version = "0.10.0", features=["docking"]}
imgui-sys = { git = "https://github.com/syndelis/imgui-rs", branch = "fix/alpha-blending", features = ["docking"] }

2 changes: 1 addition & 1 deletion implot-sys/Cargo.toml
Expand Up @@ -12,7 +12,7 @@ build = "build.rs"
links = "implot"

[dependencies]
imgui-sys = {version = "0.10.0", features=["docking"]}
imgui-sys = { git = "https://github.com/syndelis/imgui-rs", branch = "fix/alpha-blending", features = ["docking"] }
libc = "0.2"

[build-dependencies]
Expand Down

0 comments on commit 2d05354

Please sign in to comment.