nv12: Remove unnecessary debug

Forgot to remove it before merging the patch
This commit is contained in:
Aleix Pol 2023-11-21 16:48:35 +01:00 committed by Vlad Zahorodnii
parent 008e5e5a10
commit 97e75c858a

View file

@ -234,9 +234,7 @@ EGLImageKHR EglDisplay::importDmaBufAsImage(const DmaBufAttributes &dmabuf, int
} }
attribs << EGL_NONE; attribs << EGL_NONE;
auto img = eglCreateImageKHR(m_handle, EGL_NO_CONTEXT, EGL_LINUX_DMA_BUF_EXT, nullptr, attribs.data()); return eglCreateImageKHR(m_handle, EGL_NO_CONTEXT, EGL_LINUX_DMA_BUF_EXT, nullptr, attribs.data());
qDebug() << "retrieving plane" << plane << img;
return img;
} }
QHash<uint32_t, EglDisplay::DrmFormatInfo> EglDisplay::allSupportedDrmFormats() const QHash<uint32_t, EglDisplay::DrmFormatInfo> EglDisplay::allSupportedDrmFormats() const