mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-08 23:45:37 +00:00
[OpenTK] Don't skip AA modes in RelaxGraphicsMode
Previously, specifying an odd AA mode (e.g. 5x) would have been relaxed to 0x. Now, it will be correctly relaxed to 4x.
This commit is contained in:
parent
417a6bedc1
commit
06a3d7e1a7
|
@ -376,7 +376,7 @@ namespace OpenTK.Platform
|
|||
|
||||
if (samples > 0)
|
||||
{
|
||||
samples = Math.Max(samples - 2, 0);
|
||||
samples = Math.Max(samples - 1, 0);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue