mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 21:30:19 -06:00
ShaderGen: Remove host state from shader uids
This commit is contained in:
@ -187,3 +187,19 @@ bool VideoConfig::IsVSync()
|
||||
{
|
||||
return bVSync && !Core::GetIsThrottlerTempDisabled();
|
||||
}
|
||||
|
||||
bool VideoConfig::IsStereoEnabled() const
|
||||
{
|
||||
return iStereoMode > 0;
|
||||
}
|
||||
|
||||
bool VideoConfig::IsMSAAEnabled() const
|
||||
{
|
||||
return iMultisamples > 1;
|
||||
}
|
||||
|
||||
bool VideoConfig::IsSSAAEnabled() const
|
||||
{
|
||||
return iMultisamples > 1 && bSSAA && backend_info.bSupportsSSAA;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user