progs/vpglsl: Fix psiz-mul.glsl compilation error on Mac OS.

This commit is contained in:
Vinson Lee 2009-11-19 23:56:07 -08:00
parent 760cf71572
commit b98db7bf69

View file

@ -1,6 +1,6 @@
void main() {
gl_FrontColor = gl_Color;
gl_PointSize = 10 * gl_Color.x;
gl_PointSize = 10.0 * gl_Color.x;
gl_Position = gl_Vertex;
}