summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Michael <cp.michael@samsung.com>2013-05-01 09:11:22 +0100
committerChris Michael <cp.michael@samsung.com>2013-05-01 11:42:05 +0100
commit67c2a381441c882de4ba8c2f2a4f0696b6f8ec38 (patch)
tree4ffe40480c3a1de464f7737d773230920d62901b
parentc7192a56f4ade8f8e330dd9fb3e6f080e9d39f5a (diff)
downloadefl-67c2a381441c882de4ba8c2f2a4f0696b6f8ec38.tar.gz
Ensure destination_alpha is set in Outbuf when we (re)configure.
Signed-off-by: Chris Michael <cp.michael@samsung.com>
-rw-r--r--src/modules/evas/engines/drm/evas_outbuf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/evas/engines/drm/evas_outbuf.c b/src/modules/evas/engines/drm/evas_outbuf.c
index 84a435efc8..06c8dbc7ba 100644
--- a/src/modules/evas/engines/drm/evas_outbuf.c
+++ b/src/modules/evas/engines/drm/evas_outbuf.c
@@ -16,6 +16,7 @@ evas_outbuf_setup(int w, int h, unsigned int rotation, unsigned int depth, Eina_
ob->h = h;
ob->rotation = rotation;
ob->depth = depth;
+ ob->destination_alpha = alpha;
/* return the allocated outbuf structure */
return ob;
@@ -40,5 +41,5 @@ evas_outbuf_reconfigure(Outbuf *ob, int w, int h, unsigned int rotation, unsigne
ob->h = h;
ob->rotation = rotation;
ob->depth = depth;
- ob->alpha = alpha;
+ ob->destination_alpha = alpha;
}