scale_region_no_resample() no longer needs to be public, as we can call

2002-02-12  Michael Natterer  <mitch@gimp.org>

	* app/paint-funcs/paint-funcs.[ch]: scale_region_no_resample() no
	longer needs to be public, as we can call
	scale_region(src, dest, GIMP_INTERPOLATION_NONE).
This commit is contained in:
Michael Natterer 2002-02-12 11:32:56 +00:00 committed by Michael Natterer
parent e653fcaad8
commit 12796f2d91
3 changed files with 13 additions and 9 deletions

View file

@ -1,3 +1,9 @@
2002-02-12 Michael Natterer <mitch@gimp.org>
* app/paint-funcs/paint-funcs.[ch]: scale_region_no_resample() no
longer needs to be public, as we can call
scale_region(src, dest, GIMP_INTERPOLATION_NONE).
2002-02-12 Nathan Summers <rock@gimp.org>
* app/plug-in/plug-in-rc.c: implement a new pluginrc flag,

View file

@ -2669,7 +2669,7 @@ gaussian_blur_region (PixelRegion *srcR,
/* non-interpolating scale_region. [adam]
*/
void
static void
scale_region_no_resample (PixelRegion *srcPR,
PixelRegion *destPR)
{

View file

@ -254,7 +254,7 @@ void extract_from_inten_pixels (guchar *src,
/* extract information from indexed pixels based on
* a mask.
*/
void extract_from_indexed_pixels (guchar *src,
void extract_from_indexed_pixels (guchar *src,
guchar *dest,
const guchar *mask,
const guchar *cmap,
@ -270,7 +270,7 @@ void extract_from_indexed_pixels (guchar *src,
* src_type == 1 (GRAY)
* src_type == 2 (INDEXED)
*/
void map_to_color (guint src_type,
void map_to_color (guint src_type,
const guchar *cmap,
const guchar *src,
guchar *rgb);
@ -317,18 +317,16 @@ void border_region (PixelRegion *, gint16, gint16);
void scale_region (PixelRegion *, PixelRegion *,
GimpInterpolationType);
void scale_region_no_resample (PixelRegion *, PixelRegion *);
void subsample_region (PixelRegion *, PixelRegion *,
int);
float shapeburst_region (PixelRegion *, PixelRegion *);
void thin_region (PixelRegion *, gint16 xradius,
gint16 yradius, int edge_lock);
void thin_region (PixelRegion *, gint16 xradius,
gint16 yradius, int edge_lock);
void fatten_region (PixelRegion *,
gint16 xradius, gint16 yradius);
void fatten_region (PixelRegion *,
gint16 xradius, gint16 yradius);
void swap_region (PixelRegion *, PixelRegion *);