summaryrefslogtreecommitdiff
path: root/quantum/rgb_matrix_runners/effect_runner_sin_cos_i.h
diff options
context:
space:
mode:
authorRyan Caltabiano <rcalt2vt@gmail.com>2019-05-19 23:12:29 -0500
committerDrashna Jaelre <drashna@live.com>2019-07-12 07:39:35 -0700
commitcf215487ba35c6754cd1c52bb900a46bb52ed3a3 (patch)
tree1eb5341becef835bb2ca34a7a3066fe8e26d803c /quantum/rgb_matrix_runners/effect_runner_sin_cos_i.h
parente717dcaa09143615ae0b46bf625621f67a7b55ce (diff)
Switching rgb_config_t to use HSV struct
Diffstat (limited to 'quantum/rgb_matrix_runners/effect_runner_sin_cos_i.h')
-rw-r--r--quantum/rgb_matrix_runners/effect_runner_sin_cos_i.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/quantum/rgb_matrix_runners/effect_runner_sin_cos_i.h b/quantum/rgb_matrix_runners/effect_runner_sin_cos_i.h
index 54e4c6d866..e68a7a968c 100644
--- a/quantum/rgb_matrix_runners/effect_runner_sin_cos_i.h
+++ b/quantum/rgb_matrix_runners/effect_runner_sin_cos_i.h
@@ -1,18 +1,16 @@
#pragma once
-typedef void (*sin_cos_i_f)(HSV* hsv, int8_t sin, int8_t cos, uint8_t i, uint8_t time);
+typedef HSV (*sin_cos_i_f)(HSV hsv, int8_t sin, int8_t cos, uint8_t i, uint8_t time);
bool effect_runner_sin_cos_i(effect_params_t* params, sin_cos_i_f effect_func) {
RGB_MATRIX_USE_LIMITS(led_min, led_max);
- HSV hsv = { rgb_matrix_config.hue, rgb_matrix_config.sat, rgb_matrix_config.val };
uint16_t time = scale16by8(g_rgb_counters.tick, rgb_matrix_config.speed / 4);
int8_t cos_value = cos8(time) - 128;
int8_t sin_value = sin8(time) - 128;
for (uint8_t i = led_min; i < led_max; i++) {
RGB_MATRIX_TEST_LED_FLAGS();
- effect_func(&hsv, cos_value, sin_value, i, time);
- RGB rgb = hsv_to_rgb(hsv);
+ RGB rgb = hsv_to_rgb(effect_func(rgb_matrix_config.hsv, cos_value, sin_value, i, time));
rgb_matrix_set_color(i, rgb.r, rgb.g, rgb.b);
}
return led_max < DRIVER_LED_TOTAL;