| 67 | |
| 68 | //! Create an ispc-side AmbientLight object |
| 69 | extern "C" void *AmbientLight_create() |
| 70 | { |
| 71 | AmbientLight* self = (AmbientLight*) alignedUSMMalloc(sizeof(AmbientLight),16); |
| 72 | AmbientLight_Constructor(self, Vec3fa(1.f)); |
| 73 | return self; |
| 74 | } |
| 75 | |
| 76 | //! Set the parameters of an ispc-side AmbientLight object |
| 77 | extern "C" void AmbientLight_set(void* super, |
no test coverage detected