summaryrefslogtreecommitdiffstats
path: root/src/render/texture/qabstracttextureprovider.cpp
diff options
context:
space:
mode:
authorSean Harmer <sean.harmer@kdab.com>2015-10-12 20:45:19 +0100
committerPaul Lemire <paul.lemire@kdab.com>2015-10-13 13:19:50 +0000
commit7c971e0e7791ab38d7d3d8ebc25468c44cbe49c5 (patch)
tree53197a9e5eb7501d6f5b497f70c25dad9c265a6f /src/render/texture/qabstracttextureprovider.cpp
parent0bfd20ad3b8eb3edec8d6317af9eb5504f8c0871 (diff)
Move Qt3DCore into Qt3DCore namespace
Update other aspects, tests and examples accordingly. Change-Id: Ib1bcf0bdf4f5aec4422dc0c80bfc32b27fb1a317 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
Diffstat (limited to 'src/render/texture/qabstracttextureprovider.cpp')
-rw-r--r--src/render/texture/qabstracttextureprovider.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/render/texture/qabstracttextureprovider.cpp b/src/render/texture/qabstracttextureprovider.cpp
index 34259b511..bed56a14b 100644
--- a/src/render/texture/qabstracttextureprovider.cpp
+++ b/src/render/texture/qabstracttextureprovider.cpp
@@ -41,7 +41,7 @@
QT_BEGIN_NAMESPACE
-using namespace Qt3D;
+using namespace Qt3DCore;
namespace Qt3DRender {
@@ -237,7 +237,7 @@ int QAbstractTextureProvider::maximumLayers() const
By default the renderer based on the attributes of texture providers is
able to compare them and detect duplicates (same size, format and image
sources) and smartly avoid unnecessary computations. In some cases however
- (texture providers used as Qt3D::RenderTarget attachments) you don't want
+ (texture providers used as Qt3DCore::RenderTarget attachments) you don't want
the renderer to perform these comparison, in which case you can set is
unique to true.
*/
@@ -318,9 +318,9 @@ QAbstractTextureProvider::Target QAbstractTextureProvider::target() const
}
/*!
- Adds a new Qt3D::QAbstractTextureImage \a textureImage to the texture provider.
+ Adds a new Qt3DCore::QAbstractTextureImage \a textureImage to the texture provider.
- \note Qt3D::QAbstractTextureImage should never be shared between multiple
+ \note Qt3DCore::QAbstractTextureImage should never be shared between multiple
Qt3DRender::QAbstractTextureProvider instances.
*/
void QAbstractTextureProvider::addTextureImage(QAbstractTextureImage *textureImage)
@@ -349,7 +349,7 @@ void QAbstractTextureProvider::addTextureImage(QAbstractTextureImage *textureIma
}
/*!
- Removes a Qt3D::QAbstractTextureImage \a textureImage from the texture provider.
+ Removes a Qt3DCore::QAbstractTextureImage \a textureImage from the texture provider.
*/
void QAbstractTextureProvider::removeTextureImage(QAbstractTextureImage *textureImage)
{