Clone of mesa.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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