summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorNobuhiko Tanibata <ntanibata@jp.adit-jv.com>2012-04-11 16:21:54 +0900
committerMichael Schuldt <michael.schuldt@bmw.de>2012-04-12 09:37:13 +0200
commit890c3bc39acb726ef20d25169a69b9dbe8b2a7db (patch)
tree2d416faf36bbc72f0b40a977a6a9ff315f0f98f4 /config
parent9fd035aea52c9d138ddb8ef4e3c276e1c27c1134 (diff)
downloadlayer_management-890c3bc39acb726ef20d25169a69b9dbe8b2a7db.tar.gz
LayerManagerPlugins: X11 backend for Wayland
WindowSystems: - Add WaylandBaseWindowSystem - Add WaylandFbdevWindowSystem for fbdev backend of Wayland - Add WaylandX11WindowSystem for X11 backend of Wayland TextureBinders: - Add EglImage for Wayland WaylandGLESRenderer: - Add X11 backend for Wayland
Diffstat (limited to 'config')
-rw-r--r--config/res/config.h.cmake9
1 files changed, 9 insertions, 0 deletions
diff --git a/config/res/config.h.cmake b/config/res/config.h.cmake
index 60a57e7..829ea46 100644
--- a/config/res/config.h.cmake
+++ b/config/res/config.h.cmake
@@ -1,6 +1,7 @@
/***************************************************************************
*
* Copyright 2010,2011 BMW Car IT GmbH
+ * Copyright (C) 2011 DENSO CORPORATION and Robert Bosch Car Multimedia Gmbh
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -76,6 +77,12 @@
// use OpenGL ES 2.0 / Wayland renderer
#cmakedefine WITH_WAYLAND
+// use fbdev for wayland backend
+#cmakedefine WITH_WAYLAND_FBDEV
+
+// use x11 for wayland backend
+#cmakedefine WITH_WAYLAND_X11
+
// use xthreads library
#cmakedefine WITH_XTHREADS
@@ -102,5 +109,7 @@
LOG_DEBUG("Config", "WITH_TESTS = ${WITH_TESTS}"); \
LOG_DEBUG("Config", "WITH_X11_GLES = ${WITH_X11_GLES}"); \
LOG_DEBUG("Config", "WITH_WAYLAND = ${WITH_WAYLAND}"); \
+ LOG_DEBUG("Config", "WITH_WAYLAND_FBDEV = ${WITH_WAYLAND_FBDEV}"); \
+ LOG_DEBUG("Config", "WITH_WAYLAND_X11 = ${WITH_WAYLAND_X11}"); \
LOG_DEBUG("Config", "WITH_XTHREADS = ${WITH_XTHREADS}"); \
LOG_DEBUG("Config", "WITH_DLT = ${WITH_DLT}");