| 13 | namespace ospray { |
| 14 | |
| 15 | void registerAllLights() |
| 16 | { |
| 17 | Light::registerType<AmbientLight>("ambient"); |
| 18 | Light::registerType<CylinderLight>("cylinder"); |
| 19 | Light::registerType<DirectionalLight>("distant"); |
| 20 | Light::registerType<HDRILight>("hdri"); |
| 21 | Light::registerType<PointLight>("sphere"); |
| 22 | Light::registerType<QuadLight>("quad"); |
| 23 | Light::registerType<SpotLight>("spot"); |
| 24 | Light::registerType<SunSkyLight>("sunSky"); |
| 25 | } |
| 26 | |
| 27 | } // namespace ospray |
no outgoing calls
no test coverage detected