Fix check for Outbuf alpha.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2013-05-01 09:13:11 +01:00
parent 67c2a38144
commit 1f229105f4
1 changed files with 1 additions and 1 deletions

View 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 */