On Fri Nov 11 00:26:23 2022 +0000, Zebediah Figura wrote:
How much of a performance difference does it make that GetNextSample() is not serialized?
It wasn't so much a matter of performance but rather to allow waiting on samples concurrently. `GetNextSample` will call the allocation callbacks, which may block.
I'm not completely sure anymore in which case it was needed, maybe it was some pool size issue. I'll try removing it for now.