From 750dd55a4acb771e9b7475624ac0052f4ab300fc Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 11 Jul 2025 12:00:53 -0400 Subject: [PATCH] zink: reenable unsynchronized texture subdata without HIC now that the mapping issue is fixed, this should work everywhere Part-of: --- src/gallium/drivers/zink/zink_context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/zink/zink_context.c b/src/gallium/drivers/zink/zink_context.c index c6b13d15491..5c253a6a528 100644 --- a/src/gallium/drivers/zink/zink_context.c +++ b/src/gallium/drivers/zink/zink_context.c @@ -5634,7 +5634,7 @@ zink_context_create(struct pipe_screen *pscreen, void *priv, unsigned flags) .is_resource_busy = zink_context_is_resource_busy, .driver_calls_flush_notify = !screen->driver_workarounds.track_renderpasses, .unsynchronized_get_device_reset_status = true, - .unsynchronized_texture_subdata = screen->info.have_EXT_host_image_copy, + .unsynchronized_texture_subdata = true, .parse_renderpass_info = screen->driver_workarounds.track_renderpasses, .dsa_parse = zink_tc_parse_dsa, .fs_parse = zink_tc_parse_fs,