evas-wayland-shm: Keep tile buffers in sync with size changes

Previous patch to not destroy Outbuf on resize should not have removed
this line else software generic tilebuffers will not be in sync with
the updated size.

ref 5ebba4463

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2016-12-06 14:13:00 -05:00
parent 9941fbc044
commit 673b735917
1 changed files with 7 additions and 1 deletions

View File

@ -164,7 +164,13 @@ eng_setup(Evas *eo_evas, void *info)
goto err;
}
else if ((einfo->info.wl_surface) && (!einfo->info.hidden))
eng_output_resize(re, epd->output.w, epd->output.h);
{
eng_output_resize(re, epd->output.w, epd->output.h);
evas_render_engine_software_generic_update(&re->generic,
re->generic.ob,
epd->output.w,
epd->output.h);
}
epd->engine.data.output = re;
if (!epd->engine.data.output)