[Pkg-sdl-commits] r24 - in unstable/libsdl1.2/debian: . patches

Sam Hocevar sho at costa.debian.org
Wed Mar 1 18:51:07 UTC 2006


Author: sho
Date: 2006-03-01 18:51:06 +0000 (Wed, 01 Mar 2006)
New Revision: 24

Added:
   unstable/libsdl1.2/debian/patches/010_bad_blit_test.diff
Modified:
   unstable/libsdl1.2/debian/changelog
Log:
  * debian/patches/010_bad_blit_test.diff:
    + New patch: "dst_w == last.src_w" should be "dst_w == last.dst_w" in
      src/video/SDL_stretch.c.


Modified: unstable/libsdl1.2/debian/changelog
===================================================================
--- unstable/libsdl1.2/debian/changelog	2006-03-01 18:49:22 UTC (rev 23)
+++ unstable/libsdl1.2/debian/changelog	2006-03-01 18:51:06 UTC (rev 24)
@@ -26,6 +26,10 @@
   * debian/patches/009_alsa_priority.diff:
     + When both are available, try the ALSA output driver before the OSS one.
 
+  * debian/patches/010_bad_blit_test.diff:
+    + New patch: "dst_w == last.src_w" should be "dst_w == last.dst_w" in
+      src/video/SDL_stretch.c.
+
   * debian/patches/debian/patches/014_missing_mmx_blit.diff:
     + New patch: ConvertMMXpII32_24RGB888 was not used anywhere, yet it is
       fully functional. This patch activates it.

Added: unstable/libsdl1.2/debian/patches/010_bad_blit_test.diff
===================================================================
--- unstable/libsdl1.2/debian/patches/010_bad_blit_test.diff	2006-03-01 18:49:22 UTC (rev 23)
+++ unstable/libsdl1.2/debian/patches/010_bad_blit_test.diff	2006-03-01 18:51:06 UTC (rev 24)
@@ -0,0 +1,12 @@
+diff -puriN SDL-1.2.9.orig/src/video/SDL_stretch.c SDL-1.2.9/src/video/SDL_stretch.c
+--- SDL-1.2.9.orig/src/video/SDL_stretch.c	2004-05-16 23:08:55 +0200
++++ SDL-1.2.9/src/video/SDL_stretch.c	2006-03-01 11:04:05 +0100
+@@ -80,7 +80,7 @@ static int generate_rowbytes(int src_w, 
+  
+ 	/* See if we need to regenerate the copy buffer */
+ 	if ( (src_w == last.src_w) &&
+-	     (dst_w == last.src_w) && (bpp == last.bpp) ) {
++	     (dst_w == last.dst_w) && (bpp == last.bpp) ) {
+ 		return(0);
+ 	}
+ 	last.bpp = bpp;




More information about the Pkg-sdl-commits mailing list