OpenGL render GL_POINTS as circles not squares

Alec Jacobson

September 01, 2010

weblog/

Bugged me into staying late today. To make OpenGL render points (GL_POINTS) as circles instead of squares be sure to add:
glEnable(GL_POINT_SMOOTH);
aka point antialiasing.