Initial commit. lol
[mesa.git] / tests / swiz-02.glsl
1 #version 120
2
3 void main()
4 {
5 float a;
6 vec4 b;
7
8 b.x = 6.0;
9 a = b.xy;
10 }