annotate src/video/svga/Makefile.am @ 1164:10b3fb28c86b
Date: Mon, 31 Oct 2005 14:23:34 +0100
From: Thomas Omilian <paccy@arcor.de>
To: sdl@libsdl.org
Subject: [SDL] SDL_SoftStretch() fixed!
Ok, after debugging the night I found the error:
in video/SDL_stretch.c in Line 81
/* See if we need to regenerate the copy buffer */
if ( (src_w == last.src_w) &&
(dst_w == last.src_w) && (bpp == last.bpp) ) {
return(0);
}
the second comparison should be (dst_w == last dst_w).
Perhaps someone could apply it to the source...
Regards,
Thomas Omilian
author |
Ryan C. Gordon <icculus@icculus.org> |
date |
Tue, 01 Nov 2005 04:14:24 +0000 |
parents |
74212992fb08 |
children |
|
rev |
line source |
0
|
1
|
|
2 ## Makefile.am for SDL using the SVGAlib video driver
|
|
3
|
|
4 noinst_LTLIBRARIES = libvideo_svga.la
|
|
5 libvideo_svga_la_SOURCES = $(SVGA_SRCS)
|
|
6
|
|
7 # The SDL SVGAlib video driver sources
|
|
8 SVGA_SRCS = \
|
|
9 SDL_svgavideo.h \
|
|
10 SDL_svgaevents.c \
|
|
11 SDL_svgaevents_c.h \
|
|
12 SDL_svgamouse.c \
|
|
13 SDL_svgamouse_c.h \
|
|
14 SDL_svgavideo.c
|
|
15
|