diff options
author | vin <git@vineetk.net> | 2024-01-15 19:40:26 -0500 |
---|---|---|
committer | vin <git@vineetk.net> | 2024-01-15 19:41:32 -0500 |
commit | a2c86b4053386fbc9a70674802c1157375b10066 (patch) | |
tree | cda5faee0c8c2298a0be47b8c1961bf16df595c9 /quantum/rgb_matrix/animations/cycle_out_in_dual_anim.h | |
parent | e33ae91091e425699f0cdfd4483023b07ec3ed5e (diff) |
remove rgb support
Diffstat (limited to 'quantum/rgb_matrix/animations/cycle_out_in_dual_anim.h')
-rw-r--r-- | quantum/rgb_matrix/animations/cycle_out_in_dual_anim.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/quantum/rgb_matrix/animations/cycle_out_in_dual_anim.h b/quantum/rgb_matrix/animations/cycle_out_in_dual_anim.h deleted file mode 100644 index 3cca45f27a..0000000000 --- a/quantum/rgb_matrix/animations/cycle_out_in_dual_anim.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifdef ENABLE_RGB_MATRIX_CYCLE_OUT_IN_DUAL -RGB_MATRIX_EFFECT(CYCLE_OUT_IN_DUAL) -# ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS - -static HSV CYCLE_OUT_IN_DUAL_math(HSV hsv, int16_t dx, int16_t dy, uint8_t time) { - dx = (k_rgb_matrix_center.x / 2) - abs8(dx); - uint8_t dist = sqrt16(dx * dx + dy * dy); - hsv.h = 3 * dist + time; - return hsv; -} - -bool CYCLE_OUT_IN_DUAL(effect_params_t* params) { - return effect_runner_dx_dy(params, &CYCLE_OUT_IN_DUAL_math); -} - -# endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS -#endif // ENABLE_RGB_MATRIX_CYCLE_OUT_IN_DUAL |