MCPcopy Create free account
hub / github.com/NatronGitHub/Natron / minimalNonMarkedRects

Method minimalNonMarkedRects

Engine/Image.cpp:479–492  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

477}
478
479void
480Bitmap::minimalNonMarkedRects(const RectI & roi,
481 std::list<RectI>& ret) const
482{
483 if (_dirtyZoneSet) {
484 RectI realRoi;
485 if ( !roi.intersect(_dirtyZone, &realRoi) ) {
486 return;
487 }
488 minimalNonMarkedRects_internal<0>(realRoi, _bounds, _map, ret, NULL);
489 } else {
490 minimalNonMarkedRects_internal<0>(roi, _bounds, _map, ret, NULL);
491 }
492}
493
494#if NATRON_ENABLE_TRIMAP
495RectI

Callers 2

TESTFunction · 0.80
getRestToRenderMethod · 0.80

Calls 1

intersectMethod · 0.45

Tested by 1

TESTFunction · 0.64