diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-03-16 18:31:01 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-03-16 18:31:01 +0100 |
commit | da67a3b4652dfd8f61999e83b43896a23cc08fc5 (patch) | |
tree | 081b8bf95c2268ed1b50ed1fb762dbf21a582682 /examples | |
parent | cie_invert takes only one argument (diff) | |
download | blueshift-da67a3b4652dfd8f61999e83b43896a23cc08fc5.tar.gz blueshift-da67a3b4652dfd8f61999e83b43896a23cc08fc5.tar.bz2 blueshift-da67a3b4652dfd8f61999e83b43896a23cc08fc5.tar.xz |
fix cie_invert
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/lisp-esque | 2 | ||||
-rw-r--r-- | examples/lisp-esque.conf | 19 |
2 files changed, 11 insertions, 10 deletions
diff --git a/examples/lisp-esque b/examples/lisp-esque index 0ec3551..61e1586 100644 --- a/examples/lisp-esque +++ b/examples/lisp-esque @@ -496,7 +496,7 @@ class CIEInvert: def __init__(self): self.monitors = [(False, False, False, False, False, False)] def __call__(self, monitor, alpha): - cie_invert(self.monitors[monitor][3 if alpha == 0 else 0]) + cie_invert(*(self.monitors[monitor][3 if alpha == 0 else 0:][:3])) def _invert(mods, args): ''' diff --git a/examples/lisp-esque.conf b/examples/lisp-esque.conf index 4e6a8e1..19ee95c 100644 --- a/examples/lisp-esque.conf +++ b/examples/lisp-esque.conf @@ -132,15 +132,16 @@ ; The two above combined: (icc:filter (nil nil nil) (nil nil nil)) ; Negative image settings. - (negative no) ; Does nothing - ; (negative yes) ; Inverts the colours on the encoding axes - ; (negative) ; Synonym for the above - ; (negative (yes no no)) ; Inverts the red colour on the encoding axis - ; (negative yes no) ; Inverts the colours on the encoding axes on the first monitor - ; ; but not the second monitor selected by (monitors) - ; (invert yes) ; Inverts the colours on the output axes using the sRGB colour space - ; (invert (yes no no)) ; Inverts the red colour on the output axes using the sRGB colour space - ; (invert:cie yes) ; Inverts the colours on the output axes using the CIE xyY colour space + (negative no) ; Does nothing + ; (negative yes) ; Inverts the colours on the encoding axes + ; (negative) ; Synonym for the above + ; (negative (yes no no)) ; Inverts the red colour on the encoding axis + ; (negative yes no) ; Inverts the colours on the encoding axes on the first monitor + ; ; but not the second monitor selected by (monitors) + ; (invert yes) ; Inverts the colours on the output axes using the sRGB colour space + ; (invert (yes no no)) ; Inverts the red colour on the output axes using the sRGB colour space + ; (invert:cie yes) ; Inverts the colours on the output axes using the CIE xyY colour space + ; (invert:cie (yes no no)) ; Inverts the red colour on the output axes using the CIE xyY colour space ; These cannot be time dependent. ; Colour temperature at high day and high night, respectively. |