mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-27 06:45:48 +00:00
29 lines
683 B
C#
29 lines
683 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Platform.X11
|
|
{
|
|
class X11GdiPlusInternals : IGdiPlusInternals
|
|
{
|
|
#region IGdiPlusInternals Members
|
|
|
|
public IntPtr GetNativeGraphics(System.Drawing.Graphics graphics)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public IntPtr GetNativeFont(System.Drawing.Font font)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public IntPtr GetNativeStringFormat(System.Drawing.StringFormat format)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|