From 97e75c858a5992b80e79f52d8d182da2e8be1df0 Mon Sep 17 00:00:00 2001 From: Aleix Pol Date: Tue, 21 Nov 2023 16:48:35 +0100 Subject: [PATCH] nv12: Remove unnecessary debug Forgot to remove it before merging the patch --- src/platformsupport/scenes/opengl/egldisplay.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/platformsupport/scenes/opengl/egldisplay.cpp b/src/platformsupport/scenes/opengl/egldisplay.cpp index aaa1ab43bd..fe94effcf1 100644 --- a/src/platformsupport/scenes/opengl/egldisplay.cpp +++ b/src/platformsupport/scenes/opengl/egldisplay.cpp @@ -234,9 +234,7 @@ EGLImageKHR EglDisplay::importDmaBufAsImage(const DmaBufAttributes &dmabuf, int } attribs << EGL_NONE; - auto img = eglCreateImageKHR(m_handle, EGL_NO_CONTEXT, EGL_LINUX_DMA_BUF_EXT, nullptr, attribs.data()); - qDebug() << "retrieving plane" << plane << img; - return img; + return eglCreateImageKHR(m_handle, EGL_NO_CONTEXT, EGL_LINUX_DMA_BUF_EXT, nullptr, attribs.data()); } QHash EglDisplay::allSupportedDrmFormats() const