Tagged Questions

2
votes
1answer
121 views

Qt QGraphicsScene & OpenGL, which can be the best approach to mix both?

I'm going to start development on my vectorial viewer app. I have explored the 2D and 3D Qt tools and I have the impression that I have to create two independents data worlds. The QGrapchicsScene ...
2
votes
4answers
183 views

How can I optimize the performance of a QGraphicsView-based app?

I have an app which is based on the Qt Graphics View framework. It's a jigsaw puzzle game which basically cuts a pixmap into smaller pixmaps (puzzle pieces) and displays them as QGraphicsItems in a ...
2
votes
1answer
484 views

The best way to use Video with QGraphicsScene

I am currently using Phonon VideoWidgets inside of a QGraphicsScene using a QGraphicsProxyWidget. I have my viewport set to a QGLWidget. However, it causes me big issues when I try to apply some ...
2
votes
5answers
6k views

calling Qt's QGraphicsView::setViewport with a custom QGLWidget

I've derived from QGLWidget before, like so: class MyGLWidget : public QGLWidget { public: // stuff... virtual void initializeGL() { /* my custom OpenGL initialization routine */ } // more ...
1
vote
1answer
331 views

PyQt4 on Mac: QGraphicsView with OpenGL is flickering

under Mac OS X I have a problem with QGraphicsView and OpenGL. Sometimes, not everytime, when the QGraphicsView gets updated, then there is a flickering. Without OpenGL it's all fine. But I need ...
0
votes
1answer
159 views

Qt - multiple layers containing a QGraphicsView in one 3D scene (QGLWidget)

I'm currently evaluating the possibilities to implement a navigable 3D scene which allows to render multiple 2D layers. To be a bit more precise, I would like to display multiple graphs in a 3D ...
0
votes
1answer
90 views

What is the proper way to display a 3D model on top of a QGraphicsView?

I would like to display an image and a 3d model on top of that image. So far, I have used QGraphicsView to display a QGraphicsScene where I add the image as a QGraphicsPixmapItem. The QGraphicsView ...
0
votes
1answer
141 views

Big QPixmaps crashes with OpenGL

I'm programming a QGraphicsView that has a lot of images. But when I display a JPEG with resolution 8528 x 1128 px (a panorama image), the QGraphicsPixmapItem does not render. It just displays a black ...