r600: don't enable depth test if there is no depth buffer
[mesa.git] / progs / gallium / python / tests / regress / vertex-shader / vert-srcmod-neg.sh
1 VERT
2
3 DCL IN[0], POSITION
4 DCL IN[1], COLOR
5 DCL OUT[0], POSITION
6 DCL OUT[1], COLOR
7
8 MOV OUT[0].xy, -IN[0]
9 MOV OUT[0].zw, IN[0]
10 MOV OUT[1], IN[1]
11
12 END