summaryrefslogtreecommitdiff
path: root/render/image.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-09-04 06:23:57 +0000
committerDana Jansens <danakj@orodu.net>2003-09-04 06:23:57 +0000
commit4cbfe3eac0570679ae3a8e5c4df20e06d5418573 (patch)
tree4f6e423b4387264fc7f3091fe04c245bf4c77edc /render/image.h
parent55ed757c5fc4a2ef465374adcd65069d2235955b (diff)
new scaling based on the Bresenham algorithm
Diffstat (limited to 'render/image.h')
-rw-r--r--render/image.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/render/image.h b/render/image.h
index 5bf6ea55..639168d2 100644
--- a/render/image.h
+++ b/render/image.h
@@ -4,6 +4,8 @@
#include "render.h"
#include "geom.h"
-void RrImageDraw(RrPixel32 *target, RrTextureRGBA *rgba, RrRect *area);
+void RrImageDraw(RrPixel32 *target, RrTextureRGBA *rgba,
+ gint target_w, gint target_h,
+ RrRect *area);
#endif