| 128 | } |
| 129 | |
| 130 | ISPCScene::~ISPCScene() |
| 131 | { |
| 132 | alignedUSMFree(geometries); |
| 133 | alignedUSMFree(materials); |
| 134 | |
| 135 | for (size_t i=0; i<numLights; i++) |
| 136 | Light_destroy(lights[i]); |
| 137 | alignedUSMFree(lights); |
| 138 | } |
| 139 | |
| 140 | Light* ISPCScene::convertLight(Ref<SceneGraph::LightNode> in) |
| 141 | { |
nothing calls this directly
no test coverage detected