SimplexEngine
SimplexEngine copied to clipboard
[FEATURE] Implement a thread pool system
Currently, rasterized regions can be multithreaded by creating new threads every frame. While this can be ok when working with low thread counts, this becomes very costly when using dozens of cores while trying to render the scene at a high refresh rate.
We should add a thread pool and queue region rasterization tasks each frame, without having to create new threads.