[BIG MILESTONE] render framework first test ok! can draw!

This commit is contained in:
2025-01-25 17:17:55 +08:00
parent aafdbdd4ea
commit 2e53b48fff
8 changed files with 125 additions and 37 deletions

View File

@@ -24,6 +24,8 @@ class RenderFramework:public io::WindowEvent
GPUDevice * device =nullptr;
RenderResource * render_resource =nullptr;
private:
double last_time =0;
@@ -47,6 +49,8 @@ public:
GPUDevice * GetDevice (){return device;}
GPUDeviceAttribute * GetDeviceAttribute (){return device->GetDeviceAttribute();}
RenderResource * GetRenderResource (){return render_resource;}
public:
GraphModuleManager * GetModuleManager (){return module_manager;}