Add ImAnim bindings

This commit is contained in:
Haselnussbomber 2025-12-08 21:25:32 +01:00
parent e8485dee25
commit 2b5e2893c5
No known key found for this signature in database
GPG key ID: BB905BB49E7295D1
43 changed files with 4852 additions and 3 deletions

View file

@ -0,0 +1,29 @@
namespace Dalamud.Bindings.ImAnim;
public enum ImAnimColorSpace
{
/// <summary>
/// blend in sRGB (not physically linear)
/// </summary>
Srgb,
/// <summary>
/// sRGB<->linear, blend in linear, back to sRGB
/// </summary>
SrgbLinear,
/// <summary>
/// blend H/S/V (hue shortest arc), keep A linear
/// </summary>
Hsv,
/// <summary>
/// sRGB<->OKLAB, blend in OKLAB, back to sRGB
/// </summary>
Oklab,
/// <summary>
/// sRGB<->OKLCH (cylindrical OKLAB), blend in OKLCH, back to sRGB
/// </summary>
Oklch,
}