mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-24 20:06:50 +00:00
Fixed compilation on desktop platforms.
This commit is contained in:
parent
863edc35d1
commit
70818d97e1
|
@ -34,14 +34,16 @@ using System.Diagnostics;
|
|||
using System.Drawing;
|
||||
using System.Text;
|
||||
using OpenTK.Graphics;
|
||||
#if ANDROID || IPHONE || MINIMAL
|
||||
using OpenTK.Minimal;
|
||||
#endif
|
||||
|
||||
namespace OpenTK.Platform.MacOS
|
||||
{
|
||||
using Carbon;
|
||||
#if ANDROID || IPHONE || MINIMAL
|
||||
using Minimal;
|
||||
using Graphics = OpenTK.Minimal.Graphics;
|
||||
#else
|
||||
using Graphics = System.Drawing.Graphics;
|
||||
#endif
|
||||
|
||||
class CarbonGLNative : INativeWindow
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue