summaryrefslogtreecommitdiff
path: root/py/tests/test.py
diff options
context:
space:
mode:
Diffstat (limited to 'py/tests/test.py')
-rwxr-xr-xpy/tests/test.py19
1 files changed, 3 insertions, 16 deletions
diff --git a/py/tests/test.py b/py/tests/test.py
index 7bb1f28..61750dc 100755
--- a/py/tests/test.py
+++ b/py/tests/test.py
@@ -43,22 +43,9 @@ card.disable_planes()
req = pykms.AtomicReq(card)
-req.add(conn, "CRTC_ID", crtc.id)
-
-req.add(crtc, {"ACTIVE": 1,
- "MODE_ID": modeb.id})
-
-req.add(plane, {"FB_ID": fb.id,
- "CRTC_ID": crtc.id,
- "SRC_X": 0 << 16,
- "SRC_Y": 0 << 16,
- "SRC_W": mode.hdisplay << 16,
- "SRC_H": mode.vdisplay << 16,
- "CRTC_X": 0,
- "CRTC_Y": 0,
- "CRTC_W": mode.hdisplay,
- "CRTC_H": mode.vdisplay,
- "zpos": 0})
+req.add_connector(conn, crtc)
+req.add_crtc(crtc, modeb)
+req.add_plane(plane, fb, crtc, dst=(0, 0, mode.hdisplay, mode.vdisplay))
req.commit_sync(allow_modeset = True)