Re: [AD] CHANGES and AUTHORS update |
[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
This mail made me to look in CVS if my cstretch.c patch was applied and it
wasn't. Commit it, please. It's attached.
Have a nice day.
Stepan Roh
On Thu, 7 Dec 2000, Peter Wang wrote:
> I went back and added CHANGES and AUTHORS entries for changes from
> late 3.9.33, but it's not committed yet because I'm not entirely
> sure of everything (timeline, missing entries, bad descriptions). If
> you did some [substantial] work during the post-CVS period, please
> check I didn't leave it out.
>
> http://www.alphalink.com.au/~tjaden/dev/retro.diff.gz (2.7k)
>
> Here is the ChangeLog I used. It was produced from yesterday's
> output of "cvs log", filtered through a `cvs2cl.pl' script.
>
> http://www.alphalink.com.au/~tjaden/dev/allegro.ChangeLog (8.9k)
>
> If it's all fine, I'll commit it in a few days.
--- cstretch.c.orig Mon Oct 23 16:38:19 2000
+++ cstretch.c Tue Nov 21 14:33:18 2000
@@ -425,6 +425,17 @@
+/* masked_stretch_blit:
+ * Masked bitmap scaling function.
+ */
+void masked_stretch_blit(BITMAP *src, BITMAP *dst, int sx, int sy, int sw, int sh,
+ int dx, int dy, int dw, int dh)
+{
+ _al_stretch_blit(src, dst, sx, sy, sw, sh, dx, dy, dw, dh, 1);
+}
+
+
+
/* stretch_sprite:
* Masked version of stretch_blit().
*/