VideoCommon: Add ability for backends to override bugs

This commit is contained in:
TellowKrinkle
2023-05-17 20:15:33 -05:00
parent 463269f704
commit 99f0c3fa01
3 changed files with 139 additions and 51 deletions

View File

@ -350,4 +350,7 @@ void Init(API api, Vendor vendor, Driver driver, const double version, const Fam
// Once Vendor and driver version is set, this will return if it has the applicable bug passed to
// it.
bool HasBug(Bug bug);
// Overrides the current state of a bug
void OverrideBug(Bug bug, bool new_value);
} // namespace DriverDetails