mirror of https://github.com/GNOME/gimp.git
Bill Skaggs <weskaggs@primate.ucdavis.edu>
* plug-ins/common/dog.c: added Difference of Gaussians edge detect plug-in. * plug-ins/common/plugin-defs.pl: * plug-ins/common/Makefile.am: added dog and regenerated Makefile.
This commit is contained in:
parent
fe14fa1d33
commit
48095ce3fc
|
@ -1,3 +1,12 @@
|
|||
2004-06-25 Bill Skaggs <weskaggs@primate.ucdavis.edu>
|
||||
|
||||
* plug-ins/common/dog.c: added Difference of Gaussians edge
|
||||
detect plug-in.
|
||||
|
||||
* plug-ins/common/plugin-defs.pl:
|
||||
* plug-ins/common/Makefile.am: added dog and regenerated
|
||||
Makefile.
|
||||
|
||||
2004-06-25 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/actions/context-actions.c: added GIMP_ACTION_SELECT_SET
|
||||
|
|
|
@ -37,6 +37,7 @@ destripe
|
|||
dicom
|
||||
diffraction
|
||||
displace
|
||||
dog
|
||||
edge
|
||||
emboss
|
||||
engrave
|
||||
|
|
|
@ -63,6 +63,7 @@ libexec_PROGRAMS = \
|
|||
dicom \
|
||||
diffraction \
|
||||
displace \
|
||||
dog \
|
||||
edge \
|
||||
emboss \
|
||||
engrave \
|
||||
|
@ -637,6 +638,19 @@ displace_LDADD = \
|
|||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
|
||||
dog_SOURCES = \
|
||||
dog.c
|
||||
|
||||
dog_LDADD = \
|
||||
$(libgimpui) \
|
||||
$(libgimpwidgets) \
|
||||
$(libgimp) \
|
||||
$(libgimpcolor) \
|
||||
$(libgimpbase) \
|
||||
$(GTK_LIBS) \
|
||||
$(RT_LIBS) \
|
||||
$(INTLLIBS)
|
||||
|
||||
edge_SOURCES = \
|
||||
edge.c
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -34,6 +34,7 @@
|
|||
'dicom' => { libdep => 'gtk', ui => 1 },
|
||||
'diffraction' => { libdep => 'gtk', ui => 1 },
|
||||
'displace' => { libdep => 'gtk', ui => 1 },
|
||||
'dog' => { libdep => 'gtk', ui => 1 },
|
||||
'edge' => { libdep => 'gtk', ui => 1 },
|
||||
'emboss' => { libdep => 'gtk', ui => 1 },
|
||||
'engrave' => { libdep => 'gtk', ui => 1 },
|
||||
|
|
Loading…
Reference in New Issue