X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Fdevices%2Frescale.c;h=649601f1defb202312211f3dae1dc047f92d9ea6;hb=bf04757cd94e94c1f67fa3d2a4e3e59fa5bce0c0;hp=b8530b9319b01891bca9a25e2e790c1d1e93ce1a;hpb=63b58b0a4d9cb491218bd737cd1bfb54c43f1b37;p=swftools.git diff --git a/lib/devices/rescale.c b/lib/devices/rescale.c index b8530b9..649601f 100644 --- a/lib/devices/rescale.c +++ b/lib/devices/rescale.c @@ -54,7 +54,7 @@ static void dbg(char*format, ...) int l; va_list arglist; va_start(arglist, format); - vsprintf(buf, format, arglist); + vsnprintf(buf, sizeof(buf)-1, format, arglist); va_end(arglist); l = strlen(buf); while(l && buf[l-1]=='\n') { @@ -325,3 +325,10 @@ void gfxdevice_rescale_setdevice(gfxdevice_t*dev, gfxdevice_t*out) } i->out = out; } + +gfxdevice_t* gfxdevice_rescale_new(gfxdevice_t*out, int width, int height, double scale) +{ + gfxdevice_t* d = (gfxdevice_t*)malloc(sizeof(gfxdevice_t)); + gfxdevice_rescale_init(d, out, width, height, scale); + return d; +}