dot and idle () in opengl

Started by
1 comment, last by Rasmadrak 16 years, 5 months ago
Hi Guys, How would I make a dot with a size of 5 pixels in OpenGL? Hi guys, If I wanted to make a dot around 3 pixels and make it move around using idle() how would I do this ?
Advertisement
glPointSize( 5 );
Make a standard gameloop, update the points position (you got to keep track of this yourself) and render the point.
"Game Maker For Life, probably never professional thou." =)

This topic is closed to new replies.

Advertisement