summaryrefslogtreecommitdiff
path: root/dmagick/ImageView.d
diff options
context:
space:
mode:
authorMike Wey2011-10-16 19:40:07 +0200
committerMike Wey2011-10-16 19:40:07 +0200
commitd131ed5959a916a0180bdb561ef508f51e19d8a7 (patch)
treefa9f0ffbb7f9a242a208589768ff4c52014350fc /dmagick/ImageView.d
parent20aceb391b4ba13d9f670cefa62066ab2ab5b90a (diff)
Allow converting one color type to an other.
Diffstat (limited to 'dmagick/ImageView.d')
-rw-r--r--dmagick/ImageView.d16
1 files changed, 8 insertions, 8 deletions
diff --git a/dmagick/ImageView.d b/dmagick/ImageView.d
index 4e967be..f23f23a 100644
--- a/dmagick/ImageView.d
+++ b/dmagick/ImageView.d
@@ -316,14 +316,6 @@ struct Pixels
return new Color(pixels.ptr + pixel);
}
- /**
- * Sync the pixels back to the image. The destructor does this for you.
- */
- void sync()
- {
- SyncAuthenticPixelCacheNexus(image.imageRef, &nexus, DMagickExceptionInfo());
- }
-
///ditto
void opIndexAssign(Color color, size_t index)
{
@@ -358,6 +350,14 @@ struct Pixels
}
/**
+ * Sync the pixels back to the image. The destructor does this for you.
+ */
+ void sync()
+ {
+ SyncAuthenticPixelCacheNexus(image.imageRef, &nexus, DMagickExceptionInfo());
+ }
+
+ /**
* Support using foreach on a row.
*/
int opApply(T : Color)(int delegate(ref T) dg)