From d506bdaf8e0a659c965341809dd2669e98023c95 Mon Sep 17 00:00:00 2001 From: Joshua Simmons Date: Sat, 18 Oct 2025 23:37:04 +0200 Subject: [PATCH] shark: Move barrier till after UI work --- title/shark/src/draw.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/title/shark/src/draw.rs b/title/shark/src/draw.rs index bc77c01..c10c67d 100644 --- a/title/shark/src/draw.rs +++ b/title/shark/src/draw.rs @@ -711,8 +711,6 @@ impl<'gpu> DrawState<'gpu> { gpu.cmd_end_debug_marker(cmd_encoder); - gpu.cmd_compute_touch_swapchain(cmd_encoder, swapchain_image); - let compute_bind_group = gpu.request_transient_bind_group( frame, thread_token, @@ -1059,6 +1057,8 @@ impl<'gpu> DrawState<'gpu> { gpu.cmd_end_debug_marker(cmd_encoder); } + gpu.cmd_compute_touch_swapchain(cmd_encoder, swapchain_image); + // Display transform and composite { gpu.cmd_begin_debug_marker( -- 2.51.1