evas-wayland-shm: Update software_generic render engine size on output resize

Summary: As we override the software_generic function for
eng_output_resize, so we can handle resize edges, we should also be
updating the software_generic's render engine size here because the
function for software_generic->output_resize never gets called.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-04-29 14:23:24 -04:00
parent c4e9d29441
commit 7c1da6cdfa
1 changed files with 3 additions and 0 deletions

View File

@ -217,6 +217,9 @@ eng_output_resize(void *data, int w, int h)
evas_common_tilebuf_free(re->generic.tb);
if ((re->generic.tb = evas_common_tilebuf_new(w, h)))
evas_common_tilebuf_set_tile_size(re->generic.tb, TILESIZE, TILESIZE);
re->generic.w = w;
re->generic.h = h;
}
/* EVAS MODULE FUNCTIONS */