1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
// Copyright 2009 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
// ospray
#include "Boxes.h"
#include "common/Data.h"
#ifndef OSPRAY_TARGET_SYCL
// ispc-generated files
#include "geometry/Boxes_ispc.h"
#else
namespace ispc {
void Boxes_bounds(const RTCBoundsFunctionArguments *uniform args);
}
#endif
namespace ospray {
Boxes::Boxes(api::ISPCDevice &device)
: AddStructShared(device.getDRTDevice(), device, FFG_BOX)
{
#ifndef OSPRAY_TARGET_SYCL
getSh()->super.postIntersect =
reinterpret_cast<ispc::Geometry_postIntersectFct>(
ispc::Boxes_postIntersect_addr());
#endif
}
std::string Boxes::toString() const
{
return "ospray::Boxes";
}
void Boxes::commit()
{
boxData = getParamDataT<box3f>("box", true);
createEmbreeUserGeometry((RTCBoundsFunction)&ispc::Boxes_bounds);
getSh()->boxes = *ispc(boxData);
getSh()->super.numPrimitives = numPrimitives();
postCreationInfo();
}
size_t Boxes::numPrimitives() const
{
return boxData ? boxData->size() : 0;
}
} // namespace ospray
|