| 75 | |
| 76 | //! Set the parameters of an ispc-side AmbientLight object |
| 77 | extern "C" void AmbientLight_set(void* super, |
| 78 | const Vec3fa& radiance) |
| 79 | { |
| 80 | AmbientLight* self = (AmbientLight*)super; |
| 81 | self->radiance = radiance; |
| 82 | } |
| 83 | |
| 84 | } // namespace embree |