| 154 | } |
| 155 | |
| 156 | void FilmImpl::SaveOutputs() const { |
| 157 | if (renderSession) |
| 158 | renderSession->renderSession->SaveFilmOutputs(); |
| 159 | else |
| 160 | throw runtime_error("Film::SaveOutputs() can not be used with a stand alone Film"); |
| 161 | } |
| 162 | |
| 163 | void FilmImpl::SaveOutput(const std::string &fileName, const FilmOutputType type, const Properties &props) const { |
| 164 | GetSLGFilm()->Output(fileName, (slg::FilmOutputs::FilmOutputType)type, &props); |
no test coverage detected