renderbackend: initialize queuer value

Leaving uninitialized could potentially cause issues.
This commit is contained in:
itsmattkc
2020-05-21 21:45:12 +10:00
parent 34fade9d81
commit 5212a6032a
2 changed files with 7 additions and 0 deletions
+5
View File
@@ -418,6 +418,11 @@ bool RenderBackend::ConformWaitInfo::operator==(const RenderBackend::ConformWait
&& rhs.affected_range == affected_range;
}
RenderBackend::RenderPool::RenderPool() :
queuer(0)
{
}
void RenderBackend::RenderPool::Init(ViewerOutput* v)
{
foreach (RenderWorker* instance, instances) {