diff options
Diffstat (limited to 'quantum/rgb_matrix/animations/solid_reactive_simple_anim.h')
-rw-r--r-- | quantum/rgb_matrix/animations/solid_reactive_simple_anim.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/quantum/rgb_matrix/animations/solid_reactive_simple_anim.h b/quantum/rgb_matrix/animations/solid_reactive_simple_anim.h deleted file mode 100644 index 7f4e48747a..0000000000 --- a/quantum/rgb_matrix/animations/solid_reactive_simple_anim.h +++ /dev/null @@ -1,20 +0,0 @@ -#ifdef RGB_MATRIX_KEYREACTIVE_ENABLED -# ifdef ENABLE_RGB_MATRIX_SOLID_REACTIVE_SIMPLE -RGB_MATRIX_EFFECT(SOLID_REACTIVE_SIMPLE) -# ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS - -static HSV SOLID_REACTIVE_SIMPLE_math(HSV hsv, uint16_t offset) { -# ifdef RGB_MATRIX_SOLID_REACTIVE_GRADIENT_MODE - hsv.h = scale16by8(g_rgb_timer, qadd8(rgb_matrix_config.speed, 8) >> 4); -# endif - hsv.v = scale8(255 - offset, hsv.v); - return hsv; -} - -bool SOLID_REACTIVE_SIMPLE(effect_params_t* params) { - return effect_runner_reactive(params, &SOLID_REACTIVE_SIMPLE_math); -} - -# endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS -# endif // ENABLE_RGB_MATRIX_SOLID_REACTIVE_SIMPLE -#endif // RGB_MATRIX_KEYREACTIVE_ENABLED |