summaryrefslogtreecommitdiff
path: root/py/iact.py
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>2017-01-02 16:42:08 +0200
committerTomi Valkeinen <tomi.valkeinen@ti.com>2017-01-03 10:46:42 +0200
commitb11baff09f78a4a383f817ec35208ae8966ab832 (patch)
tree610e89719c4a3d9714a472cdc6681e36df419a1b /py/iact.py
parentc6f964425cdec25e3d0ecd0054d398d3420fdfeb (diff)
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 <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'py/iact.py')
-rwxr-xr-xpy/iact.py43
1 files changed, 0 insertions, 43 deletions
diff --git a/py/iact.py b/py/iact.py
deleted file mode 100755
index fecd899..0000000
--- a/py/iact.py
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/usr/bin/python3 -i
-
-# This is a base script for interactive kms++ python environment
-
-import pykms
-from time import sleep
-from math import sin
-from math import cos
-from helpers import *
-
-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, 200, 200, "XR24");
-pykms.draw_test_pattern(fb);
-
-#crtc.set_mode(conn, fb, mode)
-
-i = 0
-for p in card.planes:
- globals()["plane"+str(i)] = p
- i=i+1
-
-i = 0
-for c in card.crtcs:
- globals()["crtc"+str(i)] = c
- i=i+1
-
-for p in crtc.possible_planes:
- if p.plane_type == pykms.PlaneType.Overlay:
- plane = p
- break
-
-def set_plane(x, y):
- crtc.set_plane(plane, fb, x, y, fb.width, fb.height, 0, 0, fb.width, fb.height)
-
-set_plane(0, 0)
-
-# for x in range(0, crtc.width() - fb.width()): set_plane(x, int((sin(x/50) + 1) * 100)); sleep(0.01)