
fluid psychedelic Screensaver
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
Screensaver for KDE. (tested with kde 3.2, should also work with 3.1)
I didn't spend much time with it, it's still quite optimizable i think (QImage and drawImage are very slow, using the X-Windows Shared Memory Extension would be an improvement).
Perhaps somebody likes it and has got some time to work on it!
Installation:
run ./configure and make in the main directory.
copy fluid.kss in src/ to /usr/bin and fluid.desktop in doc/ to /usr/share/applnk/System/ScreenSavers/. You should find the screensaver in the section Rapid Motion.
StefanT
17 years ago
_________________________
The QImage class provides a hardware-independent pixmap representation.
_________________________
In other words: overhead when painting. Use QPixmap with a QPainter instead and it should be faster. And use bitBlt (in QPaintDevice docu) for transfering the image to the QWidget.
Report
schorsch
17 years ago
Report