MCPcopy Create free account
hub / github.com/MrKepzie/Natron / getFrameViewRequest

Method getFrameViewRequest

Engine/ParallelRenderArgs.cpp:582–595  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

580}
581
582const FrameViewRequest*
583NodeFrameRequest::getFrameViewRequest(double time,
584 ViewIdx view) const
585{
586 for (NodeFrameViewRequestData::const_iterator it = frames.begin(); it != frames.end(); ++it) {
587 if (it->first.time == time) {
588 if ( (it->first.view == -1) || (it->first.view == view) ) {
589 return &it->second;
590 }
591 }
592 }
593
594 return 0;
595}
596
597bool
598NodeFrameRequest::getFrameViewCanonicalRoI(double time,

Callers 3

getImageMethod · 0.80
renderRoIMethod · 0.80

Calls 2

beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected