re-generate configure script
[rofl0r-gnuboy.git] / etc / filters.rc
blob5fbdc352c796dad51f6681f1780f6ba358332e86
3 # Explanation of the filters:
4
5 # If, for example, red is set to "a b c d",
6 # where a, b, c, and d are four numbers,
7 # then the output red value for a given input
8 # color will be computed as follows:
10 # output_red = ( a * input_red +
11 #                b * input_green +
12 #                c * input_blue ) / 256 + d
14 # So, a, b, and c are scale factors
15 # (out of 256) for how much weight the input
16 # red, green, and blue components have in the
17 # output color, and d is a constant base
18 # value for the output.
20 # Below are some sample filters, which should
21 # make everything more clear.
24 # Default filter as of 1.0.3
25 set red   195  25   0  35
26 set green  25 170  25  35
27 set blue   25  60 125  40
29 # Do-nothing filer
30 set red   256   0   0   0
31 set green   0 256   0   0
32 set blue    0   0 256   0
34 # Lighten the display uniformly
35 set red   128   0   0 128
36 set green   0 128   0 128
37 set blue    0   0 128 128
39 # Grayscale
40 set red    85  85  85   0
41 set green  85  85  85   0
42 set blue   85  85  85   0