Files
davinci2/source/core/include/pipe/dvc_renderable.h
T
2025-06-11 22:45:11 +08:00

22 lines
352 B
C++

#pragma once
#include "dvc_config.h"
#include "math/dvc_matrix4.h"
#include "pipe/dvc_render_step_IA.h"
DV_CORE_BEGIN_NAMESPACE
class Renderable
{
public:
virtual bool buildAssemberNode(InputAssemberStep::Node& node) const = 0;
protected:
fMatrix4 m_worldTransform;
public:
Renderable(const fMatrix4& worldTransform);
};
DV_CORE_END_NAMESPACE