| 3415 | } |
| 3416 | |
| 3417 | void |
| 3418 | ViewerInstance::getTimelineBounds(int* first, |
| 3419 | int* last) const |
| 3420 | { |
| 3421 | if (_imp->uiContext) { |
| 3422 | _imp->uiContext->getViewerFrameRange(first, last); |
| 3423 | } else { |
| 3424 | *first = 0; |
| 3425 | *last = 0; |
| 3426 | } |
| 3427 | } |
| 3428 | |
| 3429 | int |
| 3430 | ViewerInstance::getMipMapLevelFromZoomFactor() const |
no test coverage detected