mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-24 07:26:51 +00:00
Enabled SAMPLE_BUFFERS EGL attribute
This attribute is required for multisampling support.
This commit is contained in:
parent
dc093f8fa9
commit
0d0f578788
|
@ -67,7 +67,7 @@ namespace OpenTK.Platform.Egl
|
|||
Egl.DEPTH_SIZE, depth > 0 ? depth : 0,
|
||||
Egl.STENCIL_SIZE, stencil > 0 ? stencil : 0,
|
||||
|
||||
//Egl.SAMPLE_BUFFERS, samples > 0 ? 1 : 0,
|
||||
Egl.SAMPLE_BUFFERS, samples > 0 ? 1 : 0,
|
||||
Egl.SAMPLES, samples > 0 ? samples : 0,
|
||||
|
||||
Egl.NONE,
|
||||
|
|
Loading…
Reference in a new issue