From: Gunnar Sletta Date: Thu, 24 Nov 2011 13:12:56 +0000 (+0100) Subject: Propegate the smooth property to the textureprovider X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=bcc8e9a0b08a8c9aab7de64aa0c2534ade1a5417;p=konrad%2Fqtdeclarative.git Propegate the smooth property to the textureprovider Task-number: QTBUG-22880 Change-Id: I693a44e87fb87bc92e1647f6158d23986f98623a Reviewed-by: Gunnar Sletta --- diff --git a/src/declarative/items/qquickimage.cpp b/src/declarative/items/qquickimage.cpp index 5f706ac..598d6be 100644 --- a/src/declarative/items/qquickimage.cpp +++ b/src/declarative/items/qquickimage.cpp @@ -550,6 +550,7 @@ QSGTextureProvider *QQuickImage::textureProvider() const "Cannot be used outside the GUI thread"); QQuickImagePrivate *dd = const_cast(d); dd->provider = new QQuickImageTextureProvider; + dd->provider->m_smooth = d->smooth; dd->provider->m_texture = d->pix.texture(d->sceneGraphContext()); }