Singularity/Assets/EasyWebp/NativeWrapper/Interop/WebPDemuxState.cs

11 lines
222 B
C#
Raw Permalink Normal View History

2024-05-06 14:45:45 -04:00
namespace unity.libwebp.Interop
{
public enum WebPDemuxState
{
WEBP_DEMUX_PARSE_ERROR = -1,
WEBP_DEMUX_PARSING_HEADER = 0,
WEBP_DEMUX_PARSED_HEADER = 1,
WEBP_DEMUX_DONE = 2,
}
}