[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:
Stefanos A. 2014-01-22 23:25:11 +01:00
parent 417a6bedc1
commit 06a3d7e1a7

View file

@ -376,7 +376,7 @@ namespace OpenTK.Platform
if (samples > 0)
{
samples = Math.Max(samples - 2, 0);
samples = Math.Max(samples - 1, 0);
return true;
}