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.

negate.txt 168B

123456
  1. !!ARBfp1.0
  2. # this should result in fragment color passing through unchanged
  3. TEMP R0;
  4. ADD R0, fragment.color, fragment.color;
  5. ADD result.color, R0, -fragment.color;
  6. END