mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
14 lines
204 B
C#
14 lines
204 B
C#
namespace CPF.Mac.AppKit
|
|
{
|
|
public enum NSGLTextureCubeMap
|
|
{
|
|
None = 0,
|
|
PositiveX = 34069,
|
|
PositiveY = 34071,
|
|
PositiveZ = 34073,
|
|
NegativeX = 34070,
|
|
NegativeY = 34071,
|
|
NegativeZ = 34074
|
|
}
|
|
}
|