cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1 | /* |
cristy | 16af1cb | 2009-12-11 21:38:29 +0000 | [diff] [blame] | 2 | Copyright 1999-2010 ImageMagick Studio LLC, a non-profit organization |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 3 | dedicated to making software imaging solutions freely available. |
| 4 | |
| 5 | You may not use this file except in compliance with the License. |
| 6 | obtain a copy of the License at |
| 7 | |
| 8 | http://www.imagemagick.org/script/license.php |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | |
| 16 | MagickCore cache view methods. |
| 17 | */ |
| 18 | #ifndef _MAGICKCORE_CACHE_VIEW_H |
| 19 | #define _MAGICKCORE_CACHE_VIEW_H |
| 20 | |
| 21 | #if defined(__cplusplus) || defined(c_plusplus) |
| 22 | extern "C" { |
| 23 | #endif |
| 24 | |
| 25 | #include "magick/pixel.h" |
| 26 | |
| 27 | typedef enum |
| 28 | { |
| 29 | UndefinedVirtualPixelMethod, |
| 30 | BackgroundVirtualPixelMethod, |
| 31 | ConstantVirtualPixelMethod, /* deprecated */ |
| 32 | DitherVirtualPixelMethod, |
| 33 | EdgeVirtualPixelMethod, |
| 34 | MirrorVirtualPixelMethod, |
| 35 | RandomVirtualPixelMethod, |
| 36 | TileVirtualPixelMethod, |
| 37 | TransparentVirtualPixelMethod, |
| 38 | MaskVirtualPixelMethod, |
| 39 | BlackVirtualPixelMethod, |
| 40 | GrayVirtualPixelMethod, |
| 41 | WhiteVirtualPixelMethod, |
| 42 | HorizontalTileVirtualPixelMethod, |
| 43 | VerticalTileVirtualPixelMethod, |
| 44 | HorizontalTileEdgeVirtualPixelMethod, |
| 45 | VerticalTileEdgeVirtualPixelMethod, |
| 46 | CheckerTileVirtualPixelMethod |
| 47 | } VirtualPixelMethod; |
| 48 | |
| 49 | typedef struct _CacheView |
| 50 | CacheView; |
| 51 | |
| 52 | extern MagickExport ClassType |
| 53 | GetCacheViewStorageClass(const CacheView *); |
| 54 | |
| 55 | extern MagickExport ColorspaceType |
| 56 | GetCacheViewColorspace(const CacheView *); |
| 57 | |
| 58 | extern MagickExport const IndexPacket |
| 59 | *GetCacheViewVirtualIndexQueue(const CacheView *); |
| 60 | |
| 61 | extern MagickExport const PixelPacket |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame^] | 62 | *GetCacheViewVirtualPixels(const CacheView *,const ssize_t,const ssize_t, |
| 63 | const size_t,const size_t,ExceptionInfo *), |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 64 | *GetCacheViewVirtualPixelQueue(const CacheView *); |
| 65 | |
| 66 | extern MagickExport ExceptionInfo |
| 67 | *GetCacheViewException(const CacheView *); |
| 68 | |
| 69 | extern MagickExport IndexPacket |
| 70 | *GetCacheViewAuthenticIndexQueue(CacheView *); |
| 71 | |
| 72 | extern MagickExport MagickBooleanType |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame^] | 73 | GetOneCacheViewVirtualPixel(const CacheView *,const ssize_t,const ssize_t, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 74 | PixelPacket *,ExceptionInfo *), |
| 75 | GetOneCacheViewVirtualMethodPixel(const CacheView *, |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame^] | 76 | const VirtualPixelMethod,const ssize_t,const ssize_t,PixelPacket *, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 77 | ExceptionInfo *), |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame^] | 78 | GetOneCacheViewAuthenticPixel(const CacheView *,const ssize_t,const ssize_t, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 79 | PixelPacket *,ExceptionInfo *), |
| 80 | SetCacheViewStorageClass(CacheView *,const ClassType), |
| 81 | SetCacheViewVirtualPixelMethod(CacheView *,const VirtualPixelMethod), |
| 82 | SyncCacheViewAuthenticPixels(CacheView *,ExceptionInfo *); |
| 83 | |
| 84 | extern MagickExport MagickSizeType |
| 85 | GetCacheViewExtent(const CacheView *); |
| 86 | |
| 87 | extern MagickExport PixelPacket |
| 88 | *GetCacheViewAuthenticPixelQueue(CacheView *), |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame^] | 89 | *GetCacheViewAuthenticPixels(CacheView *,const ssize_t,const ssize_t, |
| 90 | const size_t,const size_t,ExceptionInfo *), |
| 91 | *QueueCacheViewAuthenticPixels(CacheView *,const ssize_t,const ssize_t, |
| 92 | const size_t,const size_t,ExceptionInfo *); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 93 | |
| 94 | extern MagickExport CacheView |
| 95 | *AcquireCacheView(const Image *), |
| 96 | *CloneCacheView(const CacheView *), |
| 97 | *DestroyCacheView(CacheView *); |
| 98 | |
| 99 | #if defined(__cplusplus) || defined(c_plusplus) |
| 100 | } |
| 101 | #endif |
| 102 | |
| 103 | #endif |