app: remove empty functions paint_funcs_setup()/free()

This commit is contained in:
Michael Natterer
2012-03-15 21:16:26 +01:00
parent 1ee041600f
commit 1b1245e4cc
3 changed files with 0 additions and 19 deletions

View File

@ -34,7 +34,6 @@
#include "config/gimpbaseconfig.h"
#include "paint-funcs/paint-funcs.h"
#include "composite/gimp-composite.h"
#include "base.h"
@ -107,8 +106,6 @@ base_init (GimpBaseConfig *config,
gimp_composite_init (be_verbose, use_cpu_accel);
paint_funcs_setup ();
return swap_is_ok;
}
@ -122,7 +119,6 @@ base_exit (void)
#endif
pixel_processor_exit ();
paint_funcs_free ();
tile_cache_exit ();
tile_swap_exit ();

View File

@ -174,16 +174,6 @@ cubic (gdouble dx,
/* FUNCTIONS */
/*********************/
void
paint_funcs_setup (void)
{
}
void
paint_funcs_free (void)
{
}
void
combine_indexed_and_indexed_pixels (const guchar *src1,
const guchar *src2,

View File

@ -19,11 +19,6 @@
#define __PAINT_FUNCS_H__
/* Called initially to setup rendering features */
void paint_funcs_setup (void);
void paint_funcs_free (void);
/* Paint functions */
void color_pixels (guchar *dest,