diff --git a/src/modules/evas/engines/wayland_shm/evas_outbuf.c b/src/modules/evas/engines/wayland_shm/evas_outbuf.c index e477423a75..b25242fe99 100644 --- a/src/modules/evas/engines/wayland_shm/evas_outbuf.c +++ b/src/modules/evas/engines/wayland_shm/evas_outbuf.c @@ -12,7 +12,7 @@ Eina_Bool _evas_surface_init(Surface *s, int w, int h, int num_buf) { - if (getenv("EVAS_WAYLAND_SHM_USE_DMABUF")) + if (!getenv("EVAS_WAYLAND_SHM_DISABLE_DMABUF")) if (_evas_dmabuf_surface_create(s, w, h, num_buf)) return EINA_TRUE; if (_evas_shm_surface_create(s, w, h, num_buf)) return EINA_TRUE;