python/regress: Add vertex shader EX2 test.

This commit is contained in:
Michal Krol
2009-04-01 11:25:02 +02:00
parent 449bab61b3
commit 998234ced2
2 changed files with 19 additions and 0 deletions
@@ -0,0 +1,18 @@
VERT1.1
DCL IN[0], POSITION
DCL IN[1], COLOR
DCL OUT[0], POSITION
DCL OUT[1], COLOR
DCL TEMP[0..1]
IMM FLT32 { 0.3, 0.3, 0.3, 1.0 }
EX2 TEMP[0], IN[0]
EX2 TEMP[1], IN[1].yyyy
MUL TEMP[0], TEMP[0], IMM[0]
MOV OUT[0], IN[0]
MUL OUT[1], TEMP[0], TEMP[1]
END
@@ -216,6 +216,7 @@ def main():
'dp3',
'dp4',
'dst',
'ex2',
'mov',
'mul',
'sub',