On a swapbuf reconfigure, don't check for alpha changing state.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2013-09-10 14:28:18 +01:00
parent 4ece1a1f9f
commit 6d3c50c3b6
1 changed files with 2 additions and 2 deletions

View File

@ -96,8 +96,8 @@ evas_swapbuf_reconfigure(Outbuf *ob, int x, int y, int w, int h, unsigned int ro
if (!ob) return;
/* check that something was actually changed */
if ((ob->w == w) && (ob->h == h) && (ob->rotation == rotation) &&
(ob->depth == depth) && (ob->priv.destination_alpha == alpha))
if ((ob->w == w) && (ob->h == h) &&
(ob->rotation == rotation) && (ob->depth == depth))
return;
/* set some properties */