Added GraphModuleFactory/SwapchainModule, but can't run

This commit is contained in:
2024-10-23 02:09:01 +08:00
parent c3522da518
commit 7d586182c8
10 changed files with 196 additions and 26 deletions

View File

@@ -0,0 +1,22 @@
#pragma once
#include<hgl/graph/module/RenderModule.h>
VK_NAMESPACE_BEGIN
class SwapchainModule:public GraphModule
{
public:
static const char *GetModuleName(){return "Swapchain";}
public:
NO_COPY_NO_MOVE(SwapchainModule);
SwapchainModule(GraphModuleManager *gmm):GraphModule(gmm,"Swapchain"){}
virtual ~SwapchainModule()=default;
};//class SwapchainModule:public RenderModule
VK_NAMESPACE_END