r600: don't enable depth test if there is no depth buffer
[mesa.git] / progs / gallium / python / tests / regress / fragment-shader / frag-lg2.sh
1 FRAG
2
3 DCL IN[0], COLOR, LINEAR
4 DCL OUT[0], COLOR
5
6 DCL TEMP[0]
7
8 IMM FLT32 { 1.0, 0.0, 0.0, 0.0 }
9 IMM FLT32 { 0.5, 0.0, 0.0, 0.0 }
10
11 ADD TEMP[0], IN[0], IMM[0]
12 LG2 TEMP[0].x, TEMP[0].xxxx
13 ADD OUT[0], TEMP[0], IMM[1]
14
15 END