summaryrefslogtreecommitdiff
path: root/quantum/rgb_matrix/animations/solid_reactive_simple_anim.h
diff options
context:
space:
mode:
authorvin <git@vineetk.net>2024-01-15 19:40:26 -0500
committervin <git@vineetk.net>2024-01-15 19:41:32 -0500
commita2c86b4053386fbc9a70674802c1157375b10066 (patch)
treecda5faee0c8c2298a0be47b8c1961bf16df595c9 /quantum/rgb_matrix/animations/solid_reactive_simple_anim.h
parente33ae91091e425699f0cdfd4483023b07ec3ed5e (diff)
remove rgb support
Diffstat (limited to 'quantum/rgb_matrix/animations/solid_reactive_simple_anim.h')
-rw-r--r--quantum/rgb_matrix/animations/solid_reactive_simple_anim.h20
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