Finally solved the problems with the imgui renderer after a long chat with clankers. Fixed some other stuff as well. Reminder to keep the rendered_this_frame check as that's what solved it. Probably a deeper issue down there that caused us to render twice, but whatever.
18 lines
448 B
TOML
18 lines
448 B
TOML
[package]
|
|
name = "raidillon_game"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[features]
|
|
default = ["glium"]
|
|
glium = ["raidillon_glium"]
|
|
|
|
[dependencies]
|
|
raidillon_core = { path = "../core" }
|
|
raidillon_platform = { path = "../platform" }
|
|
raidillon_assets = { path = "../asset" }
|
|
raidillon_ecs = { path = "../ecs" }
|
|
raidillon_engine = { path = "../engine" }
|
|
raidillon_glium = { path = "../glium_platform", optional = true }
|
|
glam = "0.30.5"
|
|
winit = "0.30.12"
|