summaryrefslogtreecommitdiff
path: root/dmagick/c/cacheView.d
diff options
context:
space:
mode:
authorMike Wey2011-07-04 22:52:38 +0200
committerMike Wey2011-07-04 22:52:38 +0200
commita6019489ca9bdfaf46847b00b8225041ec9f8d94 (patch)
tree7862d83211ad28fa0acf82bdd92c9274f09ea82d /dmagick/c/cacheView.d
parent4226779e5345e0601b305cbc28c1d89dcc9bee20 (diff)
Update headers to version 6.7.0ImageMagick_6.7.0
Diffstat (limited to 'dmagick/c/cacheView.d')
-rw-r--r--dmagick/c/cacheView.d10
1 files changed, 6 insertions, 4 deletions
diff --git a/dmagick/c/cacheView.d b/dmagick/c/cacheView.d
index ee46f76..7d423f2 100644
--- a/dmagick/c/cacheView.d
+++ b/dmagick/c/cacheView.d
@@ -34,6 +34,10 @@ extern(C)
struct CacheView {}
+ CacheView* AcquireCacheView(const(Image)*);
+ CacheView* CloneCacheView(const(CacheView)*);
+ CacheView* DestroyCacheView(CacheView*);
+
ClassType GetCacheViewStorageClass(const(CacheView)*);
ColorspaceType GetCacheViewColorspace(const(CacheView)*);
@@ -56,11 +60,9 @@ extern(C)
MagickSizeType GetCacheViewExtent(const(CacheView)*);
+ size_t GetCacheViewChannels(const(CacheView)*);
+
PixelPacket* GetCacheViewAuthenticPixelQueue(CacheView*);
PixelPacket* GetCacheViewAuthenticPixels(CacheView*, const ssize_t, const ssize_t, const size_t, const size_t, ExceptionInfo*);
PixelPacket* QueueCacheViewAuthenticPixels(CacheView*, const ssize_t, const ssize_t, const size_t, const size_t, ExceptionInfo*);
-
- CacheView* AcquireCacheView(const(Image)*);
- CacheView* CloneCacheView(const(CacheView)*);
- CacheView* DestroyCacheView(CacheView*);
}