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
|
// Copyright 2009 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
#pragma once
#include "Geometry.h"
#include "common/Data.h"
// ispc shared
#include "MeshShared.h"
namespace ospray {
struct OSPRAY_SDK_INTERFACE Mesh : public AddStructShared<Geometry, ispc::Mesh>
{
Mesh(api::ISPCDevice &device);
virtual ~Mesh() override = default;
virtual std::string toString() const override;
virtual void commit() override;
virtual size_t numPrimitives() const override;
protected:
Ref<const DataT<vec3f>> vertexData;
Ref<const DataT<vec3f>> normalData;
Ref<const Data> colorData;
Ref<const DataT<vec2f>> texcoordData;
Ref<const Data> indexData;
bool motionBlur{false};
Ref<const DataT<const DataT<vec3f> *>> motionVertexData;
BufferSharedUq<vec3f *> motionVertexAddr;
Ref<const DataT<const DataT<vec3f> *>> motionNormalData;
BufferSharedUq<vec3f *> motionNormalAddr;
range1f time{0.0f, 1.0f};
};
} // namespace ospray
|