diff --git a/subprojects/gst-plugins-good/ext/qt6/qt6glitem.cc b/subprojects/gst-plugins-good/ext/qt6/qt6glitem.cc index a88d212fab..26d2385ba0 100644 --- a/subprojects/gst-plugins-good/ext/qt6/qt6glitem.cc +++ b/subprojects/gst-plugins-good/ext/qt6/qt6glitem.cc @@ -291,7 +291,10 @@ Qt6GLVideoItem::updatePaintNode(QSGNode * oldNode, gst_gl_context_activate (this->priv->other_context, TRUE); if (!texNode) { + bool is_smooth = this->smooth (); texNode = new GstQSG6OpenGLNode (this); + texNode->setFiltering (is_smooth ? QSGTexture::Filtering::Linear : + QSGTexture::Filtering::Nearest); this->priv->m_node = texNode; }