~ubuntu-branches/ubuntu/feisty/fpc/feisty

« back to all changes in this revision

Viewing changes to packages/base/imagemagick/magick/cache_view.inc

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-01-27 20:08:50 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070127200850-9mrptaqqjsx9nwa7
Tags: 2.0.4-5
* Fixed Build-Depends.
* Add myself to Uploaders in debian/control.
* Make sure that the sources are really patched before building them.
* Build unit 'libc' on powerpc too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{
 
2
  Copyright 1999-2005 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
  ImageMagick Cache View Methods.
 
17
}
 
18
 
 
19
type
 
20
  ViewInfo = record
 
21
    image: PImage;
 
22
 
 
23
    id: Cardinal;
 
24
 
 
25
    signature: Cardinal;
 
26
  end;
 
27
  
 
28
  PViewInfo = ^ViewInfo;
 
29
 
 
30
{extern MagickExport const PixelPacket
 
31
  *AcquireCacheView(const ViewInfo *,const long,const long,const unsigned long,
 
32
    const unsigned long,ExceptionInfo *);
 
33
 
 
34
extern MagickExport IndexPacket
 
35
  *GetCacheViewIndexes(const ViewInfo *);
 
36
 
 
37
extern MagickExport MagickBooleanType
 
38
  SyncCacheView(ViewInfo *);
 
39
 
 
40
extern MagickExport PixelPacket
 
41
  *GetCacheViewPixels(const ViewInfo *),
 
42
  *GetCacheView(ViewInfo *,const long,const long,const unsigned long,
 
43
    const unsigned long),
 
44
  *SetCacheView(ViewInfo *,const long,const long,const unsigned long,
 
45
    const unsigned long);
 
46
 
 
47
extern MagickExport ViewInfo
 
48
  *OpenCacheView(Image *);
 
49
 
 
50
extern MagickExport void
 
51
  CloseCacheView(ViewInfo *);}
 
52