summaryrefslogtreecommitdiff
path: root/quantum/rgb_matrix_animations/solid_color_anim.h
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/rgb_matrix_animations/solid_color_anim.h')
-rw-r--r--quantum/rgb_matrix_animations/solid_color_anim.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/quantum/rgb_matrix_animations/solid_color_anim.h b/quantum/rgb_matrix_animations/solid_color_anim.h
deleted file mode 100644
index 79d63cf133..0000000000
--- a/quantum/rgb_matrix_animations/solid_color_anim.h
+++ /dev/null
@@ -1,15 +0,0 @@
-RGB_MATRIX_EFFECT(SOLID_COLOR)
-#ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS
-
-bool SOLID_COLOR(effect_params_t* params) {
- RGB_MATRIX_USE_LIMITS(led_min, led_max);
-
- RGB rgb = rgb_matrix_hsv_to_rgb(rgb_matrix_config.hsv);
- for (uint8_t i = led_min; i < led_max; i++) {
- RGB_MATRIX_TEST_LED_FLAGS();
- rgb_matrix_set_color(i, rgb.r, rgb.g, rgb.b);
- }
- return led_max < DRIVER_LED_TOTAL;
-}
-
-#endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS