Skip to content

Commit

Permalink
fix non-default image view usage being ignored
Browse files Browse the repository at this point in the history
  • Loading branch information
Firestar99 committed Aug 3, 2024
1 parent c8fb6a1 commit b8dc765
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vulkano/src/image/view.rs
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ impl ImageView {
usage = implicit_default_usage;
false
} else {
usage == implicit_default_usage
usage != implicit_default_usage
};

let mut info_vk = ash::vk::ImageViewCreateInfo {
Expand Down

0 comments on commit b8dc765

Please sign in to comment.