You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I encountered this error while trying out bevy and after looking into similar errors1,
I came to the conclusion that it is probably a bug in wgpu.
1) What led me here was bevy#5419 in particular,
which links to #2925 here, which has apparently been resolved now;
My error message looks very similar to that one (though not the exact same, mind you).
Description
A basic dummy bevy project gives several VALIDATION error messages when run.
Repro steps
add bevy = "0.9.1" as a dependency to a new cargo project,
then write the following in main.rs:
use bevy::prelude::*;fnmain(){App::new().add_plugins(DefaultPlugins).run()}
and finally run it.
Expected vs observed behavior
I expected it to open a window and sit there doing nothing.
Instead, there are lots of error messages (a lot of which are repeated, probably because bevy tries the same thing each frame).
The specific errors I get are VUID-vkResetCommandPool-commandPool-00040, VUID-vkDestroyBuffer-buffer-00922 and VUID-vkDestroyImage-image-01000.
Extra materials
The whole output log (with repeated error messages): output.zip
I encountered this error while trying out bevy and after looking into similar errors1,
I came to the conclusion that it is probably a bug in wgpu.
1) What led me here was bevy#5419 in particular,
which links to #2925 here, which has apparently been resolved now;
My error message looks very similar to that one (though not the exact same, mind you).
Description
A basic dummy bevy project gives several
VALIDATION
error messages when run.Repro steps
add
bevy = "0.9.1"
as a dependency to a new cargo project,then write the following in
main.rs
:and finally run it.
Expected vs observed behavior
I expected it to open a window and sit there doing nothing.
Instead, there are lots of error messages (a lot of which are repeated, probably because bevy tries the same thing each frame).
The specific errors I get are
VUID-vkResetCommandPool-commandPool-00040
,VUID-vkDestroyBuffer-buffer-00922
andVUID-vkDestroyImage-image-01000
.Extra materials
The whole output log (with repeated error messages): output.zip
Platform
OS: Ubuntu 20.04.5 LTS
Graphics Card: AMD Radeon RX 5700 XT
Rust: bevy 0.9.1, which uses wgpu 0.14.2
The text was updated successfully, but these errors were encountered: