1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-08-27 22:46:30 -05:00

Merge pull request #11402 from FernandoS27/depth-bias-control

Vulkan: Implement Depth Bias Control
This commit is contained in:
liamwhite
2023-09-28 09:35:37 -04:00
committed by GitHub
7 changed files with 69 additions and 3 deletions

View File

@@ -381,6 +381,10 @@ struct System::Impl {
room_member->SendGameInfo(game_info);
}
// Workarounds:
// Activate this in Super Smash Brothers Ultimate, it only affects AMD cards using AMDVLK
Settings::values.renderer_amdvlk_depth_bias_workaround = program_id == 0x1006A800016E000ULL;
status = SystemResultStatus::Success;
return status;
}
@@ -440,6 +444,9 @@ struct System::Impl {
room_member->SendGameInfo(game_info);
}
// Workarounds
Settings::values.renderer_amdvlk_depth_bias_workaround = false;
LOG_DEBUG(Core, "Shutdown OK");
}