Skip to content

Commit

Permalink
make sure we fit in 80cols
Browse files Browse the repository at this point in the history
  • Loading branch information
biasmv committed Feb 27, 2015
1 parent 2a040f5 commit 1913c00
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gfx/shaders.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,8 @@ void main(void) {\n\
integralObjId/=256;\n\
int blue = intMod(integralObjId, 256);\n\
int alpha = symId;\n\
gl_FragColor = vec4(float(red), float(green), float(blue), float(alpha))/255.0;\n\
gl_FragColor = vec4(float(red), float(green), \n\
float(blue), float(alpha))/255.0;\n\
}'

});
Expand Down

0 comments on commit 1913c00

Please sign in to comment.