python/regress: Add vertex shader DST test.

This commit is contained in:
Michal Krol 2009-04-01 11:09:37 +02:00
parent 65cbe7e69c
commit 449bab61b3
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,11 @@
VERT1.1
DCL IN[0], POSITION
DCL IN[1], COLOR
DCL OUT[0], POSITION
DCL OUT[1], COLOR
MOV OUT[0], IN[0]
DST OUT[1], IN[1], IN[0]
END

View file

@ -215,6 +215,7 @@ def main():
'add',
'dp3',
'dp4',
'dst',
'mov',
'mul',
'sub',