~ubuntu-branches/ubuntu/oneiric/mesa-demos/oneiric

« back to all changes in this revision

Viewing changes to src/vp/arl.txt

  • Committer: Bazaar Package Importer
  • Author(s): Christopher James Halse Rogers
  • Date: 2010-09-27 16:18:27 UTC
  • Revision ID: james.westby@ubuntu.com-20100927161827-1yfgolc1oy9sjhi8
Tags: upstream-8.0.1
ImportĀ upstreamĀ versionĀ 8.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
!!ARBvp1.0
 
2
PARAM arr[5]  = { {0,1,2,3}, {4,5,6,7}, {8,9,10,11}, {12,13,14,14}, {16,17,18,19} };
 
3
ADDRESS addr;
 
4
TEMP R0;
 
5
MAD R0, {5.0}.x, vertex.color, {2.0}.x; 
 
6
ARL addr.x, R0.x;
 
7
MUL result.color, arr[addr.x-2], {.07}.x;
 
8
MOV result.position, vertex.position;
 
9
END