From 3f0a0230676d9d38ec677f88143222ffd70a9f7d Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Tue, 8 Mar 2016 13:49:00 +0200 Subject: py improvements --- py/iact.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'py/iact.py') diff --git a/py/iact.py b/py/iact.py index b4b5f44..073e4ca 100755 --- a/py/iact.py +++ b/py/iact.py @@ -20,6 +20,16 @@ crtc = conn.get_current_crtc() #crtc.set_mode(conn, fb, mode) +i = 0 +for p in card.get_planes(): + globals()["plane"+str(i)] = p + i=i+1 + +i = 0 +for c in card.get_crtcs(): + globals()["crtc"+str(i)] = c + i=i+1 + for p in crtc.get_possible_planes(): if p.plane_type() == 0: plane = p @@ -28,6 +38,13 @@ for p in crtc.get_possible_planes(): def set_plane(x, y): crtc.set_plane(plane, fb, x, y, fb.width(), fb.height(), 0, 0, fb.width(), fb.height()) +def props(o): + o.refresh_props() + map = o.get_prop_map() + for propid in map: + prop = card.get_prop(propid) + print("%-15s %d (%#x)" % (prop.name(), map[propid], map[propid])) + 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) -- cgit v1.2.3