* evas: gl_x11 window can't support alpha, as drawing rect with

alpha=0 is not possible.


SVN revision: 41769
This commit is contained in:
Cedric BAIL 2009-08-14 17:11:08 +00:00
parent 67418404d0
commit 443fe5fc8e
1 changed files with 7 additions and 0 deletions

View 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);