diff options
| author | Mike Wey | 2011-01-09 22:47:18 +0100 |
|---|---|---|
| committer | Mike Wey | 2011-01-09 22:47:18 +0100 |
| commit | e080979186e624ba7fed28ea9a76dfdf4feb635a (patch) | |
| tree | ccec2234fba81a86733f341cadb69ae5ce6ff84b /dmagick/c/effect.d | |
| parent | 0bd6744310e0b209f3c5911a4e68d453e867914a (diff) | |
change const for the funtion params
Diffstat (limited to 'dmagick/c/effect.d')
| -rw-r--r-- | dmagick/c/effect.d | 60 |
1 files changed, 30 insertions, 30 deletions
diff --git a/dmagick/c/effect.d b/dmagick/c/effect.d index b229a8f..b79cf75 100644 --- a/dmagick/c/effect.d +++ b/dmagick/c/effect.d @@ -41,34 +41,34 @@ extern(C) JPEGPreview } - Image* AdaptiveBlurImage(const Image*, const double, const double, ExceptionInfo*); - Image* AdaptiveBlurImageChannel(const Image*, const ChannelType, const double, const double, ExceptionInfo*); - Image* AdaptiveSharpenImage(const Image*, const double, const double, ExceptionInfo*); - Image* AdaptiveSharpenImageChannel(const Image*, const ChannelType, const double, const double, ExceptionInfo*); - Image* BlurImage(const Image*, const double, const double, ExceptionInfo*); - Image* BlurImageChannel(const Image*, const ChannelType, const double, const double, ExceptionInfo*); - Image* ConvolveImage(const Image*, const size_t, const double*, ExceptionInfo*); - Image* ConvolveImageChannel(const Image*, const ChannelType, const size_t, const double*, ExceptionInfo*); - Image* DespeckleImage(const Image*, ExceptionInfo*); - Image* EdgeImage(const Image*, const double, ExceptionInfo*); - Image* EmbossImage(const Image*, const double, const double, ExceptionInfo*); - Image* FilterImage(const Image*, const KernelInfo*, ExceptionInfo*); - Image* FilterImageChannel(const Image*, const ChannelType, const KernelInfo*, ExceptionInfo*); - Image* GaussianBlurImage(const Image*, const double, const double, ExceptionInfo*); - Image* GaussianBlurImageChannel(const Image*, const ChannelType, const double, const double, ExceptionInfo*); - Image* MedianFilterImage(const Image*, const double, ExceptionInfo*); - Image* MotionBlurImage(const Image*, const double, const double, const double, ExceptionInfo*); - Image* MotionBlurImageChannel(const Image*, const ChannelType, const double, const double, const double, ExceptionInfo*); - Image* PreviewImage(const Image*, const PreviewType, ExceptionInfo*); - Image* RadialBlurImage(const Image*, const double, ExceptionInfo*); - Image* RadialBlurImageChannel(const Image*, const ChannelType, const double, ExceptionInfo*); - Image* ReduceNoiseImage(const Image*, const double, ExceptionInfo*); - Image* SelectiveBlurImage(const Image*, const double, const double, const double, ExceptionInfo*); - Image* SelectiveBlurImageChannel(const Image*, const ChannelType, const double, const double, const double, ExceptionInfo*); - Image* ShadeImage(const Image*, const MagickBooleanType, const double, const double, ExceptionInfo*); - Image* SharpenImage(const Image*, const double, const double, ExceptionInfo*); - Image* SharpenImageChannel(const Image*, const ChannelType ,const double, const double, ExceptionInfo*); - Image* SpreadImage(const Image*, const double, ExceptionInfo*); - Image* UnsharpMaskImage(const Image*, const double, const double, const double, const double, ExceptionInfo*); - Image* UnsharpMaskImageChannel(const Image*, const ChannelType, const double, const double, const double, const double, ExceptionInfo*); + Image* AdaptiveBlurImage(const(Image)*, const double, const double, ExceptionInfo*); + Image* AdaptiveBlurImageChannel(const(Image)*, const ChannelType, const double, const double, ExceptionInfo*); + Image* AdaptiveSharpenImage(const(Image)*, const double, const double, ExceptionInfo*); + Image* AdaptiveSharpenImageChannel(const(Image)*, const ChannelType, const double, const double, ExceptionInfo*); + Image* BlurImage(const(Image)*, const double, const double, ExceptionInfo*); + Image* BlurImageChannel(const(Image)*, const ChannelType, const double, const double, ExceptionInfo*); + Image* ConvolveImage(const(Image)*, const size_t, const(double)*, ExceptionInfo*); + Image* ConvolveImageChannel(const(Image)*, const ChannelType, const size_t, const(double)*, ExceptionInfo*); + Image* DespeckleImage(const(Image)*, ExceptionInfo*); + Image* EdgeImage(const(Image)*, const double, ExceptionInfo*); + Image* EmbossImage(const(Image)*, const double, const double, ExceptionInfo*); + Image* FilterImage(const(Image)*, const(KernelInfo)*, ExceptionInfo*); + Image* FilterImageChannel(const(Image)*, const ChannelType, const(KernelInfo)*, ExceptionInfo*); + Image* GaussianBlurImage(const(Image)*, const double, const double, ExceptionInfo*); + Image* GaussianBlurImageChannel(const(Image)*, const ChannelType, const double, const double, ExceptionInfo*); + Image* MedianFilterImage(const(Image)*, const double, ExceptionInfo*); + Image* MotionBlurImage(const(Image)*, const double, const double, const double, ExceptionInfo*); + Image* MotionBlurImageChannel(const(Image)*, const ChannelType, const double, const double, const double, ExceptionInfo*); + Image* PreviewImage(const(Image)*, const PreviewType, ExceptionInfo*); + Image* RadialBlurImage(const(Image)*, const double, ExceptionInfo*); + Image* RadialBlurImageChannel(const(Image)*, const ChannelType, const double, ExceptionInfo*); + Image* ReduceNoiseImage(const(Image)*, const double, ExceptionInfo*); + Image* SelectiveBlurImage(const(Image)*, const double, const double, const double, ExceptionInfo*); + Image* SelectiveBlurImageChannel(const(Image)*, const ChannelType, const double, const double, const double, ExceptionInfo*); + Image* ShadeImage(const(Image)*, const MagickBooleanType, const double, const double, ExceptionInfo*); + Image* SharpenImage(const(Image)*, const double, const double, ExceptionInfo*); + Image* SharpenImageChannel(const(Image)*, const ChannelType ,const double, const double, ExceptionInfo*); + Image* SpreadImage(const(Image)*, const double, ExceptionInfo*); + Image* UnsharpMaskImage(const(Image)*, const double, const double, const double, const double, ExceptionInfo*); + Image* UnsharpMaskImageChannel(const(Image)*, const ChannelType, const double, const double, const double, const double, ExceptionInfo*); } |
