From b11baff09f78a4a383f817ec35208ae8966ab832 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Mon, 2 Jan 2017 16:42:08 +0200 Subject: py: Reorganize source directory Separate the Python bindings sources from the test scripts. While at it, remove the unneeded run.sh script. Signed-off-by: Laurent Pinchart --- py/tests/gamma.py | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100755 py/tests/gamma.py (limited to 'py/tests/gamma.py') diff --git a/py/tests/gamma.py b/py/tests/gamma.py new file mode 100755 index 0000000..a6b68cc --- /dev/null +++ b/py/tests/gamma.py @@ -0,0 +1,41 @@ +#!/usr/bin/python3 + +import pykms +from helpers import * + +# This hack makes drm initialize the fbcon, setting up the default connector +card = pykms.Card() +card = 0 + +card = pykms.Card() +res = pykms.ResourceManager(card) +conn = res.reserve_connector() +crtc = res.reserve_crtc(conn) +mode = conn.get_default_mode() + +fb = pykms.DumbFramebuffer(card, mode.hdisplay, mode.vdisplay, "XR24"); +pykms.draw_test_pattern(fb); + +crtc.set_mode(conn, fb, mode) + +len=256 +arr = bytearray(len*2*4) +view = memoryview(arr).cast("H") + +for i in range(len): + g = round(65535 * pow(i / float(len), 1 / 2.2)) + + view[i * 4 + 0] = g + view[i * 4 + 1] = g + view[i * 4 + 2] = g + view[i * 4 + 3] = 0 + +gamma = pykms.Blob(card, arr); + +set_prop(crtc, "GAMMA_LUT", gamma.id) + +input("press enter to remove gamma\n") + +set_prop(crtc, "GAMMA_LUT", 0) + +input("press enter to exit\n") -- cgit v1.2.3