~mmach/netext73/mesa-haswell

« back to all changes in this revision

Viewing changes to src/gallium/tests/graw/fragment-shader/frag-mad-immx.sh

  • Committer: mmach
  • Date: 2022-09-22 19:56:13 UTC
  • Revision ID: netbit73@gmail.com-20220922195613-wtik9mmy20tmor0i
2022-09-22 21:17:09

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
FRAG
2
 
 
3
 
DCL IN[0], COLOR, LINEAR
4
 
DCL OUT[0], COLOR
5
 
DCL IMMX[0..1]  {{ 0.5, 0.4, 0.6, 1.0 },
6
 
                 { 0.5, 0.4, 0.6, 0.0 }}
7
 
 
8
 
MAD OUT[0], IN[0], IMMX[0], IMMX[1]
9
 
 
10
 
END