summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2015-10-29 11:11:57 +0200
committerTomi Valkeinen <tomi.valkeinen@ti.com>2015-10-29 11:12:13 +0200
commit6962ec7c8f3abbf3b9ebe87cbcb15491e79499b1 (patch)
treecadf835a7ee7f32fcd220e0844d2f01f3b57f1a5 /tests
parentec11751d5d3d0122262c1cfc6cf299ab37c705a6 (diff)
db: disable plane support for now
Diffstat (limited to 'tests')
-rw-r--r--tests/db.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/db.cpp b/tests/db.cpp
index ada85e0..6131263 100644
--- a/tests/db.cpp
+++ b/tests/db.cpp
@@ -193,14 +193,14 @@ int main()
Plane* plane = 0;
-
+#if 0 // disable the plane for now
for (Plane* p : crtc->get_possible_planes()) {
if (p->plane_type() == PlaneType::Overlay) {
plane = p;
break;
}
}
-
+#endif
OutputFlipHandler* output;
if (plane)
output = new OutputFlipHandler(conn, crtc, mode, plane, 500, 400);