2D移植完成

This commit is contained in:
2026-09-03 12:38:51 +08:00
parent 57aff3568c
commit d46eea203e
24 changed files with 1318 additions and 772 deletions
@@ -1,6 +1,6 @@
#pragma once
#include "task_flow/export/export.h"
namespace aethera::renderable {
using Task_Graph = task_flow::Task_Graph_Build_Facade;
using Task_Graph = task_flow::Task_Graph_Facade;
proxy<Task_Graph> make_task_graph(std::string name);
} // namespace aethera::renderable
@@ -2,6 +2,7 @@
#include "task_flow/export/export.h"
#include <utility>
namespace aethera {
/* Renderable 需要完整建图 facade,以便具体图元保留自己的内部 DAG 依赖。 */
proxy<renderable::Task_Graph> renderable::make_task_graph(std::string name) {
return task_flow::make_task_graph(std::move(name));
}