summaryrefslogtreecommitdiff
path: root/py/trans-test.py
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2016-05-20 22:09:35 +0300
committerTomi Valkeinen <tomi.valkeinen@ti.com>2016-05-23 09:43:27 +0300
commit6d13ebbb8b9854713a5597df71a12f8dd9a36c34 (patch)
tree874148f1f3be655df557e01ecefe03570b0dbe47 /py/trans-test.py
parentd37da4a303ab2760103ef8302cb1778f8860f16f (diff)
Use pybind11 instead of SWIG
Diffstat (limited to 'py/trans-test.py')
-rwxr-xr-xpy/trans-test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/trans-test.py b/py/trans-test.py
index d2e6050..57855ff 100755
--- a/py/trans-test.py
+++ b/py/trans-test.py
@@ -15,7 +15,7 @@ mode = conn.get_default_mode()
crtc = conn.get_current_crtc()
planes = []
-for p in card.get_planes():
+for p in card.planes:
if p.supports_crtc(crtc) == False:
continue
planes.append(p)