I am trying to port an application that uses QtWebKit to render web content over to one that uses QtWebEngine.
I am limited what I can change architecturally so I have to stick with the current approach of rendering the page, capturing to a memory buffer and then moving that across to a different process where the buffer is used as a texture in OpenGL.
I've tried porting the code over (broadly speaking) by replacing WebKit with WebEngine, but the APIs are different.
Can anyone tell me if this is possible? If so, please point me in the right direction to illustrates how to hook everything up.