mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 17:45:33 +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
|
|||
|
}
|
|||
|
}
|