From: Mark Slee Date: Wed, 2 Apr 2014 00:35:30 +0000 (-0700) Subject: Fix point size, window machines make awful huge squares X-Git-Url: https://git.piment-noir.org/?p=SugarCubes.git;a=commitdiff_plain Fix point size, window machines make awful huge squares --- diff --git a/vert.glsl b/vert.glsl index 0b58f60..7bbc479 100644 --- a/vert.glsl +++ b/vert.glsl @@ -6,6 +6,6 @@ attribute float pointsize; void main() { gl_Position = transform * vertex; vertColor = color; - gl_PointSize = 100.0; + gl_PointSize = 2.0; }