summaryrefslogtreecommitdiff
path: root/fpcsrc/packages/cocoaint/src/quartzcore/CIImageAccumulator.inc
blob: 3be96b601e30cf9cc9230cd73b397155048aaad2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{ Parsed from Quartzcore.framework CIImageAccumulator.h }

{$ifdef TYPES}
{$ifndef CIIMAGEACCUMULATOR_PAS_T}
{$define CIIMAGEACCUMULATOR_PAS_T}

{$endif}
{$endif}

{$ifdef RECORDS}
{$ifndef CIIMAGEACCUMULATOR_PAS_R}
{$define CIIMAGEACCUMULATOR_PAS_R}

{$endif}
{$endif}

{$ifdef FUNCTIONS}
{$ifndef CIIMAGEACCUMULATOR_PAS_F}
{$define CIIMAGEACCUMULATOR_PAS_F}

{$endif}
{$endif}

{$ifdef EXTERNAL_SYMBOLS}
{$ifndef CIIMAGEACCUMULATOR_PAS_S}
{$define CIIMAGEACCUMULATOR_PAS_S}

{$endif}
{$endif}

{$ifdef FORWARD}
  CIImageAccumulator = objcclass;
  CIImageAccumulatorPointer = ^CIImageAccumulator;
  CIImageAccumulatorPtr = CIImageAccumulatorPointer;

{$endif}

{$ifdef CLASSES}
{$ifndef CIIMAGEACCUMULATOR_PAS_C}
{$define CIIMAGEACCUMULATOR_PAS_C}

{ CIImageAccumulator }
  CIImageAccumulator = objcclass external (NSObject)
  private
    _state: Pointer;
    
  public
    class function imageAccumulatorWithExtent_format(r: CGRect; f: CIFormat): CIImageAccumulator; message 'imageAccumulatorWithExtent:format:';
    function initWithExtent_format(r: CGRect; f: CIFormat): id; message 'initWithExtent:format:';
    function extent: CGRect; message 'extent';
    function format: CIFormat; message 'format';
    function image: CIImage; message 'image';
    procedure setImage(im: CIImage); message 'setImage:';
    procedure setImage_dirtyRect(im: CIImage; r: CGRect); message 'setImage:dirtyRect:';
    procedure clear; message 'clear';
  end;

{$endif}
{$endif}