glsl2: Move the compiler to the subdirectory it will live in in Mesa.
[platform/upstream/mesa.git] / src / glsl / tests / swiz-01.glsl
1 /* PASS */
2 #version 120
3
4 void main()
5 {
6         float a;
7         vec4 b;
8
9         b.x = 6.0;
10         a = b.x;
11 }