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
|
// Copyright 2020 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
#include "render/Material.h"
// ispc shared
#include "OBJShared.h"
namespace ospray {
namespace pathtracer {
struct OBJMaterial : public AddStructShared<Material, ispc::OBJ>
{
OBJMaterial(api::ISPCDevice &device);
virtual std::string toString() const override;
virtual void commit() override;
private:
Ref<Texture> ref_bumpTex;
MaterialParam1f d;
MaterialParam3f Kd;
MaterialParam3f Ks;
MaterialParam1f Ns;
};
} // namespace pathtracer
} // namespace ospray
|