We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vk::format
Description vk backend fn query_format_properties cannot include the extended vk::format, cause validation error when using ASTC_XX_SFLOAT_BLOCK_EXT:
ASTC_XX_SFLOAT_BLOCK_EXT
InvalidFormatUsages(COPY_DST | TEXTURE_BINDING, Astc { block: B8x8, channel: Hdr }, true)
query_format_properties assumes that the value of vk::format is in the [0, 184] range, but that is not true: https://github.com/ash-rs/ash/blob/e5c4d11b03c29f66d10c14a0f10bd80999f9267e/ash/src/vk/feature_extensions.rs#L24-L60 https://github.com/ash-rs/ash/blob/e5c4d11b03c29f66d10c14a0f10bd80999f9267e/ash/src/vk/feature_extensions.rs#L340-L359
query_format_properties
Platform wgpu master, vulkan backend.
The text was updated successfully, but these errors were encountered:
astc_hdr
Closed by #2971
Sorry, something went wrong.
No branches or pull requests
Description
vk backend fn query_format_properties cannot include the extended
vk::format
, cause validation error when usingASTC_XX_SFLOAT_BLOCK_EXT
:query_format_properties
assumes that the value ofvk::format
is in the [0, 184] range, but that is not true:https://github.com/ash-rs/ash/blob/e5c4d11b03c29f66d10c14a0f10bd80999f9267e/ash/src/vk/feature_extensions.rs#L24-L60
https://github.com/ash-rs/ash/blob/e5c4d11b03c29f66d10c14a0f10bd80999f9267e/ash/src/vk/feature_extensions.rs#L340-L359
Platform
wgpu master, vulkan backend.
The text was updated successfully, but these errors were encountered: