init commit

This commit is contained in:
2025-06-11 22:45:11 +08:00
commit 71307f3e53
115 changed files with 13922 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#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