Skip to content

Commit

Permalink
Merge pull request opentk#264 from Frassle/minimal
Browse files Browse the repository at this point in the history
Remove NO_SYSDRAWING, replace with MINIMAL
  • Loading branch information
Frassle committed Aug 10, 2015
2 parents b82b2c0 + 9ad1858 commit 8e7d66a
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Source/OpenTK/Graphics/ES20/Helper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ public static void Viewport(Rectangle rectangle)
{
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)
{
GL.Viewport(location.X, location.Y, size.Width, size.Height);
Expand Down
2 changes: 1 addition & 1 deletion Source/OpenTK/Graphics/ES30/Helper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ public static void Viewport(Rectangle rectangle)
{
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)
{
GL.Viewport(location.X, location.Y, size.Width, size.Height);
Expand Down
2 changes: 1 addition & 1 deletion Source/OpenTK/Graphics/OpenGL/GLHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1101,7 +1101,7 @@ public static void Viewport(Rectangle rectangle)
{
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)
{
GL.Viewport(location.X, location.Y, size.Width, size.Height);
Expand Down
2 changes: 1 addition & 1 deletion Source/OpenTK/Graphics/OpenGL4/Helper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ public static void Viewport(Rectangle rectangle)
{
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)
{
GL.Viewport(location.X, location.Y, size.Width, size.Height);
Expand Down
2 changes: 1 addition & 1 deletion Source/OpenTK/Math/Point.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

namespace OpenTK
{
#if NO_SYSDRAWING
#if MINIMAL
/// <summary>
/// Defines a point on a two-dimensional plane.
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion Source/OpenTK/Math/Rectangle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

namespace OpenTK
{
#if NO_SYSDRAWING
#if MINIMAL
/// <summary>
/// Represents a rectangular region on a two-dimensional plane.
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion Source/OpenTK/Math/Size.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

namespace OpenTK
{
#if NO_SYSDRAWING
#if MINIMAL
/// <summary>
/// Stores the width and height of a rectangle.
/// </summary>
Expand Down

0 comments on commit 8e7d66a

Please sign in to comment.