aboutsummaryrefslogtreecommitdiff
path: root/render/egl.c
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2018-04-04 09:28:07 +0200
committerGuido Günther <agx@sigxcpu.org>2018-04-04 09:28:07 +0200
commit6a05bd38860f9e5da9cd4abcb61fda2ced081344 (patch)
treec27fbc96b58f975bb6b34500cd5fe348ce77331e /render/egl.c
parent94d76ee4856fd8e65d8e11f86053e388adc7c152 (diff)
egl: silence dmabuf error when extension is not present
This makes it match 4bf936360d42fb5b96a44fd17028ae66fc462362.
Diffstat (limited to 'render/egl.c')
-rw-r--r--render/egl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/render/egl.c b/render/egl.c
index 473d1319..f398974d 100644
--- a/render/egl.c
+++ b/render/egl.c
@@ -474,7 +474,7 @@ int wlr_egl_get_dmabuf_modifiers(struct wlr_egl *egl,
int format, uint64_t **modifiers) {
if (!egl->egl_exts.dmabuf_import ||
!egl->egl_exts.dmabuf_import_modifiers) {
- wlr_log(L_ERROR, "dmabuf extension not present");
+ wlr_log(L_DEBUG, "dmabuf extension not present");
return -1;
}