disable thread pausing when render tasks exist

This commit is contained in:
James Seibel
2026-03-27 07:00:38 -05:00
parent 13895fec51
commit 2b8cddd424
@@ -179,13 +179,13 @@ public class ThreadPoolUtil
return false;
}
PriorityTaskPicker.Executor executor = getRenderLoadingExecutor();
if (executor != null
&& executor.getQueueSize() > 0)
{
// pause if LODs are being loaded for rendering
return false;
}
//PriorityTaskPicker.Executor executor = getRenderLoadingExecutor();
//if (executor != null
// && executor.getQueueSize() > 0)
//{
// // pause if LODs are being loaded for rendering
// return false;
//}
return true;
}