QWindow OpenGL Tearing
-
I'm having a strange issue with a setup that uses a class inheriting QOffscreenSurface and one inheriting QWindow (QT 5.14.2 MSVC 2017 64 bit, Windows 10). The offscreen renderer creates an OpenGL texture and the window displays it.
I see what seems to be a VSync-related tearing on the output window:
There is no pattern it seems to be on different parts of the screen and not at any specific times. It happens more often when the output resolution is higher. Turning VSync off using QSurfaceFormat::setSwapInterval(0) seems to be a work around which would mean that somehow something during the rendering process is interfering with the screen buffer swap.
The code to reproduce this is here:
https://github.com/rtavakko/TearingHas anyone seen this happen and know what could be causing the problem? Any tips would be greatly appreciated.
Cheers
-
Hi,
Your code is pretty big to go through.
Would it be possible to reduce it ? -
An update on this, it seems to happen only when there are two or more windows active which would again point to a sync-related issue? I'm also not sure if having multiple OpenGL contexts all sharing resources could be contributing. Theory says this should be ok.
-
It should be supported indeed. Did you try with a more recent release of Qt ? Like 5.15 or even 6.2 ?