mirror of
https://github.com/overte-org/overte.git
synced 2025-05-08 06:08:56 +02:00
27 lines
987 B
C++
27 lines
987 B
C++
//
|
|
// Created by AndrewMeadows 2017.01.17
|
|
// Copyright 2013-2017 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_CauterizedMeshPartPayload_h
|
|
#define hifi_CauterizedMeshPartPayload_h
|
|
|
|
#include "MeshPartPayload.h"
|
|
|
|
class CauterizedMeshPartPayload : public ModelMeshPartPayload {
|
|
public:
|
|
CauterizedMeshPartPayload(ModelPointer model, int meshIndex, int partIndex, int shapeIndex, const Transform& transform, const Transform& offsetTransform);
|
|
|
|
void updateTransformForCauterizedMesh(const Transform& renderTransform, const gpu::BufferPointer& buffer);
|
|
|
|
void bindTransform(gpu::Batch& batch, const render::ShapePipeline::LocationsPointer locations, RenderArgs::RenderMode renderMode) const override;
|
|
|
|
private:
|
|
gpu::BufferPointer _cauterizedClusterBuffer;
|
|
Transform _cauterizedTransform;
|
|
};
|
|
|
|
#endif // hifi_CauterizedMeshPartPayload_h
|