cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 1 | /* |
cristy | 7e41fe8 | 2010-12-04 23:12:08 +0000 | [diff] [blame] | 2 | Copyright 1999-2011 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 methods. |
| 17 | */ |
| 18 | #ifndef _MAGICKCORE_CACHE_H |
| 19 | #define _MAGICKCORE_CACHE_H |
| 20 | |
| 21 | #if defined(__cplusplus) || defined(c_plusplus) |
| 22 | extern "C" { |
| 23 | #endif |
| 24 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 25 | #include "MagickCore/blob.h" |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 26 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 27 | extern MagickExport const Quantum |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 28 | *GetVirtualPixels(const Image *,const ssize_t,const ssize_t,const size_t, |
| 29 | const size_t,ExceptionInfo *), |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 30 | *GetVirtualPixelQueue(const Image *); |
| 31 | |
cristy | d43a46b | 2010-01-21 02:13:41 +0000 | [diff] [blame] | 32 | extern MagickExport const void |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 33 | *GetVirtualMetacontent(const Image *); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 34 | |
| 35 | extern MagickExport MagickBooleanType |
cristy | 5201002 | 2011-10-21 18:07:37 +0000 | [diff] [blame] | 36 | GetOneVirtualMagickPixel(const Image *,const VirtualPixelMethod, |
| 37 | const ssize_t,const ssize_t,PixelInfo *,ExceptionInfo *), |
cristy | 2ed42f6 | 2011-10-02 19:49:57 +0000 | [diff] [blame] | 38 | GetOneVirtualPixel(const Image *,const ssize_t,const ssize_t,Quantum *, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 39 | ExceptionInfo *), |
cristy | 2ed42f6 | 2011-10-02 19:49:57 +0000 | [diff] [blame] | 40 | GetOneAuthenticPixel(Image *,const ssize_t,const ssize_t,Quantum *, |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 41 | ExceptionInfo *), |
| 42 | PersistPixelCache(Image *,const char *,const MagickBooleanType, |
| 43 | MagickOffsetType *,ExceptionInfo *), |
cristy | d1dd6e4 | 2011-09-04 01:46:08 +0000 | [diff] [blame] | 44 | SyncAuthenticPixels(Image *,ExceptionInfo *); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 45 | |
| 46 | extern MagickExport MagickSizeType |
| 47 | GetImageExtent(const Image *); |
| 48 | |
cristy | 4c08aed | 2011-07-01 19:47:50 +0000 | [diff] [blame] | 49 | extern MagickExport Quantum |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 50 | *GetAuthenticPixels(Image *,const ssize_t,const ssize_t,const size_t, |
| 51 | const size_t,ExceptionInfo *), |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 52 | *GetAuthenticPixelQueue(const Image *), |
cristy | bb50337 | 2010-05-27 20:51:26 +0000 | [diff] [blame] | 53 | *QueueAuthenticPixels(Image *,const ssize_t,const ssize_t,const size_t, |
| 54 | const size_t,ExceptionInfo *); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 55 | |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 56 | extern MagickExport void |
cristy | d1dd6e4 | 2011-09-04 01:46:08 +0000 | [diff] [blame] | 57 | *GetAuthenticMetacontent(const Image *); |
cristy | 3ed852e | 2009-09-05 21:47:34 +0000 | [diff] [blame] | 58 | |
| 59 | #if defined(__cplusplus) || defined(c_plusplus) |
| 60 | } |
| 61 | #endif |
| 62 | |
| 63 | #endif |