Merge pull request #264 from Frassle/minimal

Remove NO_SYSDRAWING, replace with MINIMAL
This commit is contained in:
Fraser Waters 2015-08-10 21:38:18 +01:00
commit 8e7d66a2f4
7 changed files with 7 additions and 7 deletions

View file

@ -437,7 +437,7 @@ namespace OpenTK.Graphics.ES20
{ {
GL.Viewport(rectangle.X, rectangle.Y, rectangle.Width, rectangle.Height); GL.Viewport(rectangle.X, rectangle.Y, rectangle.Width, rectangle.Height);
} }
#if NO_SYSDRAWING #if MINIMAL
public static void Viewport(OpenTK.Point location, OpenTK.Size size) public static void Viewport(OpenTK.Point location, OpenTK.Size size)
{ {
GL.Viewport(location.X, location.Y, size.Width, size.Height); GL.Viewport(location.X, location.Y, size.Width, size.Height);

View file

@ -428,7 +428,7 @@ namespace OpenTK.Graphics.ES30
{ {
GL.Viewport(rectangle.X, rectangle.Y, rectangle.Width, rectangle.Height); GL.Viewport(rectangle.X, rectangle.Y, rectangle.Width, rectangle.Height);
} }
#if NO_SYSDRAWING #if MINIMAL
public static void Viewport(OpenTK.Point location, OpenTK.Size size) public static void Viewport(OpenTK.Point location, OpenTK.Size size)
{ {
GL.Viewport(location.X, location.Y, size.Width, size.Height); GL.Viewport(location.X, location.Y, size.Width, size.Height);

View file

@ -1101,7 +1101,7 @@ namespace OpenTK.Graphics.OpenGL
{ {
GL.Viewport(rectangle.X, rectangle.Y, rectangle.Width, rectangle.Height); GL.Viewport(rectangle.X, rectangle.Y, rectangle.Width, rectangle.Height);
} }
#if NO_SYSDRAWING #if MINIMAL
public static void Viewport(OpenTK.Point location, OpenTK.Size size) public static void Viewport(OpenTK.Point location, OpenTK.Size size)
{ {
GL.Viewport(location.X, location.Y, size.Width, size.Height); GL.Viewport(location.X, location.Y, size.Width, size.Height);

View file

@ -437,7 +437,7 @@ namespace OpenTK.Graphics.OpenGL4
{ {
GL.Viewport(rectangle.X, rectangle.Y, rectangle.Width, rectangle.Height); GL.Viewport(rectangle.X, rectangle.Y, rectangle.Width, rectangle.Height);
} }
#if NO_SYSDRAWING #if MINIMAL
public static void Viewport(OpenTK.Point location, OpenTK.Size size) public static void Viewport(OpenTK.Point location, OpenTK.Size size)
{ {
GL.Viewport(location.X, location.Y, size.Width, size.Height); GL.Viewport(location.X, location.Y, size.Width, size.Height);

View file

@ -31,7 +31,7 @@ using System.Text;
namespace OpenTK namespace OpenTK
{ {
#if NO_SYSDRAWING #if MINIMAL
/// <summary> /// <summary>
/// Defines a point on a two-dimensional plane. /// Defines a point on a two-dimensional plane.
/// </summary> /// </summary>

View file

@ -31,7 +31,7 @@ using System.Text;
namespace OpenTK namespace OpenTK
{ {
#if NO_SYSDRAWING #if MINIMAL
/// <summary> /// <summary>
/// Represents a rectangular region on a two-dimensional plane. /// Represents a rectangular region on a two-dimensional plane.
/// </summary> /// </summary>

View file

@ -31,7 +31,7 @@ using System.Text;
namespace OpenTK namespace OpenTK
{ {
#if NO_SYSDRAWING #if MINIMAL
/// <summary> /// <summary>
/// Stores the width and height of a rectangle. /// Stores the width and height of a rectangle.
/// </summary> /// </summary>