Definition at line 42 of file frame.cpp.
42 {
45 fl::u32 count = 0;
46 for (uint16_t h = 0; h < height; ++h) {
47 for (uint16_t w = 0; w < width; ++w) {
48 fl::u32 in_idx =
xyMap(w, h);
49 fl::u32 out_idx = count++;
52 "Frame::drawXY: in index out of range: " << in_idx);
53 continue;
54 }
57 "Frame::drawXY: out index out of range: " << out_idx);
58 continue;
59 }
60 switch (draw_mode) {
63 break;
64 }
68 break;
69 }
70 }
71 }
72 }
73}
fl::vector< CRGB, fl::allocator_psram< CRGB > > mRgb
const size_t mPixelsCount
@ DRAW_MODE_BLEND_BY_MAX_BRIGHTNESS
static CRGB blendAlphaMaxChannel(const CRGB &upper, const CRGB &lower)
References CRGB::blendAlphaMaxChannel(), fl::DRAW_MODE_BLEND_BY_MAX_BRIGHTNESS, fl::DRAW_MODE_OVERWRITE, FASTLED_WARN, leds, mPixelsCount, mRgb, and xyMap.