I have drawn a square in openGL ES on android platform , i just want to make the impression of it rotating for several times and i want to see the square while rotating.
for(float i=0;i<1000;i++){
gl.glRotatef(40f, -1.0f, 0.0f, 0.0f);
Thread.sleep(100); // put the thread to sleep for 1 sex
}
But its not working properly , in only make it rotate one .
what am I doing wrong ?