13 lines
245 B
C#
Raw Normal View History

2025-04-18 19:18:15 +08:00
namespace unity.libwebp.Interop
{
public enum WebPPreset
{
WEBP_PRESET_DEFAULT = 0,
WEBP_PRESET_PICTURE,
WEBP_PRESET_PHOTO,
WEBP_PRESET_DRAWING,
WEBP_PRESET_ICON,
WEBP_PRESET_TEXT,
}
}