summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMinkyoung Kim <mer.kim@samsung.com>2015-03-31 14:13:06 +0900
committerJean-Philippe Andre <jp.andre@samsung.com>2015-03-31 14:23:57 +0900
commit22fafce84d015368ac4838d7fd129f76218df9da (patch)
tree9180b9bbf3ed0df8c78f37013bb43068809227cd
parent6ee3805cf44435bf7f4e8e382329ea0933a676b9 (diff)
downloadefl-22fafce84d015368ac4838d7fd129f76218df9da.tar.gz
evas/software_x11: Environment can influence the flow when the value is 1 not else.
Summary: Do not try swapbuf init only if value of env 'EVAS_NO_DRI_SWAPBUF' is 1. Reviewers: jpeg Subscribers: spacegrapher, cedric, wonsik Differential Revision: https://phab.enlightenment.org/D2259
-rw-r--r--src/modules/evas/engines/software_x11/evas_engine.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/modules/evas/engines/software_x11/evas_engine.c b/src/modules/evas/engines/software_x11/evas_engine.c
index 65bb4df23d..91cf336cf6 100644
--- a/src/modules/evas/engines/software_x11/evas_engine.c
+++ b/src/modules/evas/engines/software_x11/evas_engine.c
@@ -442,10 +442,15 @@ eng_setup(Evas *eo_e, void *in)
if (info->info.backend == EVAS_ENGINE_INFO_SOFTWARE_X11_BACKEND_XLIB)
{
static int try_swapbuf = -1;
+ char* s;
if (try_swapbuf == -1)
{
- if (getenv("EVAS_NO_DRI_SWAPBUF")) try_swapbuf = 0;
+ if ((s = getenv("EVAS_NO_DRI_SWAPBUF")) != NULL)
+ {
+ if (atoi(s) == 1) try_swapbuf = 0;
+ else try_swapbuf = 1;
+ }
else try_swapbuf = 1;
}
if (try_swapbuf)
@@ -459,7 +464,7 @@ eng_setup(Evas *eo_e, void *in)
info->info.mask, info->info.shape_dither,
info->info.destination_alpha);
if (re) re->outbuf_alpha_get = evas_software_xlib_swapbuf_alpha_get;
- else if (!re)
+ else
{
re = _output_xlib_setup(e->output.w, e->output.h,
info->info.rotation, info->info.connection,