aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quick/textureprovider/main.cpp
diff options
context:
space:
mode:
authorMichael Brasser <michael.brasser@live.com>2013-03-26 20:29:10 -0500
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-04-02 10:29:34 +0200
commit3e0bcbff98346385ec32bc951cd958d1c1bfb371 (patch)
tree6c23d33d60396e73134b9cadb3f2abe08d7bea80 /examples/quick/textureprovider/main.cpp
parent5eae605a475db96ed16d81101e00e736efe9f202 (diff)
Update EtcProvider example to support configurable base url.
Change-Id: Idb047bc7bf2c9f1c62c4749cb416bdf267e66e17 Reviewed-by: Gunnar Sletta <gunnar.sletta@digia.com>
Diffstat (limited to 'examples/quick/textureprovider/main.cpp')
-rw-r--r--examples/quick/textureprovider/main.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/quick/textureprovider/main.cpp b/examples/quick/textureprovider/main.cpp
index d9d4fb0d38..6397de874b 100644
--- a/examples/quick/textureprovider/main.cpp
+++ b/examples/quick/textureprovider/main.cpp
@@ -48,7 +48,9 @@ int main(int argc, char* argv[])
QGuiApplication app(argc,argv);
QQuickView view;
- view.engine()->addImageProvider("etc", new EtcProvider());
+ EtcProvider *provider = new EtcProvider();
+ provider->setBaseUrl(QUrl("qrc:///textureprovider/"));
+ view.engine()->addImageProvider("etc", provider);
view.setSource(QUrl("qrc:///textureprovider/textureprovider.qml"));
view.show();