On Saturday 21 February 2009, Matt Rogers wrote:
> On Saturday 21 February 2009 10:22:47 Allen Winter wrote:
> > ---------- Forwarded Message ----------
> >
> > Subject: ksplash blurry icon clipping fix
> > Date: Saturday 21 February 2009
> > From: Roman Shtylman <shtylman@gmail.com>
> > To: kde-devel@kde.org
> >
> > This is a fix for the icon clipping that happens when a user logs into
> > their computer and is presented with the splash screen and icons
> > fading in.
> >
> > Currently, they get clipped because of the way drawing was done in the
> > past, this changed the drawing a bit to fix the clipping.
> >
> > ~Roman
> >
> > -------------------------------------------------------
>
> Can qimageblitz be used here and if it can, doesn't it have a blend
> operation that can be used instead of a custom blend function?
> --
> Matt


QImageBlitz seems to me to just operate on single images and not composition so the blur itself could perhaps be done by QImageBlitz but the blend would still be separate.


However the blend itself is just a simple Porter-Duff operation as provided in QPainter and X Render (looks like the SourceOver operation offhand but I'd have to look it up) so maybe we could use one of those instead?


Regards,
- Michael Pyne