CPF/CPF.Skia/GlContexts/Glx/XVisualClass.cs
2023-11-21 23:05:03 +08:00

16 lines
260 B
C#

using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
namespace CPF.Skia
{
internal enum XVisualClass : int {
StaticGray = 0,
GrayScale = 1,
StaticColor = 2,
PseudoColor = 3,
TrueColor = 4,
DirectColor = 5
}
}