dmabuf: Make failure a DBG instead of an ERR
authorDerek Foreman <derekf@osg.samsung.com>
Mon, 9 Jan 2017 14:30:25 +0000 (08:30 -0600)
committerDerek Foreman <derekf@osg.samsung.com>
Mon, 9 Jan 2017 14:30:25 +0000 (08:30 -0600)
It's not really an error - fallback to shm will be attempted.

src/modules/evas/engines/wayland_shm/evas_dmabuf.c

index 6107ccc..4f165d1 100644 (file)
@@ -802,7 +802,7 @@ _evas_dmabuf_surface_create(Surface *s, int w, int h, int num_buff)
         surf->buffer[i] = _evas_dmabuf_buffer_init(surf, w, h);
         if (!surf->buffer[i])
           {
-             ERR("Could not create buffers");
+             DBG("Could not create buffers");
              /* _init() handled surface cleanup when it failed */
              return EINA_FALSE;
           }