diff options
author | Sarah Smith <sarah.j.smith@nokia.com> | 2011-11-14 03:51:50 (GMT) |
---|---|---|
committer | Sarah Smith <sarah.j.smith@nokia.com> | 2011-11-14 03:55:38 (GMT) |
commit | 951a997893407b0a26f21fe0acec4701fa3d4279 (patch) | |
tree | ff2967fdd6ba6d6685ebe820fce575c557960860 /tests/auto/qimagereader/qimagereader.qrc | |
parent | 739e705150ad114eb92a1fac34a51d30322ffc31 (diff) | |
download | Qt-951a997893407b0a26f21fe0acec4701fa3d4279.zip Qt-951a997893407b0a26f21fe0acec4701fa3d4279.tar.gz Qt-951a997893407b0a26f21fe0acec4701fa3d4279.tar.bz2 |
Move tga support from Qt3d to Qt.
Rev-By: Samuel Rodal
Fix-for: QTBUG-21955
Part of fix for https://bugreports.qt.nokia.com/browse/QTBUG-21955
Having tga plugin inside a Qt add-on causes packaging problems.
There have been many queries over the years for tga support even tho it
is a niche image format. It is particularly useful for OpenGL work as a
texture format since it is a blittable bitmap, but it is very
innefficient compared to png or jpg.
For this reason only read support is added, and this is documented.
Also add some unit tests.
The unit tests are in the qimagereader suite, and this is the right
place for them as the other formats are tested there.
Noticed that there was an annoying bug with tiff files and chased it
down, in the hope of getting a clean test case PASS. Looks as tho
there is a bit of work for someone to fix the other FAILs, but the ones
for tga are all passing.
Diffstat (limited to 'tests/auto/qimagereader/qimagereader.qrc')
-rw-r--r-- | tests/auto/qimagereader/qimagereader.qrc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/auto/qimagereader/qimagereader.qrc b/tests/auto/qimagereader/qimagereader.qrc index 2c70652..03c03d6 100644 --- a/tests/auto/qimagereader/qimagereader.qrc +++ b/tests/auto/qimagereader/qimagereader.qrc @@ -67,5 +67,7 @@ <file>images/corrupt.svgz</file> <file>images/qtbug13653-no_eoi.jpg</file> <file>images/txts.png</file> + <file>images/test-flag.tga</file> + <file>images/test-flag-rle.tga</file> </qresource> </RCC> |