foot/lab.h

14 lines
223 B
C
Raw Normal View History

2026-02-19 19:27:51 +08:00
#pragma once
#include <stdint.h>
struct lab {
float l;
float a;
float b;
};
struct lab lab_from_rgb(uint32_t rgb);
uint32_t lab_to_rgb(struct lab c);
struct lab lab_lerp(float t, struct lab a, struct lab b);