externals: Update MoltenVK (#3694)
Some checks are pending
Build and Release / reuse (push) Waiting to run
Build and Release / clang-format (push) Waiting to run
Build and Release / get-info (push) Waiting to run
Build and Release / windows-sdl (push) Blocked by required conditions
Build and Release / windows-qt (push) Blocked by required conditions
Build and Release / macos-sdl (push) Blocked by required conditions
Build and Release / macos-qt (push) Blocked by required conditions
Build and Release / linux-sdl (push) Blocked by required conditions
Build and Release / linux-qt (push) Blocked by required conditions
Build and Release / linux-sdl-gcc (push) Blocked by required conditions
Build and Release / linux-qt-gcc (push) Blocked by required conditions
Build and Release / pre-release (push) Blocked by required conditions

This commit is contained in:
squidbus 2025-10-01 18:52:12 -07:00 committed by GitHub
parent 74c0ea8432
commit 110a735a04
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 4 deletions

@ -1 +1 @@
Subproject commit 712fbb808ddb81c9369fa3870c41e4c36add311c
Subproject commit 3e935eb5642813f0506518771528aee37539e601

@ -1 +1 @@
Subproject commit 0a88b2d5c08708d45692b7096a0a84e7bfae366c
Subproject commit 7affe74d77f93a622bb5002789d5332d32e512ee

View File

@ -119,8 +119,7 @@ Image::Image(const Vulkan::Instance& instance_, Vulkan::Scheduler& scheduler_,
if (info.props.is_volume) {
flags |= vk::ImageCreateFlagBits::e2DArrayCompatible;
}
// Not supported by MoltenVK.
if (info.props.is_block && instance->GetDriverID() != vk::DriverId::eMoltenvk) {
if (info.props.is_block) {
flags |= vk::ImageCreateFlagBits::eBlockTexelViewCompatible;
}