From c2e218f5e5df338d5a843dfb32281de194f02d6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Aparicio?= Date: Thu, 2 Apr 2015 15:03:06 +0200 Subject: [PATCH] refactor: vips.h --- vips.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vips.h b/vips.h index 9990c3d..8256df6 100644 --- a/vips.h +++ b/vips.h @@ -80,13 +80,13 @@ vips_rotate(VipsImage *in, VipsImage **buf, int angle) }; int -vips_embed_extend(VipsImage *in, VipsImage **out, int left, int top, int width, int height, int extend) +vips_embed_adapter(VipsImage *in, VipsImage **out, int left, int top, int width, int height, int extend) { return vips_embed(in, out, left, top, width, height, "extend", extend, NULL); }; int -vips_colourspace_0(VipsImage *in, VipsImage **out, VipsInterpretation space) +vips_colourspace_adapter(VipsImage *in, VipsImage **out, VipsInterpretation space) { return vips_colourspace(in, out, space, NULL); };