Re: [AD] [AL] masked_stretch_blit on IRIX |
[ Thread Index |
Date Index
| More lists.liballeg.org/allegro-developers Archives
]
Hein, these things should be sent to conductors list.
On Tue, 21 Nov 2000, Hein Zelle wrote:
> While trying to build our Electron project on Irix using the CVS
> version of allegro, I just ran into the following problem:
>
> ld32: ERROR 33: Unresolved text symbol "masked_stretch_blit" -- 1st
> referenced by client/renderer/renderer_ppe/lib/librenderer_ppe.a(eldraw.o).
Yes, it's missing. Below is a patch to src/c/cstretch.c (shoudl be
committed to CVS also).
Have a nice day.
Stepan Roh
--- 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().
*/