mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 01:20:42 +00:00
a2fa98becd
* QNetworkAccessManager is supposed to be asynchronous and threaded internally, but calling get() the first time can take multiple *seconds* while it initialises proxy data and loads ssl libraries. * Qt's threading rules are so strict it's impossible to feasibly move QNetworkAccessManager to another thread. * Instead we use Qt's cross-thread signals and slots to move the whole thing into a wrapper object. It's stupid.