mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-27 07:25:28 +00:00
26 lines
701 B
C#
26 lines
701 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace OpenTK.Platform.MacOS
|
||
|
{
|
||
|
using Graphics;
|
||
|
|
||
|
class MacOSGraphicsMode : IGraphicsMode
|
||
|
{
|
||
|
#region IGraphicsMode Members
|
||
|
|
||
|
public GraphicsMode SelectGraphicsMode(ColorFormat color, int depth, int stencil, int samples, ColorFormat accum, int buffers, bool stereo)
|
||
|
{
|
||
|
GraphicsMode gfx = new GraphicsMode((IntPtr)1, color, depth, stencil, samples,
|
||
|
accum, buffers, stereo);
|
||
|
|
||
|
System.Diagnostics.Debug.Print("Created dummy graphics mode.");
|
||
|
|
||
|
return gfx;
|
||
|
}
|
||
|
|
||
|
#endregion
|
||
|
}
|
||
|
}
|