mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-21 03:20:40 +02:00
python/regress: Add vertex shader LRP test.
This commit is contained in:
parent
16c281dfb5
commit
4900545bba
2 changed files with 15 additions and 0 deletions
|
|
@ -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
|
||||
|
|
@ -218,6 +218,7 @@ def main():
|
|||
'dst',
|
||||
'ex2',
|
||||
'frc',
|
||||
'lrp',
|
||||
'mov',
|
||||
'mul',
|
||||
'sub',
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue