I am trying out OpenGL with Qt. I compiled the 2dpainting example from Qt's documentation. In the example are two animations side by side, one which runs natively and the other one gets rendered by OpenGL. I do not see a difference though. How can I make sure, that the hardware accelerator is used. I am running the example on an embedded device with Ångström Linux.
I added a line to the constructor of the opengl widget, to determine the renderer that is used, but the function always returns a NULL pointer.
GLWidget::GLWidget(Helper *helper, QWidget *parent)
: QGLWidget(QGLFormat(QGL::SampleBuffers), parent), helper(helper)
{
elapsed = 0;
setFixedSize(200, 200);
setAutoFillBackground(false);
printf(" OpenGL Renderer: %s\n",glGetString(GL_RENDERER)); //added this line
}
Now I read in numerous online forums, that I need a valid rendering context. But what does this mean, and when is it created when using Qt? I tried putting the same function in all the other functions of the GLWidget, but without any luck.
