mesa/tests/swiz-01.glsl
Eric Anholt 106d122318 Add PASS / FAIL annotations to tests missing them.
This tricked my import of the tests into piglit.
2010-04-02 11:22:41 -07:00

11 lines
83 B
GLSL

/* PASS */
#version 120
void main()
{
float a;
vec4 b;
b.x = 6.0;
a = b.x;
}