Definition at line 175 of file raster_sparse.h.
175 {
176
177
178
179 u8 **cached =
mCache.find_value(pt);
180 if (cached) {
182 if (*val < value) {
183 *val = value;
184 }
185 return;
186 }
188
190 if (v == nullptr) {
191
192
194
195
197 }
198
200 return;
201 }
203 if (*v < value) {
204 *v = value;
205 }
206 return;
207 } else {
208
211 return;
212 }
213 }
static const int kMaxCacheSize
HashMap< vec2< u16 >, u8 *, FastHashKey, EqualToKey, kMaxCacheSize > mCache
References kMaxCacheSize, mCache, and mSparseGrid.
Referenced by rasterize(), and rasterize_internal().