Tagged Questions
0
votes
0answers
9 views
multiple QTimer slow
I have a problem with using many QTimer in my application which uses Qt and OpenGL and OpenCV.
I have a timer1 which call a function to draw 2d image in a window and the timer2 to call a function to ...
2
votes
1answer
35 views
How to create a QGLWidget from a CGLContextObj?
I'm using Qt 4.8.4 on Mac OS 10.8.
I already have a CGLContextObj (created outside my control).
I would like to create a QGLWidget from (or at least shared with) my existing CGLContextObj — so I can ...
1
vote
1answer
45 views
Segmentation Fault While Unmapping Buffer glBindBuffer()
There is a similar post at (Segmentation fault with glBufferData()), but it does not address my problem.
When I call glBingBuffer() below with the second parameter being 0 to unbind the buffer the ...
0
votes
1answer
82 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 ...
-1
votes
0answers
68 views
Poor performance with Qt5 on a 'powerful' platform
I am trying to run some example codes using Qt 5.0.2 :
Basic OpenGl examples (eg. Boxes, Framebuffer object 2 example, overpainting etc)
With all these I am getting very poor performance and CPU ...
0
votes
1answer
37 views
SDL OpenGL Texture display issue
I'm following this tutorial in order to *Load an OpenGL Texture from an SDL_Surface*, I've copy/paste code and adapted it but it only display wrong old part of the buffer which is a little bit ...
0
votes
1answer
60 views
Potential problems using OpenGL buffer object with multiple targets?
I am developing a library for Qt that extends it's OpenGL functionality to support modern OpenGL (3+) features like texture buffers, image load-store textures, shader storage buffers, atomic counter ...
0
votes
1answer
48 views
How to draw a moving function graph with OpenGl?
I'm using OpenGl to animate a graph that looks something like this:
Here's the code I've got so far:
void GLWidget::paintGL()
{
glClear(GL_COLOR_BUFFER_BIT);
glColor3f(0,1,0); ...
0
votes
2answers
69 views
Using Qt's QTimer function to make animations in OpenGl
How exactly do you use a QTimer to set off an animation in OpenGl?
I want to draw a simple circle and change the radius every 30 milliseconds, so it appears to grow and shrink smoothly.
Here's what ...
0
votes
2answers
56 views
Render QWidget in OpenGL
I have an OpenGL application and I would like to add a GUI to it.
My problem is that I want to keep my way of creating the window and my mainloop. In fact, I want to keep my application and just add ...
0
votes
3answers
54 views
The easiest way to draw strings in QGLWidget
I'm creating a QGLWidget subclass with initializeGL. resizeGL and paintGL. Everything is fine, i can draw 2D graphivcs with gluOrtho2D and 3D too. Everything is fine.
Now I need to draw some text, no ...
0
votes
1answer
39 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 ...
0
votes
0answers
78 views
Is there anyway to use the OpenGl API directly in Qt 5?
We're using Qt 5.01. We're supposed to use OpenGl to write a visualizer. Even a simple function to draw a triangle returns the error: glBegin() not found, glVertex2f() not found/defined or something.
...
0
votes
2answers
109 views
Qt example named Boxes working on Ubuntu but not on Windows (Qt 5.0.2)
I have been searching for a cross platform GUI application development framework (Same code for building Linux, Android, Windows apps and OS X) and I found Qt is best for that (Inspired because VLC ...
0
votes
1answer
100 views
Fail to generate a triangle by openGL with Qt5.0.2
OS : mac osx 10.8.3
compiler : clang3.2
I am a beginner of opengl, trying to play opengl with Qt5
There are two problems about this simple program(plot a triangle)
I can't see the triangle
...
0
votes
1answer
35 views
QT GUI Development along freeglut renderer
for the past few weeks I've been developing custom renderer with freeglut and glew using VS 2010 Express, this renderer will be a part 3d editing tool.
Now the time came to pick a right GUI toolkit, ...
0
votes
3answers
77 views
gluPerspective equivalent for Qt and openGL
I'm trying to get Qt and openGL working together so that I can do away with glu and glut.
I have everything working like I want it, except for my perspective matrix.
I'm only painting a simple 3D ...
-3
votes
0answers
39 views
Qt application stopped working after I run the .exe debug [closed]
I have built a Qt Application using Qt Creator 2.6.2 and Qt ver. 4.8.4 using OpenGL. When I compile it in Qt Creator, it works fine. But when I double-clicked the .exe file in the debug folder, It ...
0
votes
2answers
67 views
How to use OpenGL 1.x inside qt?
I am using qt 5.0.2 (Windows x64) . The problem is that qt only supports OpenGl 3 functions and for example I can't use glBegin(), glortho() etc. Do you have any idea how I can use OpenGL 1.x within ...
1
vote
0answers
92 views
Qt OpenGL Rendering text issue QGLWidget
I'm using QGLWidget (http://harmattan-dev.nokia.com/docs/library/html/qt4/qglwidget.html#renderText-2) and this code to draw a text on the screen but the rendering is catastrophic if the string's ...
-2
votes
0answers
37 views
Qt with animation [closed]
I need to make an animated object, which would be located on the Home screen.A cat, for example. It can run, jump and so on. But I don't know how to make this object change its shape. As Felix or ...
0
votes
1answer
39 views
how to nest a opengl window in my qMainWindow
I want to nest a opengl window in my qMainWindow and connect with it.Now I just know use WinId to get the pointer to my qwidget,Please someone give me some advices.Thanks
-2
votes
0answers
75 views
3D editor which is create by qt [closed]
Recently,I am working at developing a 3D editor through qt.I meet a bigest problem which is how to read some 3D object to my qt application and then display those 3d object in my window,I am not ...
-1
votes
1answer
58 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 ...
1
vote
1answer
27 views
Using QTImage with OpenGL
Ok so i was given some code and need to set it up. I am unfamiliar with c++ and the includes say:
#include <Qt\qimage.h>
#include <Qt\qgl.h>
#include "imageloader.h"
I have looked into ...
0
votes
2answers
61 views
OpenGL Widget works in creator but black when launched from .exe
I have been working on a Qt OpenGL project for a bit now for some school work. I had to re-build Qt 5.0.1 for my windows machine so I could use OpenGL proper. At the end of this project I need to turn ...
0
votes
1answer
178 views
How to configure Qt with opengl dekstop option?
Just installed Qt 5.0.2 (qt-windows-opensource-5.0.2-mingw47_32-x86-offline; here I'll say "wow" for the cool interface of the IDE) and faced one warning and one error when tried to 'Run' the 'boxes' ...
-1
votes
0answers
51 views
Textures with VBO. Why the terrain is invisible after trying to add texture
I've got a code that generates terrain and I want to add texture on it. The terrain without the texture is rendering fine, but when I'm trying to add textures it gets invisible.
The commented out ...
1
vote
1answer
74 views
Textures openGl. C++, qt
I'm trying to cover my terrain(which is made from heightmap) with a grass texture, but it's not working as it should. I can't even get the texture on a simple GL_QUAD, the result is multicolor net.
...
0
votes
1answer
97 views
OpenGL Drawing Axis in Corner
I've been searching on how to draw an Indicator-Axis in my OpenGL scene. The project's nested in a Qt OpenGL widget, but I think the problem is independent of Qt.
I have found on here and forums from ...
1
vote
2answers
75 views
Draw a cv::Mat inside a QGLWidget?
I am wondering how to draw a cv::Mat into a QGLWidget. I´ve found here a method and tried to implement it. But My widget is black.
This is the code of my widget:
h file
#ifndef GLVIEWER_H
#define ...
1
vote
2answers
74 views
If Statements inside of OpenGL
I am creating an OpenGL project that draws a square when an OpenGL view is clicked.
Here is my logic for creating the square upon a mouse click:
if (mouseXPosition != 0 && mouseYPosition != ...
0
votes
0answers
38 views
VBO indices array order and usage
Could anybody tell me what am I doing wrong with the array of indices?
What should be a size of array and VBO for drawing a triangles from 1024*1024 vertices?
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, ...
0
votes
1answer
88 views
GLSL compilation error when using QGLShaderProgram
I'm currently trying out some of the opengl components in Qt 5, I'm compiling on Mac OSX 10.8 with QtCreator 2.6.2, clang 4.2
I've written a very basic GLSL shader that compiles and links well in ...
0
votes
2answers
102 views
'glGenBuffers' was not declared in this scope. Windows 7. Qt 4.8.1
'glGenBuffers' was not declared in this scope
thats the error which I get after trying to use that metod. How to add appropriate libs or sth else and what i should add and how. I'm using win 7 and ...
1
vote
1answer
44 views
OpenGL ARB_framebuffer_object extension is not available
I'm having an app that processes some DSL and draws a page. That app is qt-based. I need to work with DSL not with QT. When processing that DSL an app throws the following error
OpenGL ...
0
votes
0answers
74 views
How do I render terrain using Vertex Buffer Objects in Qt?
I am trying to render terrain from a heightmap. I currently load the height map and can render it using vertex arrays with glBegin/glEnd but I need to do it with the use of VBOs. Since I'm using Qt ...
0
votes
1answer
154 views
Crash on using the opengl graphics system
I have made a Qt/Qml Application which works fine in the raster mode.
QApplication::setGraphicsSystem("raster");
But as soon as I change it to opengl, it crashes with the following messages:
...
0
votes
1answer
85 views
OpenGL vertex buffer objects on windows-how run it? qt windows
I'm trying to use VBO to create a terrain from a heightmap, but i don't know what should I include to my project or what headers to use. I'm using Qt and my OS is Windows 7. When i want to use ...
0
votes
1answer
68 views
Turning picture upside down when using glDrawPixels
I'm getting really strange results when using glDrawPixels() in combination with glRasterPos2*() and glPixelZoom(). I've got a picture and I'd like to show it like old framebuffers used to, i.e. (0,0) ...
0
votes
0answers
97 views
QT Creator Build Fails with QGLFormat: No such file or directory
I have a class in my QT project that includes QGLFormat. When I try to build the project from QT Creator, I get the following error on the line that includes QGLFormat:
QGLFormat: No such file ...
0
votes
0answers
47 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 ...
0
votes
1answer
116 views
OpenGL program does not compile with QT 5.0
I followed this turial to create a very simple openGL program with QT.
I have QT 5.0. I created a new empty QT project, created all files as in the tutorial but the compilation failed. The cause is ...
1
vote
3answers
49 views
Application Deployment — No Audio, No Images on client side
I am deploying an application written in Qt + OpenGL, written in Visual Studio 2008 for windows 7.
On client machine, no audio is played and no images are displayed in application. I am keeping it ...
1
vote
1answer
91 views
Lost OpenGL output
A week ago I upgraded my OS to the latest version, so GLEW, nVidia drivers, g++, Qt, etc. all got upgraded too. That was the day my QGLWidgets stopped showing raw OpenGL 3.3 content, only the 2D ...
2
votes
2answers
112 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
184 views
QT the glBegin not declared?
i'm following a tutorial to write a small piece of code of opengl in qt.here's the link
http://www.youtube.com/watch?v=1nzHSkY4K18
but in the 6:13 when I bluid the code it show a couple of error that
...
0
votes
1answer
407 views
OpenGL vs QOpenGL/QtOpenGL in Qt 5: differences and limitations? [closed]
Since there are two ways to use OpenGL with Qt 5 (QOpenGL/QtOpenGL wrapper and regular OpenGL API), I wonder what are the limitations of each one. Could someone tell if there are limitations with ...
0
votes
1answer
99 views
pause functionality in Qt using QTimer on button press
I am trying to implement pause button for a game I am developing in Qt + OpenGL.
I want to implement it using QTimer.
Basically I am updating screen per 100ms. So in order to pause game, I will ...
-1
votes
1answer
312 views
OpenGL+ QT 5.0.1 + VS2010: error C2371: 'GLdouble' : redefinition; different basic types
I have installed QT5.0.1 and I am trying to use GLUT.
I have the following error:
C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\include\GL/gl.h(55): error C2371: 'GLdouble' : redefinition; ...

