~ubuntu-branches/ubuntu/trusty/mesa-lts-utopic/trusty-proposed

« back to all changes in this revision

Viewing changes to src/gallium/tests/graw/vertex-shader/vert-srcmod-abs.sh

  • Committer: Package Import Robot
  • Author(s): Maarten Lankhorst
  • Date: 2015-01-06 10:38:32 UTC
  • Revision ID: package-import@ubuntu.com-20150106103832-u6rqp9wfmojb1gnu
Tags: upstream-10.3.2
ImportĀ upstreamĀ versionĀ 10.3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
VERT
 
2
 
 
3
DCL IN[0]
 
4
DCL IN[1]
 
5
DCL OUT[0], POSITION
 
6
DCL OUT[1], COLOR
 
7
DCL TEMP[0]
 
8
 
 
9
IMM FLT32 { 0.1, 0.1, 0.0, 0.0 }
 
10
 
 
11
ADD TEMP[0], IN[0], IMM[0]
 
12
MOV OUT[0], |TEMP[0]|
 
13
MOV OUT[1], IN[1]
 
14
 
 
15
END