python/regress: Add vertex shader LRP test.

This commit is contained in:
Michal Krol 2009-04-01 16:05:29 +02:00
parent 16c281dfb5
commit 4900545bba
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,14 @@
VERT1.1
DCL IN[0], POSITION
DCL IN[1], COLOR
DCL OUT[0], POSITION
DCL OUT[1], COLOR
DCL TEMP[0]
ABS TEMP[0], IN[0]
MOV OUT[0], IN[0]
LRP OUT[1], TEMP[0], IN[1].xxxx, IN[1].yyyy
END

View file

@ -218,6 +218,7 @@ def main():
'dst',
'ex2',
'frc',
'lrp',
'mov',
'mul',
'sub',