diff options
author | pommicket <pommicket@gmail.com> | 2023-09-07 19:30:51 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-09-07 22:50:11 -0400 |
commit | c7f323bf733160016247368883a58a9d467468b4 (patch) | |
tree | 6807738d64f94b9e0b5c136e6eb31f941fe7928d /ted.h | |
parent | 5cad1bee9b72610d9d97b5f97e7f1a245a2d2ba5 (diff) |
move color-related functions from util.c to color.c
Diffstat (limited to 'ted.h')
-rw-r--r-- | ted.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -807,6 +807,10 @@ float color_contrast_ratio(const float rgb1[3], const float rgb2[3]); /// /// the "alpha" components (i.e. lowest 8 bits) of `color1`, `color2` are ignored float color_contrast_ratio_u32(u32 color1, u32 color2); +void color_u32_to_floats(u32 rgba, float floats[4]); +vec4 color_u32_to_vec4(u32 rgba); +u32 color_vec4_to_u32(vec4 color); +u32 color_interpolate(float x, u32 color1, u32 color2); // === command.c === /// parse command |