зеркало из https://github.com/stride3d/opentk.git
Merge pull request #264 from Frassle/minimal
Remove NO_SYSDRAWING, replace with MINIMAL
This commit is contained in:
Коммит
8e7d66a2f4
|
@ -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>
|
||||
|
|
Загрузка…
Ссылка в новой задаче