From http://www.jwz.org/xscreensaver/xscreensaver-5.35.tar.gz
[xscreensaver] / hacks / glx / gllist.c
index 778143d55b09b6adcdddb4eb481a02ce8a18fa3a..342e38134d8a26f7cb1c99a8a241658227ff37af 100644 (file)
@@ -16,7 +16,8 @@ renderList (const struct gllist *list, int wire_p)
 {
   while (list)
     {
-      if (!wire_p || list->primitive == GL_LINES)
+      if (!wire_p || list->primitive == GL_LINES ||
+          list->primitive == GL_POINTS)
         {
           glInterleavedArrays (list->format, 0, list->data);
           glDrawArrays (list->primitive, 0, list->points);