mirror of https://github.com/SixLabors/ImageSharp
2 changed files with 39 additions and 1 deletions
@ -0,0 +1,22 @@ |
|||
// Copyright (c) Six Labors and contributors.
|
|||
// Licensed under the Apache License, Version 2.0.
|
|||
|
|||
using System.Collections.Generic; |
|||
|
|||
namespace SixLabors.ImageSharp.Formats.WebP |
|||
{ |
|||
internal class ColorCache |
|||
{ |
|||
/// <summary>
|
|||
/// Color entries.
|
|||
/// </summary>
|
|||
public List<uint> Colors { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// Hash shift: 32 - hashBits.
|
|||
/// </summary>
|
|||
public uint HashShift { get; set; } |
|||
|
|||
public uint HashBits { get; set; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue