Module: Mesa Branch: staging/22.0 Commit: 992c17b33a171e916d69caa76dc69dea6d707a52 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=992c17b33a171e916d69caa76dc69dea6d707a52
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) --- .pick_status.json | 2 +- src/amd/vulkan/00-radv-defaults.conf | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/.pick_status.json b/.pick_status.json index 20a50e6b8db..8ebf9976a0f 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -9108,7 +9108,7 @@ "description": "radv: disable DCC for Fable Anniversary, Dragons Dogma, GTA IV and more", "nominated": true, "nomination_type": 0, - "resolution": 5, + "resolution": 1, "because_sha": null }, { 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>
