ui rendering works now

This commit is contained in:
Dynamitos
2022-04-18 18:08:38 +02:00
parent 796271f334
commit 14b816fc3c
25 changed files with 453 additions and 60 deletions
+6 -1
View File
@@ -1,6 +1,8 @@
#pragma once
#include "MinimalEngine.h"
#include "RenderHierarchy.h"
#include "Graphics/RenderPass/UIPass.h"
#include "Graphics/RenderPass/TextPass.h"
namespace Seele
{
@@ -12,9 +14,12 @@ class System
public:
System();
virtual ~System();
void update();
UIPassData getUIPassData();
TextPassData getTextPassData();
private:
PPanel rootPanel;
Array<RenderHierarchyUpdate*> updates;
RenderHierarchy hierarchy;
};
DEFINE_REF(System)
} // namespace UI