diff options
author | José Fonseca <[email protected]> | 2011-04-23 10:44:43 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2011-04-23 11:07:27 +0100 |
commit | de29ee0e6de9e34d19ed20017028614cce7b4ba1 (patch) | |
tree | ba6c276abc3dcc4b0c3c5e5341001203aae9118a /src/gallium/tests/graw/fragment-shader/frag-mad.sh | |
parent | 931432fea69c29b4029ff23613468c8ad2c0181e (diff) |
graw: Replace dead symlinks to delete python statetracker shaders with their contents.
Diffstat (limited to 'src/gallium/tests/graw/fragment-shader/frag-mad.sh')
-rw-r--r-- | src/gallium/tests/graw/fragment-shader/frag-mad.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/gallium/tests/graw/fragment-shader/frag-mad.sh b/src/gallium/tests/graw/fragment-shader/frag-mad.sh new file mode 100644 index 00000000000..413b9dc3916 --- /dev/null +++ b/src/gallium/tests/graw/fragment-shader/frag-mad.sh @@ -0,0 +1,11 @@ +FRAG + +DCL IN[0], COLOR, LINEAR +DCL OUT[0], COLOR + +IMM FLT32 { 0.5, 0.4, 0.6, 1.0 } +IMM FLT32 { 0.5, 0.4, 0.6, 0.0 } + +MAD OUT[0], IN[0], IMM[0], IMM[1] + +END |