New LX fixes FlashEffect bug
[SugarCubes.git] / vert.glsl
CommitLineData
b5d6d7a0
BM
1uniform mat4 transform;
2attribute vec4 vertex;
3attribute vec4 color;
4varying vec4 vertColor;
5attribute float pointsize;
6void main() {
7 gl_Position = transform * vertex;
8 vertColor = color;
9 gl_PointSize = 100.0;
10}
11