MCPcopy Create free account
hub / github.com/FastLED/FastLED / blur2d

Function blur2d

src/fl/gfx/blur.h:56–60  ·  view source on GitHub ↗

Legacy raw-pointer version of blur2d.

Source from the content-addressed store, hash-verified

54
55/// Legacy raw-pointer version of blur2d.
56inline 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,

Callers 4

drawMethod · 0.50
drawMethod · 0.50
blur.cppFile · 0.50
loopFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected