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.

psiz-param-clamp.txt 209B

12345678910
  1. !!ARBvp1.0
  2. TEMP R0;
  3. TEMP R1;
  4. MOV result.color, vertex.color;
  5. MUL R0.x, vertex.color.x, {10.0}.x;
  6. MAX R0.x, R0.x, {2.0}.x;
  7. MIN result.pointsize.x, R0.x, {4.0}.x;
  8. MOV result.position, vertex.position;
  9. END