mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
16 lines
260 B
C#
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
|
|
}
|
|
}
|