| 588 | } |
| 589 | |
| 590 | const FrameViewRequest* |
| 591 | NodeFrameRequest::getFrameViewRequest(double time, |
| 592 | ViewIdx view) const |
| 593 | { |
| 594 | for (NodeFrameViewRequestData::const_iterator it = frames.begin(); it != frames.end(); ++it) { |
| 595 | if (it->first.time == time) { |
| 596 | if ( (it->first.view == -1) || (it->first.view == view) ) { |
| 597 | return &it->second; |
| 598 | } |
| 599 | } |
| 600 | } |
| 601 | |
| 602 | return 0; |
| 603 | } |
| 604 | |
| 605 | bool |
| 606 | NodeFrameRequest::getFrameViewCanonicalRoI(double time, |
no test coverage detected