* evas: gl_x11 window can't support alpha, as drawing rect with
authorcedric <cedric@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 14 Aug 2009 17:11:08 +0000 (17:11 +0000)
committercedric <cedric@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 14 Aug 2009 17:11:08 +0000 (17:11 +0000)
alpha=0 is not possible.

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/evas@41769 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/modules/engines/gl_x11/evas_engine.c

index 8eb5576..14cbed8 100644 (file)
@@ -1086,6 +1086,12 @@ eng_best_depth_get(Display *disp, int screen)
    return _evas_gl_x11_vi->depth;
 }
 
+static Eina_Bool
+eng_canvas_alpha_get(void *data __UNUSED__, void *info __UNUSED__)
+{
+   return EINA_FALSE;
+}
+
 static int
 module_open(Evas_Module *em)
 {
@@ -1099,6 +1105,7 @@ module_open(Evas_Module *em)
    ORD(info);
    ORD(info_free);
    ORD(setup);
+   ORD(canvas_alpha_get);
    ORD(output_free);
    ORD(output_resize);
    ORD(output_tile_size_set);