aboutsummaryrefslogtreecommitdiff
path: root/tests/shaders/generic/fdo30337a.vpfp
blob: 48b97d73d69c31259303381642eeb104cecb6a90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
!!ARBvp1.0
OPTION ARB_position_invariant;
END

!!ARBfp1.0
#This tests instructions like: ADD Temp[0], Temp[0], Temp[1] where one of
#the source registers is the same as the destination register.  These
#should not be replaced with presubtract operations.
TEMP color;
MOV color, {0.1, 0.4, 0.8, 1.0};
ADD color.x, color.x, color.x;
ADD color.y, color.x, color.y;
MOV result.color, color;
END

!!test
expected          0.2     0.6      0.8      1.0