| 309 | } |
| 310 | |
| 311 | void Corkscrew::fillInputSurface(const CRGB& color) { |
| 312 | auto target_surface = getOrCreateInputSurface(); |
| 313 | for (fl::size i = 0; i < target_surface->size(); ++i) { |
| 314 | target_surface->span()[i] = color; |
| 315 | } |
| 316 | } |
| 317 | |
| 318 | void Corkscrew::draw(bool use_multi_sampling) { |
| 319 | // The draw method should map from the rectangular surface to the LED pixel data |
no test coverage detected