CPF/CPF.Mac/OpenGL/CGLOpenGLProfile.cs

14 lines
304 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
namespace CPF.Mac.OpenGL
{
internal enum CGLOpenGLProfile {
kCGLOGLPVersion_Legacy = 0x1000,
kCGLOGLPVersion_3_2_Core = 0x3200,
kCGLOGLPVersion_GL3_Core = 0x3200,
kCGLOGLPVersion_GL4_Core = 0x4100,
}
}