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
|
// Copyright 2020 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
#include "render/Material.h"
// ispc shared
#include "AlloyShared.h"
namespace ospray {
namespace pathtracer {
struct Alloy : public AddStructShared<Material, ispc::Alloy>
{
Alloy(api::ISPCDevice &device);
virtual std::string toString() const override;
virtual void commit() override;
private:
MaterialParam3f color;
MaterialParam3f edgeColor;
MaterialParam1f roughness;
};
} // namespace pathtracer
} // namespace ospray
|