Definition at line 327 of file raster_sparse.h.
327 {
329 auto pt = it.first;
330 if (!
xymap.has(pt.x, pt.y)) {
331 continue;
332 }
333 u32 index =
xymap(pt.x, pt.y);
334 const CRGB &color = it.second;
335
336 if (color.r != 0 || color.g != 0 || color.b != 0) {
337 visitor.draw(pt, index, color);
338 }
339 }
340 }
References mSparseGrid, and xymap.