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
The deferred example currently crashes with an error:
RequirementNotMet { required_for: "create_info.dependencies has an element where src_access or dst_access has bits set from VkAccessFlagBits2", requires_one_of: RequiresOneOf { api_version: None, features: ["synchronization2"], device_extensions: [], instance_extensions: [] } }
Since #2043, the supported_access function returns additional flags, which are not necessarily all supported by the current device. A fix may be to provide supported_access with the device, so that it only returns supported flags, or to make a new function for all bitflags that removes unsupported flags.
The text was updated successfully, but these errors were encountered:
Rua
added a commit
to Rua/vulkano
that referenced
this issue
Oct 27, 2022
The deferred example currently crashes with an error:
I was able to track this down to these two lines:
vulkano/vulkano/src/render_pass/macros.rs
Lines 165 to 166 in 99aea52
Since #2043, the
supported_access
function returns additional flags, which are not necessarily all supported by the current device. A fix may be to providesupported_access
with the device, so that it only returns supported flags, or to make a new function for all bitflags that removes unsupported flags.The text was updated successfully, but these errors were encountered: