Added GraphModuleFactory/SwapchainModule, but can't run
This commit is contained in:
22
inc/hgl/graph/module/SwapchainModule.h
Normal file
22
inc/hgl/graph/module/SwapchainModule.h
Normal 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
|
Reference in New Issue
Block a user