CPF/CPF.Mac/Mac/CoreGraphics/CGImageAlphaInfo.cs
2023-11-21 23:05:03 +08:00

15 lines
179 B
C#

namespace CPF.Mac.CoreGraphics
{
public enum CGImageAlphaInfo
{
None,
PremultipliedLast,
PremultipliedFirst,
Last,
First,
NoneSkipLast,
NoneSkipFirst,
Only
}
}