mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 19:15:33 +00:00
0c27512d5f
Added missing RENDERABLE_TYPE bits to EGL mode selection. This is required by the OpenGL ES spec.
105 lines
4.6 KiB
C#
105 lines
4.6 KiB
C#
#region License
|
|
//
|
|
// The Open Toolkit Library License
|
|
//
|
|
// Copyright (c) 2006 - 2009 the Open Toolkit library.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights to
|
|
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
// the Software, and to permit persons to whom the Software is furnished to do
|
|
// so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
// copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
// OTHER DEALINGS IN THE SOFTWARE.
|
|
//
|
|
#endregion
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using OpenTK.Graphics;
|
|
|
|
namespace OpenTK.Platform.Egl
|
|
{
|
|
class EglGraphicsMode : IGraphicsMode
|
|
{
|
|
#region IGraphicsMode Members
|
|
|
|
public GraphicsMode SelectGraphicsMode(ColorFormat color, int depth, int stencil, int samples, ColorFormat accum, int buffers, bool stereo)
|
|
{
|
|
IntPtr[] configs = new IntPtr[1];
|
|
int[] attribList = new int[]
|
|
{
|
|
//Egl.SURFACE_TYPE, Egl.WINDOW_BIT,
|
|
|
|
// Context creation will fail unless one of these bits is set. Hopefully, setting all bits will not
|
|
// cause any ugly side-effects.
|
|
// If this doesn't work, we'll have to use Egl.GetConfigs and implement our own selection logic,
|
|
// because we the exact ES version is not known when selecting a graphics context.
|
|
// (See WinGraphicsMode.cs for an selection logic implementation).
|
|
// Todo: add Egl.OPENVG_BIT here if we ever add OpenVG bindings.
|
|
Egl.RENDERABLE_TYPE, Egl.OPENGL_ES_BIT | Egl.OPENGL_ES2_BIT | Egl.OPENGL_BIT,
|
|
|
|
Egl.RED_SIZE, color.Red,
|
|
Egl.GREEN_SIZE, color.Green,
|
|
Egl.BLUE_SIZE, color.Blue,
|
|
Egl.ALPHA_SIZE, color.Alpha,
|
|
|
|
Egl.DEPTH_SIZE, depth > 0 ? depth : 0,
|
|
Egl.STENCIL_SIZE, stencil > 0 ? stencil : 0,
|
|
|
|
//Egl.SAMPLE_BUFFERS, samples > 0 ? 1 : 0,
|
|
Egl.SAMPLES, samples > 0 ? samples : 0,
|
|
|
|
Egl.NONE,
|
|
};
|
|
|
|
// Todo: what if we don't wish to use the default display?
|
|
IntPtr display = Egl.GetDisplay(IntPtr.Zero);
|
|
int major, minor;
|
|
if (!Egl.Initialize(display, out major, out minor))
|
|
throw new GraphicsModeException(String.Format("Failed to initialize display connection, error {0}", Egl.GetError()));
|
|
|
|
int num_configs;
|
|
if (!Egl.GetConfigs(display, null, 0, out num_configs))
|
|
{
|
|
throw new GraphicsModeException(String.Format("Failed to retrieve GraphicsMode configurations, error {0}", Egl.GetError()));
|
|
}
|
|
|
|
if (!Egl.ChooseConfig(display, attribList, configs, configs.Length, out num_configs))
|
|
{
|
|
throw new GraphicsModeException(String.Format("Failed to retrieve GraphicsMode, error {0}", Egl.GetError()));
|
|
}
|
|
|
|
// See what we really got
|
|
IntPtr active_config = configs[0];
|
|
int r, g, b, a;
|
|
Egl.GetConfigAttrib(display, active_config, Egl.RED_SIZE, out r);
|
|
Egl.GetConfigAttrib(display, active_config, Egl.GREEN_SIZE, out g);
|
|
Egl.GetConfigAttrib(display, active_config, Egl.BLUE_SIZE, out b);
|
|
Egl.GetConfigAttrib(display, active_config, Egl.ALPHA_SIZE, out a);
|
|
int d, s;
|
|
Egl.GetConfigAttrib(display, active_config, Egl.DEPTH_SIZE, out d);
|
|
Egl.GetConfigAttrib(display, active_config, Egl.STENCIL_SIZE, out s);
|
|
int sample_buffers;
|
|
Egl.GetConfigAttrib(display, active_config, Egl.SAMPLES, out sample_buffers);
|
|
Egl.GetConfigAttrib(display, active_config, Egl.SAMPLES, out samples);
|
|
|
|
return new GraphicsMode(active_config, new ColorFormat(r, g, b, a), d, s, sample_buffers > 0 ? samples : 0, 0, 2, false);
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|