Legacy raw-pointer version of blur2d.
| 54 | |
| 55 | /// Legacy raw-pointer version of blur2d. |
| 56 | inline void blur2d(CRGB *leds, u8 width, u8 height, fract8 blur_amount, |
| 57 | const XYMap &xymap) FL_NOEXCEPT { |
| 58 | blur2d(fl::span<CRGB>(leds, u16(width) * u16(height)), width, height, |
| 59 | blur_amount, xymap); |
| 60 | } |
| 61 | |
| 62 | /// Legacy version of blur2d, which does not require an XYMap but instead |
| 63 | /// implicitly binds to XY() function. If you are hitting a linker error here, |