mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-12 20:55:37 +00:00
6d0b5eb49f
This is a new platform that can be used then sdl2 is installed on the target system. SDL2 is commercially supported by Valve and provides better support for MacOS compared to our current implementation (Cocoa vs Carbon). It will also help us introduce faster support for new platforms. Existing platforms remain as a fallback and will be automatically used if sdl2 is not installed. Please note that this is still a work in progress. The new mouse and keyboard API is not supported yet. Due to limitations of sdl2, multiple mice/keyboards are also not supported.
23 lines
530 B
C#
23 lines
530 B
C#
using System;
|
|
using OpenTK.Graphics;
|
|
|
|
namespace OpenTK.Platform.SDL2
|
|
{
|
|
class Sdl2GraphicsMode : IGraphicsMode
|
|
{
|
|
public Sdl2GraphicsMode()
|
|
{
|
|
}
|
|
|
|
#region IGraphicsMode implementation
|
|
|
|
public GraphicsMode SelectGraphicsMode(ColorFormat color, int depth, int stencil, int samples, ColorFormat accum, int buffers, bool stereo)
|
|
{
|
|
return new GraphicsMode(new IntPtr(1), new ColorFormat(32), 24, 8, 0, ColorFormat.Empty, 2, false);
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|
|
|