Fix check for Outbuf alpha.
authorChris Michael <cp.michael@samsung.com>
Wed, 1 May 2013 08:13:11 +0000 (09:13 +0100)
committerChris Michael <cp.michael@samsung.com>
Wed, 1 May 2013 10:42:05 +0000 (11:42 +0100)
Signed-off-by: Chris Michael <cp.michael@samsung.com>
src/modules/evas/engines/drm/evas_outbuf.c

index 06c8dbc..420e431 100644 (file)
@@ -33,7 +33,7 @@ void
 evas_outbuf_reconfigure(Outbuf *ob, int w, int h, unsigned int rotation, unsigned int depth, Eina_Bool alpha)
 {
    /* check for changes */
-   if ((ob->w == w) && (ob->h == h) && (ob->alpha == alpha) && 
+   if ((ob->w == w) && (ob->h == h) && (ob->destination_alpha == alpha) && 
        (ob->rotation == rotation) && (ob->depth == depth)) return;
 
    /* set new outbuf properties */