summaryrefslogtreecommitdiff
path: root/py/gamma.py
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2016-05-26 14:12:15 +0300
committerTomi Valkeinen <tomi.valkeinen@ti.com>2016-05-26 14:12:15 +0300
commitcc46d8d920dfd2c37ae87721f0309a17891cb6a1 (patch)
tree521f2a147de04c46a8c93258f3f0f8a502679f1f /py/gamma.py
parent8d50744ceb140019b805ed1b246194300e41a5f1 (diff)
py: add set_prop()
Diffstat (limited to 'py/gamma.py')
-rw-r--r--py/gamma.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/py/gamma.py b/py/gamma.py
index c8da18f..7ecd19d 100644
--- a/py/gamma.py
+++ b/py/gamma.py
@@ -32,14 +32,10 @@ for i in range(256):
gamma = pykms.Blob(card, arr);
-set_props(crtc, {
- "GAMMA_LUT": gamma.id,
-})
+set_prop(crtc, "GAMMA_LUT", gamma.id)
input("press enter to remove gamma\n")
-set_props(crtc, {
- "GAMMA_LUT": 0,
-})
+set_prop(crtc, "GAMMA_LUT", 0)
input("press enter to exit\n")