QGraphicsView with OpenGL backend
Hi,
I’m using a QGraphicsView to display QML items with OpenGL backend because in my case it’s faster than raster.
The application window is made translucent with :
- DwmExtendFrameIntoClientArea(hwnd, &margins);
- QPalette p;
- setPalette(p);
which works, but it seems the OpenGL buffer is not cleared properly on QML item state changes (different states are visible at the same time).
To get around this I reimplemented the GraphicsView drawBackground to manually clear the background like this :
- {
- HDC hDC = GetDC(parentWidget()->winId());
- HGLRC hRC = wglGetCurrentContext();
- wglMakeCurrent( hDC, hRC );
- glClearColor(clearColor.red(),clearColor.green(),clearColor.blue(),clearColor.alpha());
- glClear(GL_COLOR_BUFFER_BIT);
- qDebug() << "clear background :" << rect;
- }
where FigureEditor is a QGraphicsView, but items don’t repaint where it seems they should :
This a test case :

Clicking on the topmost square change it to blue and move it :

And leaves a hole when going back to first state:

I don’t get how the QML items are painted after states changes.
Do anybody know how to solve this problem.
Sorry for the lenghty post.
Mickael
[EDIT: fixed image links, Volker]
13 replies
Check this page [doc.qt.nokia.com] also
Maybe its not related, but there is also these [stackoverflow.com] clues
Actually, I think QGraphicsView is not supposed to clear the entire screen on each paint event because it only paints portion of the screen beeing updated. By using glclear it breaks its way of painting and do not know it should repaint all objects and so leaves holes. This can be solved by setting :
Finally, I think the real issue is how to clear updated regions with a transparent OpenGL background.
Thanks for your help.
You can download my test case here : http://www.megaupload.com/?d=51WDQWF1
Actualy, it’s a slight modification of the ported canvas example from QT SDK.
You’ll need at least windows vista to run it.
That’s just bad. Same happening to me…
As you noticed, the behavior of the program changes when you change from
to
This points to a bug. You can use JIRA to report it.
As you also point out, here the error also vanishes when setting
I have tried several things, that you probably have also tried. I have set a QGLWidget to the viewport of the GraphicsScene using:
+
But then there is no cool background anymore. Not supported, it seems.
I have tried to add states to the qml to force the updates of the rectangles, but it doesn’t work either.
I am trying some more stuff to get around the bug later,
Regards,
VitorAMJ
if you have a not that complex scene (like few rectangle areas) raster might be an option. Otherwise (non-rectangular areas, rotated rectangles, and other stuff), OpenGL can be faster.
I hope they can solve this bug fast and with a good rendering solution. But I honestly don’t believe that it will be much faster ( maybe even not faster) than your workaround. That because if they change only parts of the screen, the bootleneck will still be in the driver sending stuff and possible context changes (considering that the user has a somewhat good GPU).
Let’s wait and see!
Regards,
VitorAMJ
You must log in to post a reply. Not a member yet? Register here!
