🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Advertisement

Latest Threading Activity

GPU dispatching of calls can be multithreaded without a reason to share GPU objects data such as render buffers. But you have 2 different contexts, you cannot batch them together as by picking what to share and what not.

2,147 views
Advertisement

Cacks said:
I didn't want to have to make new classes per queue

I recommend using object oriented design here. You need one new class, a locked queue, that is a queue. You can distribute the logic behind locking the queue all over your code, and get problems like you are experiencing because reasonin…

9,668 views
Advertisement
Advertisement