]> granicus.if.org Git - imagemagick/blob - MagickCore/cache.h
(no commit message)
[imagemagick] / MagickCore / cache.h
1 /*
2   Copyright 1999-2012 ImageMagick Studio LLC, a non-profit organization
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
25 #include "MagickCore/blob.h"
26
27 typedef enum
28 {
29   UndefinedCache,
30   MemoryCache,
31   MapCache,
32   DiskCache,
33   PingCache
34 } CacheType;
35
36 extern MagickExport CacheType
37   GetImagePixelCacheType(const Image *);
38
39 extern MagickExport const Quantum
40   *GetVirtualPixels(const Image *,const ssize_t,const ssize_t,const size_t,
41     const size_t,ExceptionInfo *) magick_hot_spot,
42   *GetVirtualPixelQueue(const Image *) magick_hot_spot;
43
44 extern MagickExport const void
45   *GetVirtualMetacontent(const Image *);
46
47 extern MagickExport MagickBooleanType
48   GetOneAuthenticPixel(Image *,const ssize_t,const ssize_t,Quantum *,
49     ExceptionInfo *),
50   GetOneVirtualPixel(const Image *,const ssize_t,const ssize_t,Quantum *,
51     ExceptionInfo *),
52   GetOneVirtualPixelInfo(const Image *,const VirtualPixelMethod,
53     const ssize_t,const ssize_t,PixelInfo *,ExceptionInfo *),
54   PersistPixelCache(Image *,const char *,const MagickBooleanType,
55     MagickOffsetType *,ExceptionInfo *),
56   SyncAuthenticPixels(Image *,ExceptionInfo *) magick_hot_spot;
57
58 extern MagickExport MagickSizeType
59   GetImageExtent(const Image *);
60
61 extern MagickExport Quantum
62   *GetAuthenticPixels(Image *,const ssize_t,const ssize_t,const size_t,
63     const size_t,ExceptionInfo *) magick_hot_spot,
64   *GetAuthenticPixelQueue(const Image *) magick_hot_spot,
65   *QueueAuthenticPixels(Image *,const ssize_t,const ssize_t,const size_t,
66     const size_t,ExceptionInfo *) magick_hot_spot;
67
68 extern MagickExport void
69   *GetAuthenticMetacontent(const Image *);
70
71 #if defined(__cplusplus) || defined(c_plusplus)
72 }
73 #endif
74
75 #endif