app: remove empty functions paint_funcs_setup()/free()
This commit is contained in:
@ -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 ();
|
||||
|
||||
|
@ -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,
|
||||
|
@ -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,
|
||||
|
Reference in New Issue
Block a user