Replies: 1 comment
|
Nevermind, it seems that I simply forgot to update the egui crates to the latest version. I assumed cargo update would update them. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I'm trying to implement egui on a wgpu project (using version 29.0.1), I've searched countless example demos to see how to implement it, most of them being outdated, but when I try to implement it (for example, creating a new renderer by using egui_wgpu::Renderer::new()), it expects you to use the wgpu crate inside egui_wgpu, but the problem is that it isn't the same version as the standalone wgpu crate. Running the command "cargo tree -p egui-wgpu" indicates that egui-wgpu is using version 25.0 of wgpu, not 29.0.
Is there something I'm missing, or I'm supposed to rewrite my entire app to wgpu 25.0 just to make egui work? I've seen on new changelogs that egui-wgpu already has wgpu 29.0, so I'm not sure what is going on here. I haven't seen anyone talking about this.
All reactions