There might be double draws, so two draws of the same pixel within too short time.
This is due to the fact that the pixel randomization happenes once and the generated order is then sent to all threads, so all threads render the image in the same, albeit random order.
A probable solution is to randomize and combine on a per-thread-level
There might be double draws, so two draws of the same pixel within too short time.
This is due to the fact that the pixel randomization happenes once and the generated order is then sent to all threads, so all threads render the image in the same, albeit random order.
A probable solution is to randomize and combine on a per-thread-level