Created
October 19, 2011 00:28
-
-
Save th0ma5w/1297161 to your computer and use it in GitHub Desktop.
dim blue-green (traffic light mix) color filter for compiz
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!!ARBfp1.0 | |
TEMP tex, temp; | |
TEX tex, fragment.texcoord[0], texture[0], RECT; | |
DP3 temp.r, tex, {0.01, 0.01, 0.01, 0}; | |
DP3 temp.g, tex, {0.05, 0.05, 0.05, 0}; | |
DP3 temp.b, tex, {0.04, 0.04, 0.04, 0}; | |
MOV temp.a, tex.a; | |
MOV result.color, temp; | |
END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment