mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
14 lines
304 B
C#
14 lines
304 B
C#
![]() |
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,
|
|||
|
}
|
|||
|
}
|