mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-02 08:01:04 +00:00
Merge pull request #367 from jpbruyere/develop
[SDL2] Don't test Stereo Mode when setting STENCIL_SIZE
This commit is contained in:
commit
6f12ddd31c
|
@ -230,7 +230,7 @@ namespace OpenTK.Platform.SDL2
|
|||
|
||||
if (mode.Stencil > 0)
|
||||
{
|
||||
SDL.GL.SetAttribute(ContextAttribute.STENCIL_SIZE, mode.Stereo ? 1 : 0);
|
||||
SDL.GL.SetAttribute(ContextAttribute.STENCIL_SIZE, 1);
|
||||
}
|
||||
|
||||
if (mode.Stereo)
|
||||
|
|
Loading…
Reference in a new issue