The QGLWidget class, part of the Qt framework, is a widget for rendering OpenGL graphics.

learn more… | top users | synonyms

0
votes
1answer
77 views

QGLWidget with 2 rendering mode

I have an OpenGL widget in Qt (inherits from QGLWidget), with 2 rendering mode : rendering default cube (#define CUBE_MODE 0). rendering opencv image (#define IMAGE_MODE 1). I have a public ...
0
votes
1answer
35 views

How do I exactly update an objects position in OpenGL using Qt's QGLWidget?

I'm trying to move a cube drawn wit OpenGL in a QGLWidget. Here is part of the code: void Hologram::paintGL() { glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); drawBox(); } void ...
-1
votes
1answer
54 views

How to detect OpenGL 2D presence on a PC?

I have a project that does hardware-intensive redraws using OpenGL 2D in Qt. However, Qt does not have a fallback if GL-2D is not present, so instead nothing is drawn. This is useless, so how do I ...
0
votes
0answers
44 views

Qt & OpenGL surfaces (QGLWidget)

I have a problem with QGLWidgets, and it seems to be something related to one specific Pc, since my project works properly in other Pcs. I use: Qt 4.8.3 Windows 7 Graphic Card: Intel GMA 3000 I ...
1
vote
1answer
109 views

Qt5, Webgl and QGLWidget

I have a huge application rendering a 3d scene in a c++ QGLWidget. Is it possible using Qt5 & webgl to add a scripting layer to the application in order to interactively "paint" on the QGLWidget? ...
2
votes
2answers
102 views

Rendering a OpenCV IplImage to a QGLWidget

I am having trouble with rendering a OpenGL scene. The background is I want to display the frames from a video capture device in a preview window. I am using OpenCV and Qt. And to test I am capturing ...
0
votes
1answer
81 views

How to resize an OpenGL widget inside a Qt form class

I have an OpenGL widget (myWidget) inside a QVBoxLayout (verticalLayout_2), in a Qt form class (MyForm). I want to resize the OpenGL widget when the form has been resized. What should I write inside ...
1
vote
0answers
67 views

Qt GLWidget + Tree = crash

I'm a Qt newbie and I'm trying to create a Qt app with QGLWidget and some other UI controls. It crashes after short time after start. Below are steps to reproduce the problem. Qt 5.0.1 on Mac. ...
0
votes
1answer
241 views

Perspective with fixed aspect ratio (1:1) in OpenGL and Qt5 (QGLWidget)

I'm trying to render a cube into a QGLWidgetput inside a QSplitter. I'd like it to have a 1:1 ratio so it is a cube and keeps that ratio regardless of window dimensions. I haven't been able to get ...
0
votes
2answers
109 views

A cube is rendered as a square in QGLWidget

I've been trying to render a cube in a QGLWidget, but it comes out wrong. No matter how I rotate it, it looks like a flat square. It's like it didn't notice the Z coordinates of its vertices. Just ...
1
vote
1answer
116 views

More than one QGLWidget in a layout

I'd like to program a single threaded application that would show two QGLWidgets (one for 3D, one for 2D). I've tried to find information on two QGLWidgets displaying at once, but I haven't found ...
0
votes
1answer
109 views

OpenSceneGraph and Multiple Viewers

I'm using OpenSceneGraph and Qt to develop a simulation software. Simulations can involve multiple bots in the same virtual world. My requirements for views are as follows: Ability to show static ...
1
vote
2answers
556 views

How to subclass QGLWidget to use glew?

I'm struggling to get a subclass of QGLWidget compiled that uses glew. I'm running Qt 5.0.1 + MinGW 4.7 on Windows 7. Glew 1.7.0 has been compiled with said MinGW. I have subclassed QGLWidget with ...
2
votes
2answers
161 views

QGLWidget refuses to draw anything

I've looked at a ton of articles and SO questions about OpenGL not drawing, common mistakes, etc. This one is stumping me. I've tried several different settings for glOrtho, different vertex ...
0
votes
1answer
86 views

Multiple QGLWidgets and gluUnProject

I have a QMainWindow containing two QGLWidgets. The widgets use the default constructor and do not share a context. The widgets both display two dimensional data and allow for clicking and dragging. ...
0
votes
4answers
156 views

gl_lines and gl_clear in QGLWidget

I got a problem with drawing on a QGLWidget. I have several quads on the widget which I can move around when pressing some keys. As long as I just draw quads, everything works fine but now I want to ...
0
votes
1answer
136 views

QGLWidget draws in the bottom left corner [closed]

There is the coords than i am using float positionData[] = { -0.8f, -0.8f, 0.0f, 0.8f, -0.8f, 0.0f, 0.0f, 0.8f, 0.0f }; added the full code #include "glwidget.h" ...
1
vote
1answer
529 views

Qt OpenGL - Rotation with mouse drag - negative delta

I have a GLWdiget subclass of QGLWidget where I would like to make rotate a 3D object along Ox and Oy axes. For this, I have reimplemented mousePressEvent and mouseMoveEvent functions this way : ...
1
vote
1answer
124 views

keep Focus on QGLWidget with QCheckBox and QPushButton in MainWindow

I have a Qt main window with QCheckBox and QPushButton and a sub QGLwidget class widget for graphics rendering. I have put into void Ui_MainWindow::setupUi(QMainWindow *MainWindow) member function : ...
0
votes
2answers
589 views

Methods that call QGLContext::makeCurrent()

I am trying to use QGLWidget in our App. I have cretaed a derived class from QGLWidget . I am updating the Texture(using glTexSubImage2D) from a seperate thread and drwaing the texture(using ...
2
votes
0answers
135 views

Qt QGLWidget GLuint array memory alignment issue

I'm following the NeHe OGL tutorials in Qt using QGLWidget subclasses. So far I haven't had any problems, and on the 6th tutorial on texture mapping where he introduces texturing a rotating box. I ...
0
votes
1answer
134 views

pyqt : Why QGLWidget influenced by maya event?

openGL with maya I made a openGL View with QGLWidget. It has a problem when work with Maya. As you see in video, when I click and move on a modelPanel within Maya, the QGLWidget get broken. And I ...
2
votes
1answer
192 views

Orbiting sphere should cast spot light on central cube

I'm writing a program that draws a rotating cube (with texture) in the middle of the screen followed by a small yellow sphere that orbits around the cube. The idea is to make the sphere as a spot ...
2
votes
1answer
124 views

Why won't my central QGLWidget grow when I expand the main window?

I have a QMainWindow with a QGridLayout on it, where the first row is toolbars (across all columns) and the second row has a text display area on the left (first column) and a QGLWidget on the right ...
1
vote
2answers
184 views

Copy Bits to QtImage in QGLWidget

Maybe someone can help me with the following problem: I want to draw the content of a QImage in a QGLWidget, but the widget is painted in black. class QGLCanvas { public: QGLCanvas(QWidget* ...
2
votes
1answer
223 views

QGLWidget not working correctly under Mac OS X Lion

As you see -- I have no idea why it's not working at all. When the program run, it will look like this: I'm using qt4-mac(v4.8.2) from macports. It seems that the package was pre-compiled. And ...
0
votes
0answers
315 views

Flickering with rapid changes in QStackedWidget index

I developed an image visualization application in Qt using two QGLWidgets stored in a QStackedWidget. I want to be able to quickly display each QGLWidget in turn in order to spot differences in the ...
0
votes
1answer
376 views

Why won't my qt centralWidget (a QGLWidget) resize properly?

I have an application with a QMainWindow that should ideally have a QGLWidget centered on it, with spaces left around the outside for toolbars and other top/side widgets. Unfortunately, no matter ...
0
votes
2answers
112 views

rendering and color picking in QGLWidget : how to cope with both

I'm wondering if there's a better solution than this: I have a rendering code and a color picking code, I already shared everything that could be shared between these two codes (VBOs, etc..) and my ...
0
votes
1answer
270 views

QGLWidget - how to structure a program with overpainting

This should be simple: I'm using a QGLWidget to draw some openGL graphics and I want to be able to write something on the openGL graphics rendered, so I'm using overpainting as in the Qt demo with ...
0
votes
2answers
456 views

QGLWidget paintEvent: where to initialize openGL?

It seems that the paintEvent method of the QGLWidget is called before initializeGL, so where am I supposed to put my openGL initialization code? I'm putting it into the paintEvent method like this: ...
1
vote
1answer
283 views

Qt QPainter in paintEvent eliminates the graphic drawn with paintGL

I have the following code void QMyWidget::paintEvent(QPaintEvent *event) { updateGL(); // This calls for initializeGL and then paintGL and draws a nice openGL 3D scene QPainter ...
1
vote
2answers
210 views

Trying to access QGLWidget from entire application

What I am basically trying to do is to create one instance of a QGLWidget (or rather a derived class of QGLWidget), add it to a QMainWindow, and then access the QGLWidget's rendering context from ...
0
votes
1answer
223 views

How do I pass QMainWindow resize events down to a QGLWidget contained in the QMainWindow?

Initially, I followed the structure of http://qt-project.org/wiki/How_to_use_OpenGL_Core_Profile_with_Qt. I created a vanilla Visual Studio 2010 Qt application project, clicked on the .ui file to ...
0
votes
1answer
160 views

QGLWidget. Update display while drawing.

Each file contains 3D points which I want to display. I want to see the display after each file is read. After file1, I want to see the points before adding more points from file2. Before adding more ...
0
votes
1answer
133 views

OpenGL multithreading in Qt, problems with glGet* results

I am coding a graphic application in Qt (4.8.2)(VS 2008), using QGLWidget and therefore OpenGL. Here is short description of the application: It's a physics simulation. It consists of 2 threads. Main ...
0
votes
3answers
200 views

Get rid of glut functions for solid objects drawing in a Qt QGlWidget

I need to draw sphere, cylinders and cones in 3D inside a QGlWidget. Now I'm using the glutSolidSphere, glutSolidCone and that awful trick of gluQuadric for drawing cylinders. I just want to use ...
1
vote
0answers
612 views

QGLBuffer usage

I have some problems in understanding how to use QGLBuffer to render simple objects(like Rectangle for example). I'm trying to make selection rectangle for my app. here's the code example of what im ...
2
votes
3answers
503 views

How to take reliable QGLWidget snapshot

In my application I take snapshots of a QGLWidget's contents for two purposes: Not redraw the scene all the time when only an overlay changes, using a cached pixmap instead Lat the user take ...
1
vote
4answers
333 views

How to close a Qml window when creating a QGLWidget

I am trying to build a game in which the ui part is made in qml (menu etc) while the rendering and logic part is in C++. For this I'm using a QGLWidget subclass. The game starts with Qml (using a ...
0
votes
2answers
185 views

QList for touch-points not being created, “A data abort exception has occurred”

I am trying to get touch inputs for my program targeting an N8 (and a C7), and I am not able to create a QList for keeping touchpoints using QTouchEvent::touchPoints(). The program crashes with the ...
0
votes
1answer
220 views

Using QGLWidget::renderText with QGLBuffer crash

I have a problem with using QGLBuffer and QGLWidget::renderText function. I read that renderText messes with buffer objects and that they should be unbinded before rendering text. So I call ...
1
vote
1answer
1k views

what does “QGLContext::makeCurrent() : wglMakeCurrent failed: The operation completed successfully” mean?

I am trying to make a multi threaded Qt Application that uses QGLWidgets and I keep getting this error.(I am trying to paint from another thread using QPainter) And it also looks like I have a huge ...
0
votes
1answer
60 views

libQGLViewer installation on MacOS 10.7.2: Asking for Qt3 Support?

I am trying to install libQGLViewer2.3.13 (recent version) on MacOS 10.7.2 but it is giving me these errors after compiling some part of libqglviewer: ... In file included from computerPlayer.cpp:33: ...
0
votes
2answers
547 views

Changing QWidget with QGlWidget in Qt 4.8.0

I am working on an application that currently uses QWidgets for rendering moving images, and I am trying to move from using QWidgets to QGlWidgets, but my application keeps crashing. The only ...
1
vote
1answer
187 views

How to draw Qt widgets using Horde3d and OpenGL?

What I want is a Qt Application that uses Horde3D to display a 3d scene and draw QWidgets on top of the 3D scene using Horde3D(or OpenGL). Basically I want to add UI for my 3D scene. And this UI ...
5
votes
2answers
912 views

Hosting QOpenGL widget inside QML

I have a library proving me a QGLWidget, and the interface allow me to only to resize/set size, and control some GL animation; but no GL command is exposed outside, all i do it initialize GLWidget, ...
2
votes
1answer
215 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
866 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 ...
3
votes
2answers
1k 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 2