sprites in opengl?

Helo.
someone know how to move a bitmap width sprites in opengl?

A sprite in OpenGL is just a quad so you can move it with glTranslatef(), scale and rotate it with glScalef() and glRotate() …

thanks