summaryrefslogtreecommitdiff
path: root/dmagick/c/fx.d
diff options
context:
space:
mode:
Diffstat (limited to 'dmagick/c/fx.d')
-rw-r--r--dmagick/c/fx.d19
1 files changed, 11 insertions, 8 deletions
diff --git a/dmagick/c/fx.d b/dmagick/c/fx.d
index ac77737..2da4806 100644
--- a/dmagick/c/fx.d
+++ b/dmagick/c/fx.d
@@ -12,16 +12,19 @@ alias ptrdiff_t ssize_t;
extern(C)
{
+ /**
+ * Select the type of noise to be added to the image.
+ */
enum NoiseType
{
- UndefinedNoise,
- UniformNoise,
- GaussianNoise,
- MultiplicativeGaussianNoise,
- ImpulseNoise,
- LaplacianNoise,
- PoissonNoise,
- RandomNoise
+ UndefinedNoise, ///
+ UniformNoise, /// ditto
+ GaussianNoise, /// ditto
+ MultiplicativeGaussianNoise, /// ditto
+ ImpulseNoise, /// ditto
+ LaplacianNoise, /// ditto
+ PoissonNoise, /// ditto
+ RandomNoise /// ditto
}
Image* AddNoiseImage(const(Image)*, const NoiseType, ExceptionInfo*);