Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
1k views

OpenCV + OpenGL + Qt

I'm designing my own augmented reality application. I have already detected the 4 corners for the patterns I'm working with. After detecting the 4 corners in a proper order I'm passing them into ...
5
votes
3answers
1k views

How to fullscreen a QGLWidget?

I am new to OpenGL and Qt, and I am learning both simultaneously(3 days already:). I couple of years ago I did some exmerimenting with DirectX and I clearly remember that it was possible to make a ...
5
votes
2answers
714 views

QGLWidget and hardware acceleration?

Greetings all, Does simply subclassing QGLWidget and reimplementing paintEvent() make use of OpenGL and hardware acceleration? I create a QPainter and draw QImages in this paintEvent(). What happen ...
4
votes
1answer
294 views

OpenGL rendering to a QML item

I have a QML file which contains a layout of QML items and now I want one of those items to be a QGLWidget. i.e. I want to render to a specific QML item. Is anyone aware of how to do this?
4
votes
4answers
1k views

Undefined reference to vtable, Qt in Linux

I was trying to compile a Qt and OpenGL program under Code::Blocks in Ubuntu 10.04. I get the 'undefined reference to 'vtable for GLWidget' #ifndef _GLWIDGET_H #define _GLWIDGET_H #include ...
4
votes
1answer
581 views

Strategy for sharing OpenGL resources

I'm creating a CAD-like app (Qt-based), it will be a multiple document interface and each document will contain about 5 viewports (derived from QGLWidget). As such I need my flat shader to be shared ...
3
votes
1answer
750 views

How to use OpenGL functions on a QT OpenGL Widget?

I'm starting off QT 4.6's example "OpenGL - 2D painting" It uses a subclass of QGLWidget, and makes painting operations with the class QPainter. I'd like to know how to do drawing directly with OpenGL ...
2
votes
1answer
57 views

QWidget showFullScreen produces multiple resizeEvents

I have a QT application written in python using PySide and I stumbled across a little problem regarding the showFullScreen method of the QGLWidget (although the problem occurs with every other widget ...
2
votes
0answers
103 views

Turning QGLWidget fullscreen when parented to other window

I have managed to turn fullscreen on/off by calling showFullScreen() and showNormal() for a QGLWidget that is the top level window of my Qt App. However, I would like to have a gl window derived from ...
2
votes
1answer
293 views

Qt & OpenGL - QGLWidget & QPainter: depth buffering

I subclass QGLWidget and have my painting code in paintEvent instead of paintGL as I want to paint a 2D overlay using QPainter over my 3D stuff done with OpenGL. My depth buffering works fine when I ...
2
votes
3answers
416 views

QGLWidget appears black in Windows 7

I wrote and tested some code in a Windows XP (Qt 4.7.2) using Visual Studio 2010 and then I tried on another machine with Windows 7 installed. The program opens a QDialog and creates a QGLWidget ...
2
votes
1answer
328 views

Sharing OpenGL VAO/VBO/etc. via QGLWidget

I am using a 3 layer hierarchy of QGLWidgets to share shaders and vertex data between 5 OpenGL viewports in my CAD-like app. The root context is used for compiling application-wide shaders, the per ...
2
votes
1answer
234 views

QtOpenGL and MacOS X — Software rendering?

I'm developing a cross-platform application and am not very familiar with the Mac platform. I use Qt for the GUI. I use a QGLWidget to make sure the drawing (with QPainter) is done in OpenGL. My ...
2
votes
1answer
215 views

QGlWidget fullscreen no menu

I have an app that is a single QGlwidget with a right-click QMenu created when needed. The data is drawn in an overridden paintEvent() But in fullscreen mode the menu isn't displayed. Am I better ...
2
votes
1answer
939 views

2d HUD not drawing properly over QGLWidget (using QPainter)

I am trying to display HUD over my 3D game. For starters, I am just trying to display "Hello World", but I haven't had any success yet! The scene freezes / flickers once I am done. I am using Qt/C++ ...
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
2answers
44 views

How to scale glDrawPixels?

I need to scale the result of glDrawPixels image. I'm drawing a 640x480 pixels image buffer with glDrawPixels in a Qt QGLWidget. I tryed to do the following in PaintGL: glScalef(windowWidth/640, ...
1
vote
1answer
68 views

Toggle full screen in a media player developed using Qt

I am currently developing a media player using Qt. One of the common features required is to be able to toggle full screen. The rendering canvas essentially is a QGLWidget(I subclassed from it). It ...
1
vote
2answers
161 views

QGLWidget's paintGL() method called from which Qt thread?

suppose I use the QGLWidget's paintGL() method to draw into the widget using OpenGL. After the Qt called the paintGL() method, it automatically triggers a buffer swap. In OpenGL, this buffer swap ...
1
vote
4answers
240 views

Problems compiling an c++ application using QT and OpenGL

I'm following this tutorial for building a simple OpenGl application in C++ using QT. I'm trying to compile the application using g++ and the command line but I get the following errors: ...
1
vote
2answers
108 views

How are QGLWidget's glXXX function calls handled?

How does Qt handle the function calls to various OpenGL functions such as glVertex3f in a QGLWidget? Are these calls part of the QGLWidget object or are they strictly the global namespace OpenGL ...
1
vote
1answer
520 views

Embedding Ogre into a qt application on windows platform

Embedding Ogre into a qt application Link:QtOgre But it is mac and linux platform,I try to migrate to windows platform, but failed. My app run like this: enter code here #ifndef OGREWIDGET_H ...
1
vote
2answers
1k views

Transparent QGLWidget on top of QGraphicsView

I'm using QGraphicsView to show a 2D image and also have a separate QGLWidget window to display some 3D object. I'm dynamically changing the image displayed in `QGraphicsView' based on the rotation of ...
1
vote
1answer
111 views

QMessageBox in initializeGL calls initializeGL one more time

void MyGlWidget::initializeGL() { try { throw std::exception(); } catch(...) { QMessageBox::critical(this, tr("Exception"), tr("Exception occured")); } ...
1
vote
1answer
473 views

How to show a popup menu using QGLWidget?

how to show a context menu when you right click within a QGLWidget?
0
votes
1answer
36 views

How to flip a texture within beginNativePainting()?

I'm writing a class that inherits from QGLWidget: class GLWidget : public QGLWidget { Q_OBJECT public: GLWidget(QWidget *parent = 0); ~GLWidget(); void paintEvent(QPaintEvent ...
0
votes
1answer
39 views

Adding a QGLWidget to a QMainWindow

I have a MainWindow class with a QGraphicsView which I'd like to add to a MainWindow, so that I'm able to see what's actually going on. All I'm trying to do right now is render a cube. Main Function ...
0
votes
0answers
179 views

Qt QGLWidget OpenGL rendering from thread blocks on swapBuffers()

I have a strange problem rendering OpenGL to QGLWidget from a different thread than the main thread. There are a lot of official statements from Qt Developers that it is "perfectly possible" to do ...
0
votes
2answers
133 views

How to show QGLWidget in full screen?

I have a QGLWidget as part of the UI of my application. It is NOT a central widget, there are a lot of others widgets around it. I want to show it full screen on user clicks the button. Similar ...
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
0answers
82 views

QDockWidget - QGlWidget - invalid drawable when widget is dragged out from the dock

I have a QDockWidget object in my application, which contains a QWidget object inside it. When my application runs, everything seems fine. However when I moved the widget from the QDockWidget (dragged ...
0
votes
2answers
89 views

QGLWidget not receiving calls to resizeGL after initialization

I am having what appears to be the same problem as asked in this (unanswered) question: Qt resizeGL problem I am testing a new QGLWidget for a larger application. The resizeGL method is wired up to ...
0
votes
1answer
54 views

Qt OpenGL default scale is really strange

I'm working on an OpenGL example out of a Qt programming book. Almost everything works fine, but the default scale seems to be way off. I should be seeing a pretty standard cube, but instead I see ...
0
votes
1answer
54 views

VTK rendering from within a QGLWidget

I have a problem that i am trying to sort out for days already, without much success.. So, basically i want to use VTK from Qt, and i know that there is the nice QVTK module for that. My problem is ...
0
votes
2answers
248 views

OpenGL window video capture problem

Probably this is very easy but I can't find the right words for google to spit out what I need. I have a custom derived QGLWidget and want to do some video capturing to show it to others. The ...
0
votes
1answer
94 views

Issue with context menu on QGLWidget

I have an issue with Custom Context menu on QGLWidget and QTreeView. I have QTreeview and QGLWidget added to a common widget with splitter. I open context menu by the following code. ...
0
votes
1answer
134 views

Issue with QGLWidget

I have a problem with QGLWidget. Actually, with the mouse actions, the QGLWidget will get updated. I have a requirement to open another window from this widget, for example with a double click event. ...
0
votes
1answer
112 views

Cut QGLWidget?

Is it possible to cut a QGLWidget? I mean I would like to cut it so i get access to the gui below. It sounds strange, but it would be a lot of work for me to divide my QGLWidget into two. I hope you ...
0
votes
3answers
164 views

How does QGLWidget work in QT?

Amazingly, i switched a QWidget to be a QGLWidget and now my QPainter::drawImage calls are 5x faster. I changed nothing else, except the widget type. How does that make QPainter calls perform ...
0
votes
1answer
182 views

QGLWidget in QScrollArea says “invalid drawable”

When I display my QGLWidget in the layout of my main QWidget, everything is fine. When I put the QGLWidget into a QScrollArea, and then display, Python says: 2011-05-14 19:10:28.900 ...
0
votes
2answers
1k views

Seeking advice on using QGLWidget in Qt4

I'm new here, and have a question about opengl in Qt4, which I've been learning over the last few months. Particularly, I'm seeking advice on the best way to compose a scene in a good object-oriented ...
-1
votes
1answer
87 views

Glwidget in qt issue with coordinates

I am running qt 4.7 on Mac OS X and the coordinates are being drawn wrong for glwidget. I've tried it on a Fedora box and it works fine. Does anyone know if there's a bug in glwidget for mac? or how I ...