Qt is not designer to have multi threaded rendering.
So if you use Qt "as is", the answer is no.
But are you sure you need rendering in different threads?
I can't think of a case where this should be needed.
You probably need graphical data crunching to be threaded, but the rendering of the data surely can be done in the main gui thread.
And there is no problem doing data crunching in threads, and feed the result to the main thread to be rendered.
I guess you meant it the other way around...Since QWidget inherits from QPixmap
Bookmarks