MayaFlux 0.1.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ VKGraphicsPipeline() [3/3]

MayaFlux::Core::VKGraphicsPipeline::VKGraphicsPipeline ( VKGraphicsPipeline &&  other)
noexcept

Definition at line 143 of file VKGraphicsPipeline.cpp.

144 : m_device(other.m_device)
145 , m_pipeline(other.m_pipeline)
146 , m_layout(other.m_layout)
147 , m_config(std::move(other.m_config))
148{
149 other.m_device = nullptr;
150 other.m_pipeline = nullptr;
151 other.m_layout = nullptr;
152}