Definition at line 70 of file raster_sparse.cpp.hpp.
70 {
72 auto pt = it.first;
73 if (!
xymap.has(pt.x, pt.y)) {
74 continue;
75 }
76 u32 index =
xymap(pt.x, pt.y);
77 const CRGB &color = it.second;
78
79 if (color.r != 0 || color.g != 0 || color.b != 0) {
80 out[index] = color;
81 }
82 }
83}
References mSparseGrid, and xymap.