Fixed SHRenderGraph not moving the batcher

This commit is contained in:
Kah Wei 2022-09-26 00:08:32 +08:00
parent 8649833604
commit a5c804ca8b
1 changed files with 3 additions and 0 deletions

View File

@ -530,6 +530,8 @@ namespace SHADE
, executed{ rhs.executed }
, ptrToResources{ rhs.ptrToResources }
, pipelineLibrary{ std::move(rhs.pipelineLibrary) }
, batcher { std::move(rhs.batcher) }
{
rhs.renderpass = {};
}
@ -551,6 +553,7 @@ namespace SHADE
subpassIndexing = std::move(rhs.subpassIndexing);
ptrToResources = std::move(rhs.ptrToResources);
pipelineLibrary = std::move(rhs.pipelineLibrary);
batcher = std::move(rhs.batcher);
rhs.renderpass = {};