Stop copying all wayland buffers

The new buffer management shouldn't require this anymore.
This commit is contained in:
Derek Foreman 2016-02-16 15:48:24 -06:00 committed by Mike Blumenkrantz
parent 20303989de
commit 388ec769c0
1 changed files with 1 additions and 10 deletions

View File

@ -3726,16 +3726,7 @@ e_comp_object_render(Evas_Object *obj)
}
else
ret = EINA_TRUE;
/* set pixel data */
if (e_comp->comp_type == E_PIXMAP_TYPE_WL)
{
#warning FIXME BROKEN WAYLAND SHM BUFFER PROTOCOL
evas_object_image_data_copy_set(cw->obj, cw->blanked ? NULL : pix);
pix = evas_object_image_data_get(cw->obj, 0);
evas_object_image_data_set(cw->obj, pix);
}
else
evas_object_image_data_set(cw->obj, cw->blanked ? NULL : pix);
evas_object_image_data_set(cw->obj, cw->blanked ? NULL : pix);
goto end;
}