From 9491b56bebb7984c9da2760a6792c6589792e803 Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Thu, 15 Feb 2024 20:33:06 +0100 Subject: [PATCH] util: Enable d3d11.ignoreGraphicsBarriers for Granblue Relink Improves GPU-bound performance due to the game using PS UAVs. --- src/util/config/config.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/util/config/config.cpp b/src/util/config/config.cpp index 50aca5b3..b4377643 100644 --- a/src/util/config/config.cpp +++ b/src/util/config/config.cpp @@ -430,6 +430,11 @@ namespace dxvk { { R"(\\kenshi_x64\.exe$)", {{ { "d3d11.cachedDynamicResources", "v" }, }} }, + /* Granblue Relink: Spams pixel shader UAVs * + * like crazy, much like God of War */ + { R"(\\granblue_fantasy_relink\.exe$)", {{ + { "d3d11.ignoreGraphicsBarriers", "True" }, + }} }, /**********************************************/ /* D3D9 GAMES */