| 32 | } |
| 33 | |
| 34 | __attribute__((noinline)) |
| 35 | void renderFP(FlowFieldFP &fx, CRGB *leds, int frames, int start_frame) { |
| 36 | for (int i = 0; i < frames; i++) { |
| 37 | uint32_t t = static_cast<uint32_t>((start_frame + i) * 33); |
| 38 | Fx::DrawContext ctx(t, leds); |
| 39 | fx.draw(ctx); |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | int main(int argc, char *argv[]) { |
| 44 | bool do_float = true; |