QGraphicsView with OpenGL backend
-
wrote on 18 Aug 2011, 12:57 last edited by
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; p.setColor( QPalette::Base, Qt::transparent); setPalette(p); setAttribute(Qt::WA_TranslucentBackground ,true );
@
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 :
@
void FigureEditor::drawBackground ( QPainter * painter, const QRectF & rect )
{
HDC hDC = GetDC(parentWidget()->winId());
HGLRC hRC = wglGetCurrentContext();wglMakeCurrent( hDC, hRC ); QColor clearColor = paletteBackgroundColor(); glClearColor(clearColor.red(),clearColor.green(),clearColor.blue(),clearColor.alpha()); glClear(GL_COLOR_BUFFER_BIT); qDebug() << "clear background :" << rect; QGraphicsView::drawBackground(painter, rect);
}
@
where FigureEditor is a QGraphicsView, but items don't repaint where it seems they should :This a test case :
!http://i51.tinypic.com/2h51vs3.png!
Clicking on the topmost square change it to blue and move it :
!http://i54.tinypic.com/2nsm7ih.png!
And leaves a hole when going back to first state:
!http://i55.tinypic.com/2d6kr29.png!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]
-
wrote on 18 Aug 2011, 14:38 last edited by
Did you try to clear the depth buffer also?
@glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);@
Regards,
VitorAMJ -
wrote on 18 Aug 2011, 14:58 last edited by
Thanks for the suggestion. I tried that but it doesn't help. Changing states still produce holes.
One solution could be to force a full repaint every state changes but I think it could be expensive on the real application.
Mickael
-
wrote on 18 Aug 2011, 17:08 last edited by
Did you enabled the GL_DEPTH_TEST?
-
wrote on 18 Aug 2011, 19:09 last edited by
Check this "page":http://doc.qt.nokia.com/qq/qq26-openglcanvas.html also
-
wrote on 18 Aug 2011, 19:11 last edited by
Maybe its not related, but there is also "these":http://stackoverflow.com/questions/274410/opengl-background-transparency clues
-
wrote on 19 Aug 2011, 07:16 last edited by
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 :
@setViewportUpdateMode(QGraphicsView::FullViewportUpdate);@Finally, I think the real issue is how to clear updated regions with a transparent OpenGL background.
-
wrote on 19 Aug 2011, 20:54 last edited by
Your problem, as the image shows, seems to be some sort of Z fight.
It is in fact panting the background (last image), but missing who comes first or something on that area of wrongly blue background.Can you provide your code so that I can play with it?
Thanks,
VitorAMJ -
wrote on 22 Aug 2011, 07:20 last edited by
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. -
wrote on 22 Aug 2011, 20:57 last edited by
That's just bad. Same happening to me...
As you noticed, the behavior of the program changes when you change from
@ QApplication::setGraphicsSystem("opengl");@
to
@ QApplication::setGraphicsSystem("raster");@
This points to a bug. You can use JIRA to report it.As you also point out, here the error also vanishes when setting
@ setViewportUpdateMode(QGraphicsView::FullViewportUpdate);@
at the cost of updating everything.I have tried several things, that you probably have also tried. I have set a QGLWidget to the viewport of the GraphicsScene using:
@ QApplication::setGraphicsSystem("raster");@
+
@setViewport(new QGLWidget(QGLFormat(QGL::SampleBuffers)));@
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 -
wrote on 23 Aug 2011, 07:08 last edited by
Yes, it seems there is no clean solution to this issue.
Thanks anyway for trying.
Regards,
Mickael -
wrote on 24 Aug 2011, 00:25 last edited by
Mistery resolved, it is a "known bug":http://developer.qt.nokia.com/faq/answer/opengl_and_translucent_background_do_not_work_together_due_to_a_limitation.
The bug was reported "here":http://bugreports.qt.nokia.com/browse/QTBUG-19412 -
wrote on 24 Aug 2011, 13:12 last edited by
Well, I guess I'll use the glClear + fullViewportUpdate option.
-
wrote on 24 Aug 2011, 21:18 last edited by
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
1/14