From 6872adda268c87f51d8ebf434f3b3b92f34a5510 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 21 Jun 2022 12:59:51 -0400 Subject: [PATCH] zink: disable customBorderColorWithoutFormat on turnip MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit this should "just work" now Reviewed-by: Marek Olšák Part-of: --- src/gallium/drivers/zink/zink_screen.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gallium/drivers/zink/zink_screen.c b/src/gallium/drivers/zink/zink_screen.c index 24cfa288e3f..612a4cca80c 100644 --- a/src/gallium/drivers/zink/zink_screen.c +++ b/src/gallium/drivers/zink/zink_screen.c @@ -2090,6 +2090,8 @@ init_driver_workarounds(struct zink_screen *screen) if (screen->info.driver_props.driverID == VK_DRIVER_ID_MESA_TURNIP) { /* #6602 */ screen->info.have_EXT_primitives_generated_query = false; + /* performance */ + screen->info.border_color_feats.customBorderColorWithoutFormat = VK_FALSE; } }