Not sure if this will help anyone, but I was able to find the glRotatef function inside the Qt source code.


#ifdef QT_OPENGL_ES_1_CL
...
inline void glRotatef (GLfloat angle, GLfloat x, GLfloat y, GLfloat z)
{
glRotatex(FLOAT2X(angle), FLOAT2X(x), FLOAT2X(y), FLOAT2X(z));
}
...
#endif //QT_OPENGL_ES_1_CL

Not sure if this is being called. What does QT_OPENGL_ES_1_CL stand for?