Skip to content
Snippets Groups Projects
Commit 84d1cf16 authored by Jeroen Bakker's avatar Jeroen Bakker Committed by Gitea
Browse files

Fix #116229: Fix EEVEE GLitches on Legacy AMD Platforms

According to the issue not all legacy AMD platforms that required the
high quality normals workaround where enabled. I have not been able to
reproduce the issue due hardware availability.

This PR will enable the workaround for all HD ATI GPUs.

Pull Request: https://projects.blender.org/blender/blender/pulls/116340

Pull Request: https://projects.blender.org/blender/blender/pulls/126402
parent c788de85
No related branches found
No related tags found
No related merge requests found
......@@ -317,7 +317,7 @@ static void detect_workarounds()
*/
if (GPU_type_matches(GPU_DEVICE_ATI, GPU_OS_ANY, GPU_DRIVER_OFFICIAL)) {
const Vector<std::string> matches = {
"RX550/550", "(TM) 520", "(TM) 530", "(TM) 535", "R5", "R7", "R9"};
"RX550/550", "(TM) 520", "(TM) 530", "(TM) 535", "R5", "R7", "R9", "HD"};
if (match_renderer(renderer, matches)) {
GCaps.use_hq_normals_workaround = true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment