Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

arl.txt 262B

123456789
  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