Looks like a small bug in the destination colorkey stuff. Patch attached.
--
Ville Syrj�l�
[EMAIL PROTECTED]
http://www.sci.fi/~syrjala/
Index: DirectFB/src/gfx/generic/generic.c
===================================================================
RCS file: /cvs/directfb/DirectFB/src/gfx/generic/generic.c,v
retrieving revision 1.77
diff -u -d -r1.77 generic.c
--- DirectFB/src/gfx/generic/generic.c 26 Jun 2002 18:34:32 -0000 1.77
+++ DirectFB/src/gfx/generic/generic.c 6 Jul 2002 14:36:05 -0000
@@ -240,7 +240,7 @@
__u32 *D = (__u32*)Aop;
while (w--) {
- if ((__u32)Dkey != *D)
+ if ((__u32)Dkey == *D)
*D = (__u32)Cop;
D++;