app: remove gimp_drawable_process_lut()

This commit is contained in:
Michael Natterer
2012-03-25 01:08:40 +01:00
parent cf86aeceb3
commit 942ed2316b
2 changed files with 0 additions and 14 deletions

View File

@ -21,7 +21,6 @@
#include "core-types.h"
#include "base/gimplut.h"
#include "base/pixel-processor.h"
#include "base/pixel-region.h"
@ -67,12 +66,3 @@ gimp_drawable_process (GimpDrawable *drawable,
gimp_drawable_update (drawable, x, y, width, height);
}
}
void
gimp_drawable_process_lut (GimpDrawable *drawable,
GimpProgress *progress,
const gchar *undo_desc,
GimpLut *lut)
{
gimp_drawable_process (drawable, progress, undo_desc,
(PixelProcessorFunc) gimp_lut_process, lut);
}

View File

@ -24,10 +24,6 @@ void gimp_drawable_process (GimpDrawable *drawable,
const gchar *undo_desc,
PixelProcessorFunc func,
gpointer data);
void gimp_drawable_process_lut (GimpDrawable *drawable,
GimpProgress *progress,
const gchar *undo_desc,
GimpLut *lut);
#endif /* __GIMP_DRAWABLE_PROCESS_H__ */