comparison dstep/quartzcore/CIImageAccumulator.d @ 16:19885b43130e

Huge update, the bridge actually works now
author Jacob Carlborg <doob@me.com>
date Sun, 03 Jan 2010 22:06:11 +0100
parents
children b9de51448c6b
comparison
equal deleted inserted replaced
15:7ff919f595d5 16:19885b43130e
1 /**
2 * Copyright: Copyright (c) 2009 Jacob Carlborg.
3 * Authors: Jacob Carlborg
4 * Version: Initial created: Sep 24, 2009
5 * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0)
6 */
7 module dstep.quartzcore.CIImageAccumulator;
8
9 import dstep.applicationservices.coregraphics.CGGeometry;
10 import dstep.foundation.NSObject;
11 import dstep.objc.bridge.Bridge;
12 import dstep.objc.objc;
13 import dstep.quartzcore.CIImage;
14
15 class CIImageAccumulator : NSObject
16 {
17 mixin (ObjcWrap);
18
19 static CIImageAccumulator imageAccumulatorWithExtent (CGRect r, int f)
20 {
21 return invokeObjcSelfClass!(CIImageAccumulator, "imageAccumulatorWithExtent:format:", CGRect, int)(r, f);
22 }
23
24 CIImageAccumulator initWithExtent (CGRect r, int f)
25 {
26 id result = invokeObjcSelf!(id, "initWithExtent:format:", CGRect, int)(r, f);
27 return result is this.objcObject ? this : (result !is null ? new CIImageAccumulator(result) : null);
28 }
29
30 this (CGRect r, int f)
31 {
32 super(CIImageAccumulator.alloc.initWithExtent(r, f).objcObject);
33 }
34
35 CGRect extent ()
36 {
37 return invokeObjcSelf!(CGRect, "extent");
38 }
39
40 int format ()
41 {
42 return invokeObjcSelf!(int, "format");
43 }
44
45 CIImage image ()
46 {
47 return invokeObjcSelf!(CIImage, "image");
48 }
49
50 void setImage (CIImage im)
51 {
52 return invokeObjcSelf!(void, "setImage:", CIImage)(im);
53 }
54
55 void setImage (CIImage im, CGRect r)
56 {
57 return invokeObjcSelf!(void, "setImage:dirtyRect:", CIImage, CGRect)(im, r);
58 }
59
60 void clear ()
61 {
62 return invokeObjcSelf!(void, "clear");
63 }
64 }
65