I'm using Qt and OpenGL and GLEW to map a texture on a quad and render it. I want to change the texture for each frame and update the window continuously. How can I force it to update continuously?
The problem is solved as mentioned in the comments by adding a timer and connecting it to a slot to signal update function.