diff options
| author | Nick Brassel <nick@tzarc.org> | 2020-08-05 15:11:06 +1000 |
|---|---|---|
| committer | James Young <18669334+noroadsleft@users.noreply.github.com> | 2020-08-29 14:30:02 -0700 |
| commit | c990dc1e6cdcabbfe280d60e981f9e7cc733d5db (patch) | |
| tree | 59941e361683e69d0c443115277d7a0488a1f83b /quantum/color.h | |
| parent | 200444f8d2c12ac04fd081745c74020c92d5da16 (diff) | |
| download | qmk_firmware-c990dc1e6cdcabbfe280d60e981f9e7cc733d5db.tar.gz qmk_firmware-c990dc1e6cdcabbfe280d60e981f9e7cc733d5db.zip | |
Add support for hsv->rgb conversion without using CIE curve. (#9856)
* Add support for hsv->rgb conversion without using CIE curve.
* Modify anavi/macropad8 to disable unicode (was unused), otherwise firmware size is too large.
Diffstat (limited to 'quantum/color.h')
| -rw-r--r-- | quantum/color.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/quantum/color.h b/quantum/color.h index 58d4f0407..5c5a0f0eb 100644 --- a/quantum/color.h +++ b/quantum/color.h | |||
| @@ -64,6 +64,7 @@ typedef struct PACKED { | |||
| 64 | #endif | 64 | #endif |
| 65 | 65 | ||
| 66 | RGB hsv_to_rgb(HSV hsv); | 66 | RGB hsv_to_rgb(HSV hsv); |
| 67 | RGB hsv_to_rgb_nocie(HSV hsv); | ||
| 67 | #ifdef RGBW | 68 | #ifdef RGBW |
| 68 | void convert_rgb_to_rgbw(LED_TYPE *led); | 69 | void convert_rgb_to_rgbw(LED_TYPE *led); |
| 69 | #endif | 70 | #endif |
