~ubuntu-branches/ubuntu/oneiric/imagemagick/oneiric-updates

« back to all changes in this revision

Viewing changes to magick/fx.h

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2011-06-15 11:05:28 UTC
  • mfrom: (6.2.11 sid)
  • Revision ID: james.westby@ubuntu.com-20110615110528-08jgo07a4846xh8d
Tags: 8:6.6.0.4-3ubuntu1
* Resynchronise with Debian (LP: #797595).  Remaining changes:
  - Make ufraw-batch (universe) a suggestion instead of a recommendation.
  - Make debian/rules install target depend on check; they cannot reliably
    be run in parallel.
  - Don't set MAKEFLAGS in debian/rules; just pass it to the build.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
  *BlueShiftImage(const Image *,const double,ExceptionInfo *),
44
44
  *CharcoalImage(const Image *,const double,const double,ExceptionInfo *),
45
45
  *ColorizeImage(const Image *,const char *,const PixelPacket,ExceptionInfo *),
46
 
  *ColorMatrixImage(const Image *,const KernelInfo *kernel,ExceptionInfo *),
47
46
  *FxImage(const Image *,const char *,ExceptionInfo *),
48
47
  *FxImageChannel(const Image *,const ChannelType,const char *,ExceptionInfo *),
49
48
  *ImplodeImage(const Image *,const double,ExceptionInfo *),
50
 
  *MorphImages(const Image *,const size_t,ExceptionInfo *),
 
49
  *MorphImages(const Image *,const unsigned long,ExceptionInfo *),
51
50
  *PolaroidImage(const Image *,const DrawInfo *,const double,ExceptionInfo *),
 
51
  *RecolorImage(const Image *,const unsigned long,const double *,
 
52
    ExceptionInfo *),
52
53
  *SepiaToneImage(const Image *,const double,ExceptionInfo *),
53
 
  *ShadowImage(const Image *,const double,const double,const ssize_t,
54
 
    const ssize_t,ExceptionInfo *),
 
54
  *ShadowImage(const Image *,const double,const double,const long,const long,
 
55
    ExceptionInfo *),
55
56
  *SketchImage(const Image *,const double,const double,const double,
56
57
    ExceptionInfo *),
57
58
  *SteganoImage(const Image *,const Image *,ExceptionInfo *),
58
59
  *StereoImage(const Image *,const Image *,ExceptionInfo *),
59
 
  *StereoAnaglyphImage(const Image *,const Image *,const ssize_t,const ssize_t,
 
60
  *StereoAnaglyphImage(const Image *,const Image *,const long,const long,
60
61
     ExceptionInfo *),
61
62
  *SwirlImage(const Image *,double,ExceptionInfo *),
62
63
  *TintImage(const Image *,const char *,const PixelPacket,ExceptionInfo *),
63
 
  *VignetteImage(const Image *,const double,const double,const ssize_t,
64
 
    const ssize_t,ExceptionInfo *),
 
64
  *VignetteImage(const Image *,const double,const double,const long,
 
65
    const long,ExceptionInfo *),
65
66
  *WaveImage(const Image *,const double,const double,ExceptionInfo *);
66
67
 
67
68
extern MagickExport MagickBooleanType
68
 
  PlasmaImage(Image *,const SegmentInfo *,size_t,size_t),
 
69
  PlasmaImage(Image *,const SegmentInfo *,unsigned long,unsigned long),
69
70
  SolarizeImage(Image *,const double);
70
71
 
71
72
#if defined(__cplusplus) || defined(c_plusplus)