summaryrefslogtreecommitdiff
path: root/quantum/rgb_matrix/animations/solid_reactive_anim.h
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/rgb_matrix/animations/solid_reactive_anim.h')
-rw-r--r--quantum/rgb_matrix/animations/solid_reactive_anim.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/quantum/rgb_matrix/animations/solid_reactive_anim.h b/quantum/rgb_matrix/animations/solid_reactive_anim.h
deleted file mode 100644
index edf6041350..0000000000
--- a/quantum/rgb_matrix/animations/solid_reactive_anim.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifdef RGB_MATRIX_KEYREACTIVE_ENABLED
-# ifdef ENABLE_RGB_MATRIX_SOLID_REACTIVE
-RGB_MATRIX_EFFECT(SOLID_REACTIVE)
-# ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS
-
-static HSV SOLID_REACTIVE_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.h += qsub8(130, offset);
- return hsv;
-}
-
-bool SOLID_REACTIVE(effect_params_t* params) {
- return effect_runner_reactive(params, &SOLID_REACTIVE_math);
-}
-
-# endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS
-# endif // ENABLE_RGB_MATRIX_SOLID_REACTIVE
-#endif // RGB_MATRIX_KEYREACTIVE_ENABLED