python/regress: Add vertex shader DST test.
authorMichal Krol <michal@vmware.com>
Wed, 1 Apr 2009 09:09:37 +0000 (11:09 +0200)
committerMichal Krol <michal@vmware.com>
Wed, 1 Apr 2009 09:09:37 +0000 (11:09 +0200)
src/gallium/state_trackers/python/tests/regress/vertex-shader/vert-dst.sh [new file with mode: 0644]
src/gallium/state_trackers/python/tests/regress/vertex-shader/vertex-shader.py

diff --git a/src/gallium/state_trackers/python/tests/regress/vertex-shader/vert-dst.sh b/src/gallium/state_trackers/python/tests/regress/vertex-shader/vert-dst.sh
new file mode 100644 (file)
index 0000000..dc5e0eb
--- /dev/null
@@ -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
index c207a46ec3545f778d875e4dd902f709a8489aca..7b658165a7f6903af9932218a5f15340d6f14df5 100644 (file)
@@ -215,6 +215,7 @@ def main():
         'add',
         'dp3',
         'dp4',
+        'dst',
         'mov',
         'mul',
         'sub',