aboutsummaryrefslogtreecommitdiff
path: root/quantum/rgb_matrix.c
diff options
context:
space:
mode:
authorRyan Caltabiano <rcalt2vt@gmail.com>2019-05-19 08:34:25 -0500
committerDrashna Jaelre <drashna@live.com>2019-05-19 15:23:01 -0700
commitc9a7161d934979770792ff1e91ccfcc3508d240b (patch)
tree6d31cfad88b4124a0d3e3b10ed2bf4c404cf7064 /quantum/rgb_matrix.c
parente7af23788fbcff8e5bea896b458fb8da1639e66d (diff)
downloadqmk_firmware-c9a7161d934979770792ff1e91ccfcc3508d240b.tar.gz
qmk_firmware-c9a7161d934979770792ff1e91ccfcc3508d240b.zip
Reduce rgb matrix firmware size
Diffstat (limited to 'quantum/rgb_matrix.c')
-rw-r--r--quantum/rgb_matrix.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/quantum/rgb_matrix.c b/quantum/rgb_matrix.c
index a6a9549af..98baf5cb5 100644
--- a/quantum/rgb_matrix.c
+++ b/quantum/rgb_matrix.c
@@ -32,6 +32,14 @@
32 const point_t k_rgb_matrix_center = RGB_MATRIX_CENTER; 32 const point_t k_rgb_matrix_center = RGB_MATRIX_CENTER;
33#endif 33#endif
34 34
35// Generic effect runners
36#include "rgb_matrix_runners/effect_runner_dx_dy_dist.h"
37#include "rgb_matrix_runners/effect_runner_dx_dy.h"
38#include "rgb_matrix_runners/effect_runner_i.h"
39#include "rgb_matrix_runners/effect_runner_sin_cos_i.h"
40#include "rgb_matrix_runners/effect_runner_reactive.h"
41#include "rgb_matrix_runners/effect_runner_reactive_splash.h"
42
35// ------------------------------------------ 43// ------------------------------------------
36// -----Begin rgb effect includes macros----- 44// -----Begin rgb effect includes macros-----
37#define RGB_MATRIX_EFFECT(name) 45#define RGB_MATRIX_EFFECT(name)