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
|
// Copyright 2009 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
#pragma once
#include "Geometry.h"
// ispc shared
#include "SpheresShared.h"
namespace ospray {
struct OSPRAY_SDK_INTERFACE Spheres
: public AddStructShared<Geometry, ispc::Spheres>
{
Spheres(api::ISPCDevice &device);
virtual ~Spheres() override = default;
virtual std::string toString() const override;
virtual void commit() override;
virtual size_t numPrimitives() const override;
protected:
float radius{.01f}; // default radius, if no per-sphere radius
Ref<const DataT<vec3f>> vertexData;
Ref<const DataT<float>> radiusData;
Ref<const DataT<vec2f>> texcoordData;
// Embree's layout for sphere point uses interleaved position and
// radius, each sphere is stored as x, y, z, r. OSPRay 2's format is not
// interleaved, so we should deprecate the non-interleaved format. This array
// is used to reference the interleaved data for the app or the interleaved
// data the geometry creates when using the deprecated parameters
Ref<const DataT<vec4f>> sphereData;
Ref<const DataT<vec3f>> normalData;
OSPSphereType sphereType{OSP_UNKNOWN_SPHERE_TYPE};
};
} // namespace ospray
|