nv12: Remove unnecessary debug
Forgot to remove it before merging the patch
This commit is contained in:
parent
008e5e5a10
commit
97e75c858a
1 changed files with 1 additions and 3 deletions
|
@ -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<uint32_t, EglDisplay::DrmFormatInfo> EglDisplay::allSupportedDrmFormats() const
|
||||
|
|
Loading…
Reference in a new issue