Skip to content

Commit

Permalink
Update yakui to fix its Vulkan code for older computers
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Sep 13, 2024
1 parent a3b5cc7 commit 693517a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ server = { path = "../server" }
tracing = "0.1.10"
ash = { version = "0.38.0", default-features = false, features = ["loaded", "debug", "std"] }
lahar = { git = "https://github.com/Ralith/lahar", rev = "7963ae5750ea61fa0a894dbb73d3be0ac77255d2" }
yakui = { git = "https://github.com/SecondHalfGames/yakui", rev = "273a4a1020803066b84ac69a7646893419c31385" }
yakui-vulkan = { git = "https://github.com/SecondHalfGames/yakui", rev = "273a4a1020803066b84ac69a7646893419c31385" }
yakui = { git = "https://github.com/SecondHalfGames/yakui", rev = "136f88d54f08fcb21a5215f422c8581f89d46dd2" }
yakui-vulkan = { git = "https://github.com/SecondHalfGames/yakui", rev = "136f88d54f08fcb21a5215f422c8581f89d46dd2" }
winit = "0.30.4"
ash-window = "0.13"
raw-window-handle = "0.6"
Expand Down
3 changes: 2 additions & 1 deletion client/src/graphics/base.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ impl Base {
.enabled_extension_names(&device_exts)
.push_next(
&mut vk::PhysicalDeviceVulkan12Features::default()
.descriptor_binding_partially_bound(true),
.descriptor_binding_partially_bound(true)
.descriptor_binding_sampled_image_update_after_bind(true),
),
None,
)
Expand Down

0 comments on commit 693517a

Please sign in to comment.