summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Michael <cp.michael@samsung.com>2016-12-06 14:05:19 -0500
committerChris Michael <cp.michael@samsung.com>2016-12-06 14:05:19 -0500
commit29325b790316495455c97a4386261c80ab3af3ec (patch)
tree2c2a78fca721daa69ca27e9e9dce5dccefb0759a
parent08bb6b1eec01a2ee05be8004a476a639fe2cd34d (diff)
downloadefl-29325b790316495455c97a4386261c80ab3af3ec.tar.gz
evas-drm: Keep tile buffers in sync with size changes
This line should not have been removed from the previous patch. Thanks to Cedric for catching this. Signed-off-by: Chris Michael <cp.michael@samsung.com>
-rw-r--r--src/modules/evas/engines/drm/evas_engine.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/modules/evas/engines/drm/evas_engine.c b/src/modules/evas/engines/drm/evas_engine.c
index 7fe688c06a..4c6ff0f387 100644
--- a/src/modules/evas/engines/drm/evas_engine.c
+++ b/src/modules/evas/engines/drm/evas_engine.c
@@ -96,6 +96,11 @@ eng_setup(Evas *evas, void *einfo)
{
_outbuf_reconfigure(re->generic.ob, epd->output.w, epd->output.h,
info->info.rotation, info->info.depth);
+
+ evas_render_engine_software_generic_update(&re->generic,
+ re->generic.ob,
+ epd->output.w,
+ epd->output.h);
}
epd->engine.data.output = re;