| 248 | } |
| 249 | |
| 250 | void FilmImpl::Parse(const luxrays::Properties &props) { |
| 251 | if (renderSession) |
| 252 | throw runtime_error("Film::Parse() can be used only with a stand alone Film"); |
| 253 | else |
| 254 | standAloneFilm->Parse(props); |
| 255 | } |
| 256 | |
| 257 | void FilmImpl::DeleteAllImagePipelines() { |
| 258 | if (renderSession) { |
no test coverage detected