| 541 | } |
| 542 | |
| 543 | mx::FilePath Viewer::getBaseOutputPath() |
| 544 | { |
| 545 | mx::FilePath baseFilename = _searchPath.find(_materialFilename); |
| 546 | baseFilename.removeExtension(); |
| 547 | mx::FilePath outputPath = mx::getEnviron("MATERIALX_VIEW_OUTPUT_PATH"); |
| 548 | if (!outputPath.isEmpty()) |
| 549 | { |
| 550 | baseFilename = outputPath / baseFilename.getBaseName(); |
| 551 | } |
| 552 | return baseFilename; |
| 553 | } |
| 554 | |
| 555 | mx::ElementPredicate Viewer::getElementPredicate() |
| 556 | { |
nothing calls this directly
no test coverage detected