Add a using declaration to help differentiate between OpenTK.Graphics and System.Drawing.Graphics.
This commit is contained in:
parent
a12471c144
commit
b5973ddd7f
2 changed files with 8 additions and 5 deletions
|
@ -11,6 +11,8 @@ using System.Drawing;
|
||||||
|
|
||||||
namespace OpenTK.Fonts
|
namespace OpenTK.Fonts
|
||||||
{
|
{
|
||||||
|
using Graphics = System.Drawing.Graphics;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Represents a single character of a specific Font.
|
/// Represents a single character of a specific Font.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -7,20 +7,21 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
//using System.Drawing;
|
|
||||||
using System.Drawing.Text;
|
using System.Drawing.Text;
|
||||||
|
using System.Drawing;
|
||||||
|
using System.Drawing.Imaging;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
using System.Diagnostics;
|
||||||
|
|
||||||
using OpenTK.Math;
|
using OpenTK.Math;
|
||||||
using OpenTK.OpenGL;
|
using OpenTK.OpenGL;
|
||||||
using OpenTK.OpenGL.Enums;
|
using OpenTK.OpenGL.Enums;
|
||||||
using System.Drawing.Imaging;
|
|
||||||
using OpenTK.Platform;
|
using OpenTK.Platform;
|
||||||
using System.Drawing;
|
|
||||||
using System.Runtime.InteropServices;
|
|
||||||
using System.Diagnostics;
|
|
||||||
|
|
||||||
namespace OpenTK.Fonts
|
namespace OpenTK.Fonts
|
||||||
{
|
{
|
||||||
|
using Graphics = System.Drawing.Graphics;
|
||||||
|
|
||||||
public class TextureFont : IFont
|
public class TextureFont : IFont
|
||||||
{
|
{
|
||||||
Font font;
|
Font font;
|
||||||
|
|
Loading…
Reference in a new issue