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 ?

link|improve this question

50% accept rate
feedback

2 Answers

Where is your drawing routine? If you just itereate a thousand times to apply rotation, but aren't actually drawing, you'll never see the rotation in effect.

link|improve this answer
so what do u suggest ? – karim Jun 21 '11 at 11:35
draw your scene inside the for-loop. – sam Jun 21 '11 at 12:12
feedback

you need to gl.flush() the buffer into the screen.

Also why are you using a float in a for ?

link|improve this answer
its for a thing later on the code, so i put gl.flush() in the body of the loop ? – karim Jun 21 '11 at 11:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.