Raise priority of occlusion task

Having this at a higher priority than section render tasks seems to give better results anecdotally
This commit is contained in:
Jason Penilla
2024-10-23 15:38:59 -07:00
parent b5b6e38cb7
commit 500c0777f8

View File

@@ -50,7 +50,7 @@ abstract class SectionOcclusionGraphMixin {
} catch (final Throwable throwable) {
future.completeExceptionally(throwable);
}
}, Priority.NORMAL);
}, Priority.HIGH); // Higher than SectionRenderDispatcherMixin#changeExecutor
return future;
}
}