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 50 51
|
// Copyright 2019 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
// ospray
#include "Planes.h"
#include "common/Data.h"
#ifndef OSPRAY_TARGET_SYCL
// ispc-generated files
#include "geometry/Planes_ispc.h"
#else
namespace ispc {
void Planes_bounds(const RTCBoundsFunctionArguments *args);
}
#endif
namespace ospray {
Planes::Planes(api::ISPCDevice &device)
: AddStructShared(device.getDRTDevice(), device, FFG_PLANE)
{
#ifndef OSPRAY_TARGET_SYCL
getSh()->super.postIntersect =
reinterpret_cast<ispc::Geometry_postIntersectFct>(
ispc::Planes_postIntersect_addr());
#endif
}
std::string Planes::toString() const
{
return "ospray::Planes";
}
void Planes::commit()
{
coeffsData = getParamDataT<vec4f>("plane.coefficients", true);
boundsData = getParamDataT<box3f>("plane.bounds");
createEmbreeUserGeometry((RTCBoundsFunction)&ispc::Planes_bounds);
getSh()->coeffs = *ispc(coeffsData);
getSh()->bounds = *ispc(boundsData);
getSh()->super.numPrimitives = numPrimitives();
postCreationInfo();
}
size_t Planes::numPrimitives() const
{
return coeffsData ? coeffsData->size() : 0;
}
} // namespace ospray
|