Disable the (pdb interfaces to the) semi-broken background/foreground
* plug-ins/common/animoptimize.c: Disable the (pdb interfaces
to the) semi-broken background/foreground stuff unless
EXPERIMENTAL_BACKDROP_CODE is defined.
This commit is contained in:
parent
d2170d197c
commit
966eaf93aa
2 changed files with 19 additions and 2 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2003-08-12 Adam D. Moss <adam@gimp.org>
|
||||
|
||||
* plug-ins/common/animoptimize.c: Disable the (pdb interfaces
|
||||
to the) semi-broken background/foreground stuff unless
|
||||
EXPERIMENTAL_BACKDROP_CODE is defined.
|
||||
|
||||
2003-09-08 Ville Pätsi <drc@gimp.org>
|
||||
|
||||
* gimp.spec.in: Remove all references to *gck*
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* Animation Optimizer plug-in version 1.1.0 [ALPHA]
|
||||
* Animation Optimizer plug-in version 1.1.1
|
||||
*
|
||||
* (c) Adam D. Moss, 1997-2001
|
||||
* (c) Adam D. Moss, 1997-2003
|
||||
* adam@gimp.org
|
||||
* adam@foxbox.org
|
||||
*
|
||||
|
|
@ -11,6 +11,10 @@
|
|||
/*
|
||||
* REVISION HISTORY:
|
||||
*
|
||||
* 2003-08-12 : version 1.1.1
|
||||
* Disable the semi-broken background/foreground stuff
|
||||
* unless EXPERIMENTAL_BACKDROP_CODE is defined...
|
||||
*
|
||||
* 2001-04-28 : version 1.1.0 [ALPHA]
|
||||
* Support automated background (or foreground) removal.
|
||||
* It's half-broken.
|
||||
|
|
@ -70,6 +74,11 @@
|
|||
* User interface
|
||||
*/
|
||||
|
||||
/*
|
||||
#define EXPERIMENTAL_BACKDROP_CODE
|
||||
*/
|
||||
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <stdlib.h>
|
||||
|
|
@ -197,6 +206,7 @@ query (void)
|
|||
G_N_ELEMENTS (return_args),
|
||||
args, return_args);
|
||||
|
||||
#ifdef EXPERIMENTAL_BACKDROP_CODE
|
||||
gimp_install_procedure ("plug_in_animation_remove_backdrop",
|
||||
"This procedure attempts to remove the backdrop"
|
||||
" from a GIMP layer-based animation, leaving"
|
||||
|
|
@ -227,6 +237,7 @@ query (void)
|
|||
G_N_ELEMENTS (args),
|
||||
G_N_ELEMENTS (return_args),
|
||||
args, return_args);
|
||||
#endif
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Reference in a new issue