| 53 | } |
| 54 | |
| 55 | void DistributedRaycastRenderer::commit() |
| 56 | { |
| 57 | Renderer::commit(); |
| 58 | |
| 59 | getSh()->aoSamples = getParam<int>("aoSamples", 0); |
| 60 | getSh()->aoRadius = getParam<float>("aoDistance", 1e20f); |
| 61 | getSh()->shadowsEnabled = getParam<bool>("shadows", false); |
| 62 | getSh()->volumeSamplingRate = getParam<float>("volumeSamplingRate", 1.f); |
| 63 | } |
| 64 | |
| 65 | std::shared_ptr<TileOperation> DistributedRaycastRenderer::tileOperation() |
| 66 | { |