From: Keith Whitwell Date: Wed, 2 Nov 2005 12:58:38 +0000 (+0000) Subject: More useful ARL test X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e4894177ba725c85f75bfe87bdc03d2c94b0941b;p=mesa.git More useful ARL test --- diff --git a/progs/vp/arl.txt b/progs/vp/arl.txt index da6c9f83fa8..a262b0149c6 100644 --- a/progs/vp/arl.txt +++ b/progs/vp/arl.txt @@ -1,9 +1,9 @@ !!ARBvp1.0 -PARAM arr[5] = { {1,0,0,1}, {0,1,0,1}, {0,0,1,1}, {1,0,1,1}, {0,1,1,1} }; +PARAM arr[5] = { {0,1,2,3}, {4,5,6,7}, {8,9,10,11}, {12,13,14,14}, {16,17,18,19} }; ADDRESS addr; TEMP R0; -MUL R0, {5.0}.x, vertex.color; +MAD R0, {5.0}.x, vertex.color, {2.0}.x; ARL addr.x, R0.x; -MOV result.color, arr[addr.x]; +MUL result.color, arr[addr.x-2], {.07}.x; MOV result.position, vertex.position; END