devilhorns pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=6a06b8d7f22a13cac4d56fd903cf081d1f0e8f97

commit 6a06b8d7f22a13cac4d56fd903cf081d1f0e8f97
Author: Chris Michael <cp.mich...@samsung.com>
Date:   Tue Oct 14 13:52:26 2014 -0400

    add start of new compositor
    
    Signed-off-by: Chris Michael <cp.mich...@samsung.com>
---
 src/bin/e_comp_wl.c | 33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/src/bin/e_comp_wl.c b/src/bin/e_comp_wl.c
new file mode 100644
index 0000000..e99b1f1
--- /dev/null
+++ b/src/bin/e_comp_wl.c
@@ -0,0 +1,33 @@
+#define E_COMP_WL
+#include "e.h"
+
+#define COMPOSITOR_VERSION 3
+
+#define E_COMP_WL_PIXMAP_CHECK \
+   if (e_pixmap_type_get(ec->pixmap) != E_PIXMAP_TYPE_WL) return
+
+/* public functions */
+EAPI Eina_Bool 
+e_comp_wl_init(void)
+{
+   return EINA_FALSE;
+}
+
+EAPI struct wl_signal 
+e_comp_wl_surface_create_signal_get(E_Comp *comp)
+{
+   return comp->wl_comp_data->signals.surface.create;
+}
+
+/* internal functions */
+EINTERN void 
+e_comp_wl_shutdown(void)
+{
+
+}
+
+EINTERN struct wl_resource *
+e_comp_wl_surface_create(struct wl_client *client, int version, uint32_t id)
+{
+   return NULL;
+}

-- 


Reply via email to