ecore wl2 - fall back to shm if dmabuf fails in buf init
authorCarsten Haitzler (Rasterman) <raster@rasterman.com>
Sun, 21 Jul 2019 23:36:07 +0000 (00:36 +0100)
committerSangHyeon Jade Lee <sh10233.lee@samsung.com>
Tue, 23 Jul 2019 05:04:43 +0000 (14:04 +0900)
so even if shm was an allowed mode/flag, we never fell back to shm if
dmabufs were not possible (/dev/dri/renderD128  didn't exist or wansn't
open-able). that's decidedly a bad thing to do.

@fix

src/lib/ecore_wl2/ecore_wl2_buffer.c

index 5d8a577..99cf1ff 100644 (file)
@@ -558,12 +558,17 @@ ecore_wl2_buffer_init(Ecore_Wl2_Display *ewd, Ecore_Wl2_Buffer_Type types)
    if (!getenv("EVAS_WAYLAND_SHM_DISABLE_DMABUF") && dmabuf)
      {
         fd = open("/dev/dri/renderD128", O_RDWR | O_CLOEXEC);
-        if (fd < 0) goto err_drm;
+        if (fd < 0)
+          {
+             ERR("Tried to use dmabufs, but can't find /dev/dri/renderD128 . Falling back to regular SHM");
+             goto fallback_shm;
+          }
 
         success = _intel_buffer_manager_setup(fd);
         if (!success) success = _exynos_buffer_manager_setup(fd);
         if (!success) success = _vc4_buffer_manager_setup(fd);
      }
+fallback_shm:
    if (!success) success = shm && _wl_shm_buffer_manager_setup(0);
    if (!success) goto err_bm;
 
@@ -573,7 +578,6 @@ ecore_wl2_buffer_init(Ecore_Wl2_Display *ewd, Ecore_Wl2_Buffer_Type types)
 
 err_bm:
    if (fd >= 0) close(fd);
-err_drm:
    free(buffer_manager);
    buffer_manager = NULL;
 err_alloc: