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
Родитель b82b2c0e8f 9ad18583fe
Коммит 8e7d66a2f4
7 изменённых файлов: 7 добавлений и 7 удалений

Просмотреть файл

@ -437,7 +437,7 @@ namespace OpenTK.Graphics.ES20
{
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);

Просмотреть файл

@ -428,7 +428,7 @@ namespace OpenTK.Graphics.ES30
{
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);

Просмотреть файл

@ -1101,7 +1101,7 @@ namespace OpenTK.Graphics.OpenGL
{
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);

Просмотреть файл

@ -437,7 +437,7 @@ namespace OpenTK.Graphics.OpenGL4
{
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);

Просмотреть файл

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

Просмотреть файл

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

Просмотреть файл

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