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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use objc2::__framework_prelude::*;
use objc2_foundation::*;
#[cfg(feature = "objc2-metal")]
use objc2_metal::*;

use crate::*;

// NS_TYPED_ENUM
pub type CIFormat = c_int;

extern "C" {
    pub static kCIFormatARGB8: CIFormat;
}

extern "C" {
    pub static kCIFormatBGRA8: CIFormat;
}

extern "C" {
    pub static kCIFormatRGBA8: CIFormat;
}

extern "C" {
    pub static kCIFormatABGR8: CIFormat;
}

extern "C" {
    pub static kCIFormatRGBAh: CIFormat;
}

extern "C" {
    pub static kCIFormatRGBA16: CIFormat;
}

extern "C" {
    pub static kCIFormatRGBAf: CIFormat;
}

extern "C" {
    pub static kCIFormatRGBX16: CIFormat;
}

extern "C" {
    pub static kCIFormatRGBXh: CIFormat;
}

extern "C" {
    pub static kCIFormatRGBXf: CIFormat;
}

extern "C" {
    pub static kCIFormatRGB10: CIFormat;
}

extern "C" {
    pub static kCIFormatA8: CIFormat;
}

extern "C" {
    pub static kCIFormatA16: CIFormat;
}

extern "C" {
    pub static kCIFormatAh: CIFormat;
}

extern "C" {
    pub static kCIFormatAf: CIFormat;
}

extern "C" {
    pub static kCIFormatR8: CIFormat;
}

extern "C" {
    pub static kCIFormatR16: CIFormat;
}

extern "C" {
    pub static kCIFormatRh: CIFormat;
}

extern "C" {
    pub static kCIFormatRf: CIFormat;
}

extern "C" {
    pub static kCIFormatRG8: CIFormat;
}

extern "C" {
    pub static kCIFormatRG16: CIFormat;
}

extern "C" {
    pub static kCIFormatRGh: CIFormat;
}

extern "C" {
    pub static kCIFormatRGf: CIFormat;
}

extern "C" {
    pub static kCIFormatL8: CIFormat;
}

extern "C" {
    pub static kCIFormatL16: CIFormat;
}

extern "C" {
    pub static kCIFormatLh: CIFormat;
}

extern "C" {
    pub static kCIFormatLf: CIFormat;
}

extern "C" {
    pub static kCIFormatLA8: CIFormat;
}

extern "C" {
    pub static kCIFormatLA16: CIFormat;
}

extern "C" {
    pub static kCIFormatLAh: CIFormat;
}

extern "C" {
    pub static kCIFormatLAf: CIFormat;
}

// NS_TYPED_ENUM
pub type CIImageOption = NSString;

extern "C" {
    pub static kCIImageColorSpace: &'static CIImageOption;
}

extern "C" {
    pub static kCIImageToneMapHDRtoSDR: &'static CIImageOption;
}

extern "C" {
    pub static kCIImageExpandToHDR: &'static CIImageOption;
}

extern "C" {
    pub static kCIImageNearestSampling: &'static CIImageOption;
}

extern "C" {
    pub static kCIImageCacheImmediately: &'static CIImageOption;
}

extern "C" {
    pub static kCIImageProperties: &'static CIImageOption;
}

extern "C" {
    pub static kCIImageApplyOrientationProperty: &'static CIImageOption;
}

extern "C" {
    pub static kCIImageTextureTarget: &'static CIImageOption;
}

extern "C" {
    pub static kCIImageTextureFormat: &'static CIImageOption;
}

extern "C" {
    pub static kCIImageAuxiliaryDepth: &'static CIImageOption;
}

extern "C" {
    pub static kCIImageAuxiliaryDisparity: &'static CIImageOption;
}

extern "C" {
    pub static kCIImageAuxiliaryPortraitEffectsMatte: &'static CIImageOption;
}

extern "C" {
    pub static kCIImageAuxiliarySemanticSegmentationSkinMatte: &'static CIImageOption;
}

extern "C" {
    pub static kCIImageAuxiliarySemanticSegmentationHairMatte: &'static CIImageOption;
}

extern "C" {
    pub static kCIImageAuxiliarySemanticSegmentationTeethMatte: &'static CIImageOption;
}

extern "C" {
    pub static kCIImageAuxiliarySemanticSegmentationGlassesMatte: &'static CIImageOption;
}

extern "C" {
    pub static kCIImageAuxiliarySemanticSegmentationSkyMatte: &'static CIImageOption;
}

extern "C" {
    pub static kCIImageAuxiliaryHDRGainMap: &'static CIImageOption;
}

extern_class!(
    #[derive(Debug, PartialEq, Eq, Hash)]
    pub struct CIImage;

    unsafe impl ClassType for CIImage {
        type Super = NSObject;
        type Mutability = InteriorMutable;
    }
);

unsafe impl NSCoding for CIImage {}

unsafe impl NSCopying for CIImage {}

unsafe impl NSObjectProtocol for CIImage {}

unsafe impl NSSecureCoding for CIImage {}

extern_methods!(
    unsafe impl CIImage {
        #[deprecated = "Core Image OpenGL API deprecated. (Define CI_SILENCE_GL_DEPRECATION to silence these warnings)"]
        #[method_id(@__retain_semantics Other imageWithTexture:size:flipped:options:)]
        pub unsafe fn imageWithTexture_size_flipped_options(
            name: c_uint,
            size: CGSize,
            flipped: bool,
            options: Option<&NSDictionary<CIImageOption, AnyObject>>,
        ) -> Retained<CIImage>;

        #[cfg(feature = "objc2-metal")]
        #[method_id(@__retain_semantics Other imageWithMTLTexture:options:)]
        pub unsafe fn imageWithMTLTexture_options(
            texture: &ProtocolObject<dyn MTLTexture>,
            options: Option<&NSDictionary<CIImageOption, AnyObject>>,
        ) -> Option<Retained<CIImage>>;

        #[method_id(@__retain_semantics Other imageWithContentsOfURL:)]
        pub unsafe fn imageWithContentsOfURL(url: &NSURL) -> Option<Retained<CIImage>>;

        #[method_id(@__retain_semantics Other imageWithContentsOfURL:options:)]
        pub unsafe fn imageWithContentsOfURL_options(
            url: &NSURL,
            options: Option<&NSDictionary<CIImageOption, AnyObject>>,
        ) -> Option<Retained<CIImage>>;

        #[method_id(@__retain_semantics Other imageWithData:)]
        pub unsafe fn imageWithData(data: &NSData) -> Option<Retained<CIImage>>;

        #[method_id(@__retain_semantics Other imageWithData:options:)]
        pub unsafe fn imageWithData_options(
            data: &NSData,
            options: Option<&NSDictionary<CIImageOption, AnyObject>>,
        ) -> Option<Retained<CIImage>>;

        #[cfg(feature = "CIColor")]
        #[method_id(@__retain_semantics Other imageWithColor:)]
        pub unsafe fn imageWithColor(color: &CIColor) -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other emptyImage)]
        pub unsafe fn emptyImage() -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other blackImage)]
        pub unsafe fn blackImage() -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other whiteImage)]
        pub unsafe fn whiteImage() -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other grayImage)]
        pub unsafe fn grayImage() -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other redImage)]
        pub unsafe fn redImage() -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other greenImage)]
        pub unsafe fn greenImage() -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other blueImage)]
        pub unsafe fn blueImage() -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other cyanImage)]
        pub unsafe fn cyanImage() -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other magentaImage)]
        pub unsafe fn magentaImage() -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other yellowImage)]
        pub unsafe fn yellowImage() -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other clearImage)]
        pub unsafe fn clearImage() -> Retained<CIImage>;

        #[method_id(@__retain_semantics Init initWithData:)]
        pub unsafe fn initWithData(this: Allocated<Self>, data: &NSData) -> Option<Retained<Self>>;

        #[method_id(@__retain_semantics Init initWithData:options:)]
        pub unsafe fn initWithData_options(
            this: Allocated<Self>,
            data: &NSData,
            options: Option<&NSDictionary<CIImageOption, AnyObject>>,
        ) -> Option<Retained<Self>>;

        #[deprecated = "Core Image OpenGL API deprecated. (Define CI_SILENCE_GL_DEPRECATION to silence these warnings)"]
        #[method_id(@__retain_semantics Init initWithTexture:size:flipped:options:)]
        pub unsafe fn initWithTexture_size_flipped_options(
            this: Allocated<Self>,
            name: c_uint,
            size: CGSize,
            flipped: bool,
            options: Option<&NSDictionary<CIImageOption, AnyObject>>,
        ) -> Retained<Self>;

        #[cfg(feature = "objc2-metal")]
        #[method_id(@__retain_semantics Init initWithMTLTexture:options:)]
        pub unsafe fn initWithMTLTexture_options(
            this: Allocated<Self>,
            texture: &ProtocolObject<dyn MTLTexture>,
            options: Option<&NSDictionary<CIImageOption, AnyObject>>,
        ) -> Option<Retained<Self>>;

        #[method_id(@__retain_semantics Init initWithContentsOfURL:)]
        pub unsafe fn initWithContentsOfURL(
            this: Allocated<Self>,
            url: &NSURL,
        ) -> Option<Retained<Self>>;

        #[method_id(@__retain_semantics Init initWithContentsOfURL:options:)]
        pub unsafe fn initWithContentsOfURL_options(
            this: Allocated<Self>,
            url: &NSURL,
            options: Option<&NSDictionary<CIImageOption, AnyObject>>,
        ) -> Option<Retained<Self>>;

        #[cfg(feature = "CIColor")]
        #[method_id(@__retain_semantics Init initWithColor:)]
        pub unsafe fn initWithColor(this: Allocated<Self>, color: &CIColor) -> Retained<Self>;

        #[method_id(@__retain_semantics Other imageByApplyingOrientation:)]
        pub unsafe fn imageByApplyingOrientation(&self, orientation: c_int) -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other imageByCompositingOverImage:)]
        pub unsafe fn imageByCompositingOverImage(&self, dest: &CIImage) -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other imageByCroppingToRect:)]
        pub unsafe fn imageByCroppingToRect(&self, rect: CGRect) -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other imageByClampingToExtent)]
        pub unsafe fn imageByClampingToExtent(&self) -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other imageByClampingToRect:)]
        pub unsafe fn imageByClampingToRect(&self, rect: CGRect) -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other imageByApplyingFilter:withInputParameters:)]
        pub unsafe fn imageByApplyingFilter_withInputParameters(
            &self,
            filter_name: &NSString,
            params: Option<&NSDictionary<NSString, AnyObject>>,
        ) -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other imageByApplyingFilter:)]
        pub unsafe fn imageByApplyingFilter(&self, filter_name: &NSString) -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other imageByPremultiplyingAlpha)]
        pub unsafe fn imageByPremultiplyingAlpha(&self) -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other imageByUnpremultiplyingAlpha)]
        pub unsafe fn imageByUnpremultiplyingAlpha(&self) -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other imageBySettingAlphaOneInExtent:)]
        pub unsafe fn imageBySettingAlphaOneInExtent(&self, extent: CGRect) -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other imageByApplyingGaussianBlurWithSigma:)]
        pub unsafe fn imageByApplyingGaussianBlurWithSigma(
            &self,
            sigma: c_double,
        ) -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other imageBySettingProperties:)]
        pub unsafe fn imageBySettingProperties(
            &self,
            properties: &NSDictionary,
        ) -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other imageBySamplingLinear)]
        pub unsafe fn imageBySamplingLinear(&self) -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other imageBySamplingNearest)]
        pub unsafe fn imageBySamplingNearest(&self) -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other imageByInsertingIntermediate)]
        pub unsafe fn imageByInsertingIntermediate(&self) -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other imageByInsertingIntermediate:)]
        pub unsafe fn imageByInsertingIntermediate_(&self, cache: bool) -> Retained<CIImage>;

        #[method(extent)]
        pub unsafe fn extent(&self) -> CGRect;

        #[method_id(@__retain_semantics Other properties)]
        pub unsafe fn properties(&self) -> Retained<NSDictionary<NSString, AnyObject>>;

        #[cfg(feature = "CIFilterShape")]
        #[method_id(@__retain_semantics Other definition)]
        pub unsafe fn definition(&self) -> Retained<CIFilterShape>;

        #[method_id(@__retain_semantics Other url)]
        pub unsafe fn url(&self) -> Option<Retained<NSURL>>;

        #[method(regionOfInterestForImage:inRect:)]
        pub unsafe fn regionOfInterestForImage_inRect(
            &self,
            image: &CIImage,
            rect: CGRect,
        ) -> CGRect;
    }
);

extern_methods!(
    /// Methods declared on superclass `NSObject`
    unsafe impl CIImage {
        #[method_id(@__retain_semantics Init init)]
        pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;

        #[method_id(@__retain_semantics New new)]
        pub unsafe fn new() -> Retained<Self>;
    }
);

// NS_TYPED_ENUM
pub type CIImageAutoAdjustmentOption = NSString;

extern "C" {
    pub static kCIImageAutoAdjustEnhance: &'static CIImageAutoAdjustmentOption;
}

extern "C" {
    pub static kCIImageAutoAdjustRedEye: &'static CIImageAutoAdjustmentOption;
}

extern "C" {
    pub static kCIImageAutoAdjustFeatures: &'static CIImageAutoAdjustmentOption;
}

extern "C" {
    pub static kCIImageAutoAdjustCrop: &'static CIImageAutoAdjustmentOption;
}

extern "C" {
    pub static kCIImageAutoAdjustLevel: &'static CIImageAutoAdjustmentOption;
}

extern_methods!(
    /// AutoAdjustment
    unsafe impl CIImage {
        #[cfg(feature = "CIFilter")]
        #[method_id(@__retain_semantics Other autoAdjustmentFilters)]
        pub unsafe fn autoAdjustmentFilters(&self) -> Retained<NSArray<CIFilter>>;

        #[cfg(feature = "CIFilter")]
        #[method_id(@__retain_semantics Other autoAdjustmentFiltersWithOptions:)]
        pub unsafe fn autoAdjustmentFiltersWithOptions(
            &self,
            options: Option<&NSDictionary<CIImageAutoAdjustmentOption, AnyObject>>,
        ) -> Retained<NSArray<CIFilter>>;
    }
);

extern_methods!(
    /// LabConversion
    unsafe impl CIImage {
        #[method_id(@__retain_semantics Other imageByConvertingWorkingSpaceToLab)]
        pub unsafe fn imageByConvertingWorkingSpaceToLab(&self) -> Retained<CIImage>;

        #[method_id(@__retain_semantics Other imageByConvertingLabToWorkingSpace)]
        pub unsafe fn imageByConvertingLabToWorkingSpace(&self) -> Retained<CIImage>;
    }
);