mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-27 22:25:28 +00:00
24 lines
695 B
C#
Executable file
24 lines
695 B
C#
Executable file
using System;
|
|
|
|
namespace OpenTK.Platform.MacOS
|
|
{
|
|
enum NSOpenGLContextParameter
|
|
{
|
|
[Obsolete] SwapRectangle = 200,
|
|
[Obsolete] SwapRectangleEnable = 201,
|
|
[Obsolete] RasterizationEnable = 221,
|
|
SwapInterval = 222,
|
|
SurfaceOrder = 235,
|
|
SurfaceOpacity = 236,
|
|
[Obsolete] StateValidation = 301,
|
|
SurfaceBackingSize = 304, // Lion
|
|
[Obsolete] SurfaceSurfaceVolatile = 306,
|
|
ReclaimResources = 308, // Lion
|
|
CurrentRendererID = 309, // Lion
|
|
GpuVertexProcessing = 310, // Lion
|
|
GpuFragmentProcessing = 311, // Lion
|
|
HasDrawable = 314, // Lion
|
|
MpsSwapsInFlight = 315, // Lion
|
|
}
|
|
}
|