Add Outbuf Depth enum.
authorChristopher Michael <cp.michael@samsung.com>
Thu, 24 Jan 2013 09:14:04 +0000 (09:14 +0000)
committerChristopher Michael <cpmichael1@comcast.net>
Thu, 24 Jan 2013 09:14:04 +0000 (09:14 +0000)
Signed-off-by: Christopher Michael <cp.michael@samsung.com>
SVN revision: 83214

src/modules/evas/engines/wayland_shm/evas_engine.h

index d883ad7..815b823 100644 (file)
@@ -29,3 +29,13 @@ extern int _evas_engine_way_shm_log_dom;
 # define CRIT(...) EINA_LOG_DOM_CRIT(_evas_engine_way_shm_log_dom, __VA_ARGS__)
 
 # include <wayland-client.h>
+
+typedef enum _Outbuf_Depth Outbuf_Depth;
+
+enum _Outbuf_Depth
+{
+   OUTBUF_DEPTH_NONE,
+     OUTBUF_DEPTH_ARGB_32BPP_8888_8888,
+     OUTBUF_DEPTH_RGB_32BPP_8888_8888,
+     OUTBUF_DEPTH_LAST
+};