summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Michael <cp.michael@samsung.com>2013-02-27 13:36:26 +0000
committerChristopher Michael <cp.michael@samsung.com>2013-02-27 13:36:26 +0000
commitb2e0c9efd9a86b864102a4c18560ccc264fe52a8 (patch)
tree3a7d849642fcac409b3894bd70d789fb31146866
parent12a6ef11bb0a70e6206cf7ebccd901438606267f (diff)
downloadefl-b2e0c9efd9a86b864102a4c18560ccc264fe52a8.tar.gz
Add new header file for Evas Wayland Egl engine.
Signed-off-by: Christopher Michael <cp.michael@samsung.com>
-rw-r--r--src/modules/evas/engines/wayland_egl/Evas_Engine_Wayland_Egl.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/modules/evas/engines/wayland_egl/Evas_Engine_Wayland_Egl.h b/src/modules/evas/engines/wayland_egl/Evas_Engine_Wayland_Egl.h
new file mode 100644
index 0000000000..9d5fd7c8a7
--- /dev/null
+++ b/src/modules/evas/engines/wayland_egl/Evas_Engine_Wayland_Egl.h
@@ -0,0 +1,47 @@
+#ifndef _EVAS_ENGINE_WAYLAND_EGL_H
+# define _EVAS_ENGINE_WAYLAND_EGL_H
+
+# include <wayland-client.h>
+
+# define EVAS_ENGINE_WAYLAND_EGL_SWAP_MODE_EXISTS 1
+
+typedef enum _Evas_Engine_Info_Wayland_Egl_Swap_Mode
+{
+ EVAS_ENGINE_WAYLAND_EGL_SWAP_MODE_AUTO = 0,
+ EVAS_ENGINE_WAYLAND_EGL_SWAP_MODE_FULL = 1,
+ EVAS_ENGINE_WAYLAND_EGL_SWAP_MODE_COPY = 2,
+ EVAS_ENGINE_WAYLAND_EGL_SWAP_MODE_DOUBLE = 3,
+ EVAS_ENGINE_WAYLAND_EGL_SWAP_MODE_TRIPLE = 4
+} Evas_Engine_Info_Wayland_Egl_Swap_Mode;
+
+typedef struct _Evas_Engine_Info_Wayland_Egl Evas_Engine_Info_Wayland_Egl;
+
+struct _Evas_Engine_Info_Wayland_Egl
+{
+ Evas_Engine_Info magic;
+
+ struct
+ {
+ struct wl_display *display;
+ struct wl_surface *surface;
+ int rotation;
+ int edges;
+ Eina_Bool destination_alpha : 1;
+ } info;
+
+ struct
+ {
+ void (*pre_swap) (void *data, Evas *evas);
+ void (*post_swap) (void *data, Evas *evas);
+ void *data;
+ } callback;
+
+ Evas_Engine_Render_Mode render_mode;
+
+ Eina_Bool vsync : 1;
+ Eina_Bool indirect : 1;
+
+ unsigned char swap_mode : 4;
+};
+
+#endif