summaryrefslogtreecommitdiffstats
path: root/kipi-plugins
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-26 11:19:36 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-26 11:19:36 +0900
commita81ae10ca46752fba8ecbef3ef2c04d0f72c48c2 (patch)
treeddd35d7635abc7005efab1e2c2bc2928c8a9e4af /kipi-plugins
parent01d7811b05fedb1a6260f948772f408f6cdfbc8e (diff)
downloadkipi-plugins-a81ae10ca46752fba8ecbef3ef2c04d0f72c48c2.tar.gz
kipi-plugins-a81ae10ca46752fba8ecbef3ef2c04d0f72c48c2.zip
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kipi-plugins')
-rw-r--r--kipi-plugins/imageviewer/README2
1 files changed, 1 insertions, 1 deletions
diff --git a/kipi-plugins/imageviewer/README b/kipi-plugins/imageviewer/README
index 6adf663..f098f95 100644
--- a/kipi-plugins/imageviewer/README
+++ b/kipi-plugins/imageviewer/README
@@ -57,7 +57,7 @@ On a PentiumM 1Ghz, slow 2.5 inch harddrive, I measured the following times for
- preload next image to cache 690ms
only after preloading is done, the next image can be displayed.
-The most expensive part is instanciating a QImage(myimage) object with 690ms, which includes reading the file from the harddrive. Downscaling to screensize and converting to GL format takes around 70ms. At least on my setup, downscaling by CPU is still faster than copying a 20Mb texture to video mem and downscaling by GPU.
+The most expensive part is instanciating a TQImage(myimage) object with 690ms, which includes reading the file from the harddrive. Downscaling to screensize and converting to GL format takes around 70ms. At least on my setup, downscaling by CPU is still faster than copying a 20Mb texture to video mem and downscaling by GPU.
Other programs/libraries: time of loading and displaying an image
SDL : 750ms