Module: Mesa Branch: staging/22.0 Commit: fe25af183781f2083390aa4cd9c0e56fbe22e14a URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=fe25af183781f2083390aa4cd9c0e56fbe22e14a
Author: Samuel Pitoiset <[email protected]> Date: Tue Mar 1 14:16:24 2022 +0100 radv: disable DCC for Fable Anniversary, Dragons Dogma, GTA IV and more Also Starcraft 2 and The Force Unleashed II. These games are known to be affected by the feedback loop issue. We will fix this properly soon but as a hotfix disabling DCC should be enough. Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/4424 Cc: mesa-stable Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Bas Nieuwenhuizen <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15203> (cherry picked from commit 4380916b761d2ebbe5b1d36b9162810b66a727fc) --- src/amd/vulkan/00-radv-defaults.conf | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/amd/vulkan/00-radv-defaults.conf b/src/amd/vulkan/00-radv-defaults.conf index 104c5462ec9..3118909f0b4 100644 --- a/src/amd/vulkan/00-radv-defaults.conf +++ b/src/amd/vulkan/00-radv-defaults.conf @@ -140,5 +140,25 @@ Application bugs worked around in this file: <application name="The Evil Within 2" application_name_match="TEW2.exe"> <option name="radv_disable_aniso_single_level" value="true" /> </application> + + <application name="Fable Anniversary" application_name_match="Fable Anniversary.exe"> + <option name="radv_disable_dcc" value="true" /> + </application> + + <application name="Dragon's Dogma Dark Ariser" application_name_match="DDDA.exe"> + <option name="radv_disable_dcc" value="true" /> + </application> + + <application name="Grand Theft Auto IV" application_name_match="GTAIV.exe"> + <option name="radv_disable_dcc" value="true" /> + </application> + + <application name="Star Wars: The Force Unleashed II" application_name_match="SWTFU2.exe"> + <option name="radv_disable_dcc" value="true" /> + </application> + + <application name="Starcraft 2" application_name_match="SC2_x64.exe"> + <option name="radv_disable_dcc" value="true" /> + </application> </device> </driconf>
