mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-23 19:38:27 +00:00
Support winit v0.27.2
This commit is contained in:
parent
2d49ef7eb3
commit
5fa0f27564
@ -11,7 +11,7 @@ publish = false
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
clipboard = "0.5"
|
clipboard = "0.5"
|
||||||
glium = { version = "0.31", default-features = true }
|
glium = { version = "0.32.1", default-features = true }
|
||||||
image = "0.23"
|
image = "0.23"
|
||||||
imgui = { path = "../imgui", features = ["tables-api"] }
|
imgui = { path = "../imgui", features = ["tables-api"] }
|
||||||
imgui-glium-renderer = { path = "../imgui-glium-renderer" }
|
imgui-glium-renderer = { path = "../imgui-glium-renderer" }
|
||||||
|
|||||||
@ -10,5 +10,5 @@ license = "MIT/Apache-2.0"
|
|||||||
categories = ["gui", "rendering"]
|
categories = ["gui", "rendering"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
glium = { version = "0.31", default-features = false }
|
glium = { version = "0.32.1", default-features = false }
|
||||||
imgui = { version = "0.8.1-alpha.0", path = "../imgui" }
|
imgui = { version = "0.8.1-alpha.0", path = "../imgui" }
|
||||||
|
|||||||
@ -117,18 +117,21 @@ impl glium::vertex::Vertex for GliumDrawVert {
|
|||||||
(
|
(
|
||||||
Borrowed("pos"),
|
Borrowed("pos"),
|
||||||
0,
|
0,
|
||||||
|
-1,
|
||||||
glium::vertex::AttributeType::F32F32,
|
glium::vertex::AttributeType::F32F32,
|
||||||
false,
|
false,
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
Borrowed("uv"),
|
Borrowed("uv"),
|
||||||
8,
|
8,
|
||||||
|
-1,
|
||||||
glium::vertex::AttributeType::F32F32,
|
glium::vertex::AttributeType::F32F32,
|
||||||
false,
|
false,
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
Borrowed("col"),
|
Borrowed("col"),
|
||||||
16,
|
16,
|
||||||
|
-1,
|
||||||
glium::vertex::AttributeType::U8U8U8U8,
|
glium::vertex::AttributeType::U8U8U8U8,
|
||||||
false,
|
false,
|
||||||
),
|
),
|
||||||
|
|||||||
@ -15,7 +15,7 @@ glow = "0.10.0"
|
|||||||
memoffset = "0.6.4"
|
memoffset = "0.6.4"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
glutin = "0.28.0"
|
glutin = "0.29.1"
|
||||||
imgui-winit-support = { version = "0.8.1-alpha.0", path = "../imgui-winit-support" }
|
imgui-winit-support = { version = "0.8.1-alpha.0", path = "../imgui-winit-support" }
|
||||||
image = "0.23"
|
image = "0.23"
|
||||||
|
|
||||||
|
|||||||
@ -11,4 +11,4 @@ categories = ["gui"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
imgui = { version = "0.8.1-alpha.0", path = "../imgui" }
|
imgui = { version = "0.8.1-alpha.0", path = "../imgui" }
|
||||||
winit = { version = "0.26.0", default-features = false }
|
winit = { version = "0.27.2", default-features = false }
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user