ULRE/inc/hgl/graph/module/SwapchainModule.h

22 lines
373 B
C
Raw Normal View History

#pragma once
#include<hgl/graph/module/RenderModule.h>
VK_NAMESPACE_BEGIN
class SwapchainModule:public GraphModule
{
2024-10-29 00:50:32 +08:00
Swapchain *swapchain=nullptr;
RTSwapchain *swapchain_rt=nullptr;
public:
GRAPH_MODULE_CONSTRUCT(Swapchain)
virtual ~SwapchainModule()=default;
2024-10-29 00:50:32 +08:00
bool Init() override;
};//class SwapchainModule:public RenderModule
VK_NAMESPACE_END