From: S?bastien G. <kx...@us...> - 2004-05-15 11:14:26
|
Update of /cvsroot/vba/VisualBoyAdvance/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24722 Modified Files: motionblur.cpp pixel.cpp scanline.cpp Log Message: Fixed filters for GTK+ interface, for real this time. Index: scanline.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/scanline.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** scanline.cpp 14 May 2004 12:24:18 -0000 1.7 --- scanline.cpp 15 May 2004 11:14:13 -0000 1.8 *************** *** 185,189 **** { u8 *nextLine, *finish; ! u32 colorMask = ~RGB_LOW_BITS_MASK & 0xffFFff; nextLine = dstPtr + dstPitch; --- 185,189 ---- { u8 *nextLine, *finish; ! u32 colorMask = ~RGB_LOW_BITS_MASK; nextLine = dstPtr + dstPitch; Index: pixel.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/pixel.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** pixel.cpp 14 May 2004 12:24:18 -0000 1.11 --- pixel.cpp 15 May 2004 11:14:13 -0000 1.12 *************** *** 101,105 **** { u8 *nextLine, *finish; ! u32 colorMask = ~RGB_LOW_BITS_MASK & 0xffFFff; nextLine = dstPtr + dstPitch; --- 101,105 ---- { u8 *nextLine, *finish; ! u32 colorMask = ~RGB_LOW_BITS_MASK; nextLine = dstPtr + dstPitch; Index: motionblur.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/motionblur.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** motionblur.cpp 14 May 2004 12:25:39 -0000 1.10 --- motionblur.cpp 15 May 2004 11:14:13 -0000 1.11 *************** *** 120,127 **** void MotionBlur32(u8 *srcPtr, u32 srcPitch, u8 *deltaPtr, ! u8 *dstPtr, u32 dstPitch, int width, int height) { u8 *nextLine, *finish; ! u32 colorMask = ~RGB_LOW_BITS_MASK & 0xffFFff; u32 lowPixelMask = RGB_LOW_BITS_MASK; --- 120,127 ---- void MotionBlur32(u8 *srcPtr, u32 srcPitch, u8 *deltaPtr, ! u8 *dstPtr, u32 dstPitch, int width, int height) { u8 *nextLine, *finish; ! u32 colorMask = ~RGB_LOW_BITS_MASK; u32 lowPixelMask = RGB_LOW_BITS_MASK; |