comparison dstep/quartzcore/CIFilter_bindings.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
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.CIFilter_bindings;
8
9 import dstep.objc.objc;
10
11 extern (C)
12 {
13 extern
14 {
15 package id kCIAttributeFilterName;
16 package id kCIAttributeFilterDisplayName;
17 package id kCIAttributeDescription;
18 package id kCIAttributeReferenceDocumentation;
19 package id kCIAttributeFilterCategories;
20 package id kCIAttributeClass;
21 package id kCIAttributeType;
22 package id kCIAttributeMin;
23 package id kCIAttributeMax;
24 package id kCIAttributeSliderMin;
25 package id kCIAttributeSliderMax;
26 package id kCIAttributeDefault;
27 package id kCIAttributeIdentity;
28 package id kCIAttributeName;
29 package id kCIAttributeDisplayName;
30 package id kCIUIParameterSet;
31 package id kCIUISetBasic;
32 package id kCIUISetIntermediate;
33 package id kCIUISetAdvanced;
34 package id kCIUISetDevelopment;
35 package id kCIAttributeTypeTime;
36 package id kCIAttributeTypeScalar;
37 package id kCIAttributeTypeDistance;
38 package id kCIAttributeTypeAngle;
39 package id kCIAttributeTypeBoolean;
40 package id kCIAttributeTypeInteger;
41 package id kCIAttributeTypeCount;
42 package id kCIAttributeTypePosition;
43 package id kCIAttributeTypeOffset;
44 package id kCIAttributeTypePosition3;
45 package id kCIAttributeTypeRectangle;
46 package id kCIAttributeTypeOpaqueColor;
47 package id kCIAttributeTypeGradient;
48 package id kCICategoryDistortionEffect;
49 package id kCICategoryGeometryAdjustment;
50 package id kCICategoryCompositeOperation;
51 package id kCICategoryHalftoneEffect;
52 package id kCICategoryColorAdjustment;
53 package id kCICategoryColorEffect;
54 package id kCICategoryTransition;
55 package id kCICategoryTileEffect;
56 package id kCICategoryGenerator;
57 package id kCICategoryReduction;
58 package id kCICategoryGradient;
59 package id kCICategoryStylize;
60 package id kCICategorySharpen;
61 package id kCICategoryBlur;
62 package id kCICategoryVideo;
63 package id kCICategoryStillImage;
64 package id kCICategoryInterlaced;
65 package id kCICategoryNonSquarePixels;
66 package id kCICategoryHighDynamicRange;
67 package id kCICategoryBuiltIn;
68 package id kCICategoryFilterGenerator;
69 package id kCIApplyOptionExtent;
70 package id kCIApplyOptionDefinition;
71 package id kCIApplyOptionUserInfo;
72 package id kCIOutputImageKey;
73 package id kCIInputBackgroundImageKey;
74 package id kCIInputImageKey;
75 package id kCIInputTimeKey;
76 package id kCIInputTransformKey;
77 package id kCIInputScaleKey;
78 package id kCIInputAspectRatioKey;
79 package id kCIInputCenterKey;
80 package id kCIInputRadiusKey;
81 package id kCIInputAngleKey;
82 package id kCIInputRefractionKey;
83 package id kCIInputWidthKey;
84 package id kCIInputSharpnessKey;
85 package id kCIInputIntensityKey;
86 package id kCIInputEVKey;
87 package id kCIInputSaturationKey;
88 package id kCIInputColorKey;
89 package id kCIInputBrightnessKey;
90 package id kCIInputContrastKey;
91 package id kCIInputGradientImageKey;
92 package id kCIInputMaskImageKey;
93 package id kCIInputShadingImageKey;
94 package id kCIInputTargetImageKey;
95 package id kCIInputExtentKey;
96 }
97 }
98