CoreImage Changes for Swift
CoreImage (Added)
Added CIColor.alpha
Added CIColor.blue
Added CIColor.colorSpace
Added CIColor.components
Added CIColor.green
Added CIColor.red
Added CIColorKernel
Added CIFilter.attributes
Added CIFilter.inputKeys
Added CIFilter.outputKeys
Added CIFilterShape.extent
Added CIImage.colorSpace
Added CIImage.definition
Added CIImage.extent
Added CIImage.properties
Added CIImage.url
Added CIKernel.name
Added CISampler.definition
Added CISampler.extent
Added CITextFeature
Added CITextFeature.bottomLeft
Added CITextFeature.bounds
Added CITextFeature.topLeft
Added CITextFeature.topRight
Added CIVector.CGPointValue
Added CIVector.CGRectValue
Added CIVector.count
Added CIVector.W
Added CIVector.X
Added CIVector.Y
Added CIVector.Z
Added CIWarpKernel
Added CIDetectorNumberOfAngles
Added CIDetectorTypeText
Added CIFeatureTypeQRCode
Added CIFeatureTypeText
Added CIKernelROICallback
Added kCIAttributeTypeColor
Added kCIAttributeTypeImage
Added kCIContextWorkingFormat
Added kCIFormatA16
Added kCIFormatA8
Added kCIFormatABGR8
Added kCIFormatAf
Added kCIFormatAh
Added kCIFormatBGRA8
Added kCIFormatR16
Added kCIFormatR8
Added kCIFormatRf
Added kCIFormatRG16
Added kCIFormatRG8
Added kCIFormatRGBA8
Added kCIFormatRGf
Added kCIFormatRGh
Added kCIFormatRh
Added kCIInputVersionKey
Added kCIInputWeightsKey
Added UNIFIED_CORE_IMAGE
Modified CIColor
| Declaration | Protocols | Introduction | Module | |
|---|---|---|---|---|
| From | class CIColor : NSObject, NSCoding, NSCopying {
init!(CGColor c: CGColor!) -> CIColor
class func colorWithCGColor(_ c: CGColor!) -> CIColor!
init!(red r: CGFloat, green g: CGFloat, blue b: CGFloat, alpha a: CGFloat) -> CIColor
class func colorWithRed(_ r: CGFloat, green g: CGFloat, blue b: CGFloat, alpha a: CGFloat) -> CIColor!
init!(red r: CGFloat, green g: CGFloat, blue b: CGFloat) -> CIColor
class func colorWithRed(_ r: CGFloat, green g: CGFloat, blue b: CGFloat) -> CIColor!
init!(string representation: String!) -> CIColor
class func colorWithString(_ representation: String!) -> CIColor!
init!(CGColor c: CGColor!)
func numberOfComponents() -> Int
func components() -> UnsafePointer<CGFloat>
func alpha() -> CGFloat
func colorSpace() -> Unmanaged<CGColorSpace>!
func red() -> CGFloat
func green() -> CGFloat
func blue() -> CGFloat
func stringRepresentation() -> String!
}
extension CIColor {
init?(color color: NSColor)
} | AnyObject, NSCoding, NSCopying | OS X 10.10 | QuartzCore |
| To | class CIColor : NSObject, NSSecureCoding, NSCoding, NSCopying {
convenience init(CGColor c: CGColor)
class func colorWithCGColor(_ c: CGColor) -> Self
convenience init(red r: CGFloat, green g: CGFloat, blue b: CGFloat, alpha a: CGFloat)
class func colorWithRed(_ r: CGFloat, green g: CGFloat, blue b: CGFloat, alpha a: CGFloat) -> Self
convenience init(red r: CGFloat, green g: CGFloat, blue b: CGFloat)
class func colorWithRed(_ r: CGFloat, green g: CGFloat, blue b: CGFloat) -> Self
convenience init(string representation: String)
class func colorWithString(_ representation: String) -> Self
init(CGColor c: CGColor)
convenience init(red r: CGFloat, green g: CGFloat, blue b: CGFloat, alpha a: CGFloat)
var numberOfComponents: Int { get }
var components: UnsafePointer<CGFloat> { get }
var alpha: CGFloat { get }
var colorSpace: CGColorSpace { get }
var red: CGFloat { get }
var green: CGFloat { get }
var blue: CGFloat { get }
var stringRepresentation: String { get }
}
extension CIColor {
convenience init?(color color: NSColor)
} | AnyObject, NSCoding, NSCopying, NSSecureCoding | OS X 10.4 | CoreImage |
Modified CIColor.init(CGColor: CGColor)
| Declaration | Module | |
|---|---|---|
| From | init!(CGColor c: CGColor!) | QuartzCore |
| To | init(CGColor c: CGColor) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(red r: CGFloat, green g: CGFloat, blue b: CGFloat) -> CIColor | QuartzCore |
| To | convenience init(red r: CGFloat, green g: CGFloat, blue b: CGFloat) | CoreImage |
Modified CIColor.init(string: String)
| Declaration | Module | |
|---|---|---|
| From | init!(string representation: String!) -> CIColor | QuartzCore |
| To | convenience init(string representation: String) | CoreImage |
Modified CIContext
| Declaration | Introduction | Module | |
|---|---|---|---|
| From | class CIContext : NSObject {
init!(CGLContext ctx: CGLContextObj, pixelFormat pf: CGLPixelFormatObj, colorSpace cs: CGColorSpace!, options dict: [NSObject : AnyObject]!) -> CIContext
class func contextWithCGLContext(_ ctx: CGLContextObj, pixelFormat pf: CGLPixelFormatObj, colorSpace cs: CGColorSpace!, options dict: [NSObject : AnyObject]!) -> CIContext!
init!(CGLContext ctx: CGLContextObj, pixelFormat pf: CGLPixelFormatObj, options dict: [NSObject : AnyObject]!) -> CIContext
class func contextWithCGLContext(_ ctx: CGLContextObj, pixelFormat pf: CGLPixelFormatObj, options dict: [NSObject : AnyObject]!) -> CIContext!
init!(CGContext ctx: CGContext!, options dict: [NSObject : AnyObject]!) -> CIContext
class func contextWithCGContext(_ ctx: CGContext!, options dict: [NSObject : AnyObject]!) -> CIContext!
class func offlineGPUCount() -> UInt32
init!(forOfflineGPUAtIndex index: UInt32) -> CIContext
class func contextForOfflineGPUAtIndex(_ index: UInt32) -> CIContext!
init!(forOfflineGPUAtIndex index: UInt32, colorSpace colorSpace: CGColorSpace!, options options: [NSObject : AnyObject]!, sharedContext sharedContext: CGLContextObj) -> CIContext
class func contextForOfflineGPUAtIndex(_ index: UInt32, colorSpace colorSpace: CGColorSpace!, options options: [NSObject : AnyObject]!, sharedContext sharedContext: CGLContextObj) -> CIContext!
func drawImage(_ im: CIImage!, atPoint p: CGPoint, fromRect src: CGRect)
func drawImage(_ im: CIImage!, inRect dest: CGRect, fromRect src: CGRect)
func createCGImage(_ im: CIImage!, fromRect r: CGRect) -> CGImage!
func createCGImage(_ im: CIImage!, fromRect r: CGRect, format f: CIFormat, colorSpace cs: CGColorSpace!) -> CGImage!
func createCGLayerWithSize(_ size: CGSize, info d: CFDictionary!) -> CGLayer!
func render(_ im: CIImage!, toBitmap data: UnsafeMutablePointer<Void>, rowBytes rb: Int, bounds r: CGRect, format f: CIFormat, colorSpace cs: CGColorSpace!)
func render(_ im: CIImage!, toIOSurface surface: IOSurface!, bounds r: CGRect, colorSpace cs: CGColorSpace!)
func reclaimResources()
func clearCaches()
} | OS X 10.10 | QuartzCore |
| To | class CIContext : NSObject {
init(CGLContext cglctx: CGLContextObj, pixelFormat pixelFormat: CGLPixelFormatObj, colorSpace colorSpace: CGColorSpace?, options options: [String : AnyObject]?)
class func contextWithCGLContext(_ cglctx: CGLContextObj, pixelFormat pixelFormat: CGLPixelFormatObj, colorSpace colorSpace: CGColorSpace?, options options: [String : AnyObject]?) -> CIContext
init(CGLContext cglctx: CGLContextObj, pixelFormat pixelFormat: CGLPixelFormatObj, options options: [String : AnyObject]?)
class func contextWithCGLContext(_ cglctx: CGLContextObj, pixelFormat pixelFormat: CGLPixelFormatObj, options options: [String : AnyObject]?) -> CIContext
init(CGContext cgctx: CGContext, options options: [String : AnyObject]?)
class func contextWithCGContext(_ cgctx: CGContext, options options: [String : AnyObject]?) -> CIContext
init(options options: [String : AnyObject]?)
class func contextWithOptions(_ options: [String : AnyObject]?) -> CIContext
init(MTLDevice device: MTLDevice)
class func contextWithMTLDevice(_ device: MTLDevice) -> CIContext
init(MTLDevice device: MTLDevice, options options: [String : AnyObject]?)
class func contextWithMTLDevice(_ device: MTLDevice, options options: [String : AnyObject]?) -> CIContext
var workingColorSpace: CGColorSpace { get }
func drawImage(_ image: CIImage, atPoint atPoint: CGPoint, fromRect fromRect: CGRect)
func drawImage(_ image: CIImage, inRect inRect: CGRect, fromRect fromRect: CGRect)
func createCGImage(_ image: CIImage, fromRect fromRect: CGRect) -> CGImage
func createCGImage(_ image: CIImage, fromRect fromRect: CGRect, format format: CIFormat, colorSpace colorSpace: CGColorSpace?) -> CGImage
func createCGLayerWithSize(_ size: CGSize, info info: CFDictionary?) -> CGLayer
func render(_ image: CIImage, toBitmap data: UnsafeMutablePointer<Void>, rowBytes rowBytes: Int, bounds bounds: CGRect, format format: CIFormat, colorSpace colorSpace: CGColorSpace?)
func render(_ image: CIImage, toIOSurface surface: IOSurface, bounds bounds: CGRect, colorSpace colorSpace: CGColorSpace?)
func render(_ image: CIImage, toCVPixelBuffer buffer: CVPixelBuffer)
func render(_ image: CIImage, toCVPixelBuffer buffer: CVPixelBuffer, bounds bounds: CGRect, colorSpace colorSpace: CGColorSpace?)
func render(_ image: CIImage, toMTLTexture texture: MTLTexture, commandBuffer commandBuffer: MTLCommandBuffer?, bounds bounds: CGRect, colorSpace colorSpace: CGColorSpace)
func reclaimResources()
func clearCaches()
func inputImageMaximumSize() -> CGSize
func outputImageMaximumSize() -> CGSize
}
extension CIContext {
class func offlineGPUCount() -> UInt32
init(forOfflineGPUAtIndex index: UInt32)
class func contextForOfflineGPUAtIndex(_ index: UInt32) -> CIContext
init(forOfflineGPUAtIndex index: UInt32, colorSpace colorSpace: CGColorSpace?, options options: [String : AnyObject]?, sharedContext sharedContext: CGLContextObj)
class func contextForOfflineGPUAtIndex(_ index: UInt32, colorSpace colorSpace: CGColorSpace?, options options: [String : AnyObject]?, sharedContext sharedContext: CGLContextObj) -> CIContext
} | OS X 10.4 | CoreImage |
Modified CIContext.clearCaches()
| Introduction | Module | |
|---|---|---|
| From | OS X 10.10 | QuartzCore |
| To | OS X 10.4 | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func createCGImage(_ im: CIImage!, fromRect r: CGRect) -> CGImage! | QuartzCore |
| To | func createCGImage(_ image: CIImage, fromRect fromRect: CGRect) -> CGImage | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func createCGImage(_ im: CIImage!, fromRect r: CGRect, format f: CIFormat, colorSpace cs: CGColorSpace!) -> CGImage! | QuartzCore |
| To | func createCGImage(_ image: CIImage, fromRect fromRect: CGRect, format format: CIFormat, colorSpace colorSpace: CGColorSpace?) -> CGImage | CoreImage |
| Declaration | Introduction | Deprecation | Module | |
|---|---|---|---|---|
| From | func createCGLayerWithSize(_ size: CGSize, info d: CFDictionary!) -> CGLayer! | OS X 10.10 | -- | QuartzCore |
| To | func createCGLayerWithSize(_ size: CGSize, info info: CFDictionary?) -> CGLayer | OS X 10.4 | OS X 10.11 | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func drawImage(_ im: CIImage!, inRect dest: CGRect, fromRect src: CGRect) | QuartzCore |
| To | func drawImage(_ image: CIImage, inRect inRect: CGRect, fromRect fromRect: CGRect) | CoreImage |
| Declaration | Introduction | Module | |
|---|---|---|---|
| From | init!(CGContext ctx: CGContext!, options dict: [NSObject : AnyObject]!) -> CIContext | OS X 10.10 | QuartzCore |
| To | init(CGContext cgctx: CGContext, options options: [String : AnyObject]?) | OS X 10.4 | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(CGLContext ctx: CGLContextObj, pixelFormat pf: CGLPixelFormatObj, colorSpace cs: CGColorSpace!, options dict: [NSObject : AnyObject]!) -> CIContext | QuartzCore |
| To | init(CGLContext cglctx: CGLContextObj, pixelFormat pixelFormat: CGLPixelFormatObj, colorSpace colorSpace: CGColorSpace?, options options: [String : AnyObject]?) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(forOfflineGPUAtIndex index: UInt32) -> CIContext | QuartzCore |
| To | init(forOfflineGPUAtIndex index: UInt32) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(forOfflineGPUAtIndex index: UInt32, colorSpace colorSpace: CGColorSpace!, options options: [NSObject : AnyObject]!, sharedContext sharedContext: CGLContextObj) -> CIContext | QuartzCore |
| To | init(forOfflineGPUAtIndex index: UInt32, colorSpace colorSpace: CGColorSpace?, options options: [String : AnyObject]?, sharedContext sharedContext: CGLContextObj) | CoreImage |
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIContext.reclaimResources()
| Introduction | Module | |
|---|---|---|
| From | OS X 10.10 | QuartzCore |
| To | OS X 10.4 | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func render(_ im: CIImage!, toBitmap data: UnsafeMutablePointer<Void>, rowBytes rb: Int, bounds r: CGRect, format f: CIFormat, colorSpace cs: CGColorSpace!) | QuartzCore |
| To | func render(_ image: CIImage, toBitmap data: UnsafeMutablePointer<Void>, rowBytes rowBytes: Int, bounds bounds: CGRect, format format: CIFormat, colorSpace colorSpace: CGColorSpace?) | CoreImage |
Modified CIContext.render(_: CIImage, toIOSurface: IOSurface, bounds: CGRect, colorSpace: CGColorSpace?)
| Declaration | Module | |
|---|---|---|
| From | func render(_ im: CIImage!, toIOSurface surface: IOSurface!, bounds r: CGRect, colorSpace cs: CGColorSpace!) | QuartzCore |
| To | func render(_ image: CIImage, toIOSurface surface: IOSurface, bounds bounds: CGRect, colorSpace colorSpace: CGColorSpace?) | CoreImage |
Modified CIDetector
| Declaration | Introduction | Module | |
|---|---|---|---|
| From | class CIDetector : NSObject {
init!(ofType type: String!, context context: CIContext!, options options: [NSObject : AnyObject]!) -> CIDetector
class func detectorOfType(_ type: String!, context context: CIContext!, options options: [NSObject : AnyObject]!) -> CIDetector!
func featuresInImage(_ image: CIImage!) -> [AnyObject]!
func featuresInImage(_ image: CIImage!, options options: [NSObject : AnyObject]!) -> [AnyObject]!
} | OS X 10.10 | QuartzCore |
| To | class CIDetector : NSObject {
init(ofType type: String, context context: CIContext?, options options: [String : AnyObject]?)
class func detectorOfType(_ type: String, context context: CIContext?, options options: [String : AnyObject]?) -> CIDetector
func featuresInImage(_ image: CIImage) -> [CIFeature]
func featuresInImage(_ image: CIImage, options options: [String : AnyObject]?) -> [CIFeature]
} | OS X 10.7 | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func featuresInImage(_ image: CIImage!) -> [AnyObject]! | QuartzCore |
| To | func featuresInImage(_ image: CIImage) -> [CIFeature] | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func featuresInImage(_ image: CIImage!, options options: [NSObject : AnyObject]!) -> [AnyObject]! | QuartzCore |
| To | func featuresInImage(_ image: CIImage, options options: [String : AnyObject]?) -> [CIFeature] | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(ofType type: String!, context context: CIContext!, options options: [NSObject : AnyObject]!) -> CIDetector | QuartzCore |
| To | init(ofType type: String, context context: CIContext?, options options: [String : AnyObject]?) | CoreImage |
Modified CIFaceFeature
| Introduction | Module | |
|---|---|---|
| From | OS X 10.10 | QuartzCore |
| To | OS X 10.7 | CoreImage |
Modified CIFaceFeature.bounds
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIFaceFeature.faceAngle
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIFaceFeature.hasFaceAngle
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIFaceFeature.hasLeftEyePosition
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIFaceFeature.hasMouthPosition
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIFaceFeature.hasRightEyePosition
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIFaceFeature.hasSmile
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIFaceFeature.hasTrackingFrameCount
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIFaceFeature.hasTrackingID
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIFaceFeature.leftEyeClosed
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIFaceFeature.leftEyePosition
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIFaceFeature.mouthPosition
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIFaceFeature.rightEyeClosed
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIFaceFeature.rightEyePosition
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIFaceFeature.trackingFrameCount
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIFaceFeature.trackingID
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIFeature
| Declaration | Introduction | Module | |
|---|---|---|---|
| From | class CIFeature : NSObject {
var type: String! { get }
var bounds: CGRect { get }
} | OS X 10.10 | QuartzCore |
| To | class CIFeature : NSObject {
var type: String { get }
var bounds: CGRect { get }
} | OS X 10.7 | CoreImage |
Modified CIFeature.bounds
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIFeature.type
| Declaration | Module | |
|---|---|---|
| From | var type: String! { get } | QuartzCore |
| To | var type: String { get } | CoreImage |
Modified CIFilter
| Declaration | Protocols | Introduction | Module | |
|---|---|---|---|---|
| From | class CIFilter : NSObject, NSCoding, NSCopying {
var outputImage: CIImage! { get }
func inputKeys() -> [AnyObject]!
func outputKeys() -> [AnyObject]!
func setDefaults()
func attributes() -> [NSObject : AnyObject]!
func apply(_ k: CIKernel!, arguments args: [AnyObject]!, options dict: [NSObject : AnyObject]!) -> CIImage!
}
extension CIFilter {
func viewForUIConfiguration(_ inUIConfiguration: [NSObject : AnyObject]!, excludedKeys inKeys: [AnyObject]!) -> IKFilterUIView!
}
extension CIFilter {
var name: String!
var enabled: Bool
}
extension CIFilter {
func apply(_ k: CIKernel!, args args: [AnyObject]!, options options: (NSCopying, AnyObject)...) -> CIImage
convenience init(name name: String!, elements elements: (NSCopying, AnyObject)...)
}
extension CIFilter {
init!(name name: String!) -> CIFilter
class func filterWithName(_ name: String!) -> CIFilter!
init!(name name: String!, withInputParameters params: [NSObject : AnyObject]!) -> CIFilter
class func filterWithName(_ name: String!, withInputParameters params: [NSObject : AnyObject]!) -> CIFilter!
class func filterNamesInCategory(_ category: String!) -> [AnyObject]!
class func filterNamesInCategories(_ categories: [AnyObject]!) -> [AnyObject]!
class func registerFilterName(_ name: String!, constructor anObject: CIFilterConstructor!, classAttributes attributes: [NSObject : AnyObject]!)
class func localizedNameForFilterName(_ filterName: String!) -> String!
class func localizedNameForCategory(_ category: String!) -> String!
class func localizedDescriptionForFilterName(_ filterName: String!) -> String!
class func localizedReferenceDocumentationForFilterName(_ filterName: String!) -> NSURL!
}
extension CIFilter {
class func serializedXMPFromFilters(_ filters: [AnyObject]!, inputImageExtent extent: CGRect) -> NSData!
class func filterArrayFromSerializedXMP(_ xmpData: NSData!, inputImageExtent extent: CGRect, error outError: NSErrorPointer) -> [AnyObject]!
}
extension CIFilter {
init!(imageURL url: NSURL!, options options: [NSObject : AnyObject]!) -> CIFilter
class func filterWithImageURL(_ url: NSURL!, options options: [NSObject : AnyObject]!) -> CIFilter!
init!(imageData data: NSData!, options options: [NSObject : AnyObject]!) -> CIFilter
class func filterWithImageData(_ data: NSData!, options options: [NSObject : AnyObject]!) -> CIFilter!
}
extension CIFilter {
func apply(_ k: CIKernel!, args args: [AnyObject]!, options options: (NSCopying, AnyObject)...) -> CIImage
convenience init(name name: String!, elements elements: (NSCopying, AnyObject)...)
} | AnyObject, NSCoding, NSCopying | OS X 10.10 | QuartzCore |
| To | class CIFilter : NSObject, NSSecureCoding, NSCoding, NSCopying {
var outputImage: CIImage? { get }
var name: String
var enabled: Bool
var inputKeys: [String] { get }
var outputKeys: [String] { get }
func setDefaults()
var attributes: [String : AnyObject] { get }
func apply(_ k: CIKernel, arguments args: [AnyObject]?, options dict: [String : AnyObject]?) -> CIImage?
}
extension CIFilter {
init?(name name: String)
class func filterWithName(_ name: String) -> CIFilter?
init?(name name: String, withInputParameters params: [String : AnyObject]?)
class func filterWithName(_ name: String, withInputParameters params: [String : AnyObject]?) -> CIFilter?
class func filterNamesInCategory(_ category: String?) -> [String]
class func filterNamesInCategories(_ categories: [String]?) -> [String]
class func registerFilterName(_ name: String, constructor anObject: CIFilterConstructor, classAttributes attributes: [String : AnyObject])
class func localizedNameForFilterName(_ filterName: String) -> String?
class func localizedNameForCategory(_ category: String) -> String
class func localizedDescriptionForFilterName(_ filterName: String) -> String?
class func localizedReferenceDocumentationForFilterName(_ filterName: String) -> NSURL?
}
extension CIFilter {
class func serializedXMPFromFilters(_ filters: [CIFilter], inputImageExtent extent: CGRect) -> NSData
class func filterArrayFromSerializedXMP(_ xmpData: NSData, inputImageExtent extent: CGRect, error outError: NSErrorPointer) -> [CIFilter]
}
extension CIFilter {
init!(imageURL url: NSURL!, options options: [NSObject : AnyObject]!)
class func filterWithImageURL(_ url: NSURL!, options options: [NSObject : AnyObject]!) -> CIFilter!
init!(imageData data: NSData!, options options: [NSObject : AnyObject]!)
class func filterWithImageData(_ data: NSData!, options options: [NSObject : AnyObject]!) -> CIFilter!
}
extension CIFilter {
func viewForUIConfiguration(_ inUIConfiguration: [NSObject : AnyObject]!, excludedKeys inKeys: [AnyObject]!) -> IKFilterUIView!
} | AnyObject, NSCoding, NSCopying, NSSecureCoding | OS X 10.4 | CoreImage |
Modified CIFilter.apply(_: CIKernel, arguments: [AnyObject]?, options: [String : AnyObject]?) -> CIImage?
| Declaration | Introduction | Module | |
|---|---|---|---|
| From | func apply(_ k: CIKernel!, arguments args: [AnyObject]!, options dict: [NSObject : AnyObject]!) -> CIImage! | OS X 10.10 | QuartzCore |
| To | func apply(_ k: CIKernel, arguments args: [AnyObject]?, options dict: [String : AnyObject]?) -> CIImage? | OS X 10.4 | CoreImage |
Modified CIFilter.enabled
| Introduction | Module | |
|---|---|---|
| From | OS X 10.10 | QuartzCore |
| To | OS X 10.5 | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | class func filterArrayFromSerializedXMP(_ xmpData: NSData!, inputImageExtent extent: CGRect, error outError: NSErrorPointer) -> [AnyObject]! | QuartzCore |
| To | class func filterArrayFromSerializedXMP(_ xmpData: NSData, inputImageExtent extent: CGRect, error outError: NSErrorPointer) -> [CIFilter] | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | class func filterNamesInCategories(_ categories: [AnyObject]!) -> [AnyObject]! | QuartzCore |
| To | class func filterNamesInCategories(_ categories: [String]?) -> [String] | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | class func filterNamesInCategory(_ category: String!) -> [AnyObject]! | QuartzCore |
| To | class func filterNamesInCategory(_ category: String?) -> [String] | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(imageData data: NSData!, options options: [NSObject : AnyObject]!) -> CIFilter | QuartzCore |
| To | init!(imageData data: NSData!, options options: [NSObject : AnyObject]!) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(imageURL url: NSURL!, options options: [NSObject : AnyObject]!) -> CIFilter | QuartzCore |
| To | init!(imageURL url: NSURL!, options options: [NSObject : AnyObject]!) | CoreImage |
Modified CIFilter.init(name: String)
| Declaration | Module | |
|---|---|---|
| From | init!(name name: String!) -> CIFilter | QuartzCore |
| To | init?(name name: String) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(name name: String!, withInputParameters params: [NSObject : AnyObject]!) -> CIFilter | QuartzCore |
| To | init?(name name: String, withInputParameters params: [String : AnyObject]?) | CoreImage |
| Declaration | Introduction | Module | |
|---|---|---|---|
| From | class func localizedDescriptionForFilterName(_ filterName: String!) -> String! | OS X 10.10 | QuartzCore |
| To | class func localizedDescriptionForFilterName(_ filterName: String) -> String? | OS X 10.4 | CoreImage |
| Declaration | Introduction | Module | |
|---|---|---|---|
| From | class func localizedNameForCategory(_ category: String!) -> String! | OS X 10.10 | QuartzCore |
| To | class func localizedNameForCategory(_ category: String) -> String | OS X 10.4 | CoreImage |
| Declaration | Introduction | Module | |
|---|---|---|---|
| From | class func localizedNameForFilterName(_ filterName: String!) -> String! | OS X 10.10 | QuartzCore |
| To | class func localizedNameForFilterName(_ filterName: String) -> String? | OS X 10.4 | CoreImage |
| Declaration | Introduction | Module | |
|---|---|---|---|
| From | class func localizedReferenceDocumentationForFilterName(_ filterName: String!) -> NSURL! | OS X 10.10 | QuartzCore |
| To | class func localizedReferenceDocumentationForFilterName(_ filterName: String) -> NSURL? | OS X 10.4 | CoreImage |
Modified CIFilter.name
| Declaration | Introduction | Module | |
|---|---|---|---|
| From | var name: String! | OS X 10.10 | QuartzCore |
| To | var name: String | OS X 10.5 | CoreImage |
Modified CIFilter.outputImage
| Declaration | Module | |
|---|---|---|
| From | var outputImage: CIImage! { get } | QuartzCore |
| To | var outputImage: CIImage? { get } | CoreImage |
| Declaration | Introduction | Module | |
|---|---|---|---|
| From | class func registerFilterName(_ name: String!, constructor anObject: CIFilterConstructor!, classAttributes attributes: [NSObject : AnyObject]!) | OS X 10.10 | QuartzCore |
| To | class func registerFilterName(_ name: String, constructor anObject: CIFilterConstructor, classAttributes attributes: [String : AnyObject]) | OS X 10.4 | CoreImage |
Modified CIFilter.serializedXMPFromFilters(_: [CIFilter], inputImageExtent: CGRect) -> NSData [class]
| Declaration | Module | |
|---|---|---|
| From | class func serializedXMPFromFilters(_ filters: [AnyObject]!, inputImageExtent extent: CGRect) -> NSData! | QuartzCore |
| To | class func serializedXMPFromFilters(_ filters: [CIFilter], inputImageExtent extent: CGRect) -> NSData | CoreImage |
Modified CIFilter.setDefaults()
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIFilterConstructor
| Declaration | Module | |
|---|---|---|
| From | protocol CIFilterConstructor {
func filterWithName(_ name: String!) -> CIFilter!
} | QuartzCore |
| To | protocol CIFilterConstructor {
func filterWithName(_ name: String) -> CIFilter?
} | CoreImage |
| Declaration | Introduction | Module | |
|---|---|---|---|
| From | func filterWithName(_ name: String!) -> CIFilter! | OS X 10.10 | QuartzCore |
| To | func filterWithName(_ name: String) -> CIFilter? | OS X 10.4 | CoreImage |
Modified CIFilterGenerator
| Declaration | Protocols | Introduction | Module | |
|---|---|---|---|---|
| From | class CIFilterGenerator : NSObject, NSCoding, NSCopying, CIFilterConstructor {
init!() -> CIFilterGenerator
class func filterGenerator() -> CIFilterGenerator!
init!(contentsOfURL aURL: NSURL!) -> CIFilterGenerator
class func filterGeneratorWithContentsOfURL(_ aURL: NSURL!) -> CIFilterGenerator!
init!(contentsOfURL aURL: NSURL!)
func connectObject(_ sourceObject: AnyObject!, withKey sourceKey: String!, toObject targetObject: AnyObject!, withKey targetKey: String!)
func disconnectObject(_ sourceObject: AnyObject!, withKey key: String!, toObject targetObject: AnyObject!, withKey targetKey: String!)
func exportKey(_ key: String!, fromObject targetObject: AnyObject!, withName exportedKeyName: String!)
func removeExportedKey(_ exportedKeyName: String!)
func exportedKeys() -> [NSObject : AnyObject]!
func setAttributes(_ attributes: [NSObject : AnyObject]!, forExportedKey key: String!)
func classAttributes() -> [NSObject : AnyObject]!
func setClassAttributes(_ attributes: [NSObject : AnyObject]!)
func filter() -> CIFilter!
func registerFilterName(_ name: String!)
func writeToURL(_ aURL: NSURL!, atomically flag: Bool) -> Bool
} | AnyObject, CIFilterConstructor, NSCoding, NSCopying | OS X 10.10 | QuartzCore |
| To | class CIFilterGenerator : NSObject, NSSecureCoding, NSCoding, NSCopying, CIFilterConstructor {
init()
class func filterGenerator() -> CIFilterGenerator
init?(contentsOfURL aURL: NSURL)
class func filterGeneratorWithContentsOfURL(_ aURL: NSURL) -> CIFilterGenerator?
init?(contentsOfURL aURL: NSURL)
func connectObject(_ sourceObject: AnyObject, withKey sourceKey: String?, toObject targetObject: AnyObject, withKey targetKey: String)
func disconnectObject(_ sourceObject: AnyObject, withKey key: String, toObject targetObject: AnyObject, withKey targetKey: String)
func exportKey(_ key: String, fromObject targetObject: AnyObject, withName exportedKeyName: String?)
func removeExportedKey(_ exportedKeyName: String)
var exportedKeys: [NSObject : AnyObject] { get }
func setAttributes(_ attributes: [NSObject : AnyObject], forExportedKey key: String)
var classAttributes: [NSObject : AnyObject]
func filter() -> CIFilter
func registerFilterName(_ name: String)
func writeToURL(_ aURL: NSURL, atomically flag: Bool) -> Bool
} | AnyObject, CIFilterConstructor, NSCoding, NSCopying, NSSecureCoding | OS X 10.5 | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func connectObject(_ sourceObject: AnyObject!, withKey sourceKey: String!, toObject targetObject: AnyObject!, withKey targetKey: String!) | QuartzCore |
| To | func connectObject(_ sourceObject: AnyObject, withKey sourceKey: String?, toObject targetObject: AnyObject, withKey targetKey: String) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func disconnectObject(_ sourceObject: AnyObject!, withKey key: String!, toObject targetObject: AnyObject!, withKey targetKey: String!) | QuartzCore |
| To | func disconnectObject(_ sourceObject: AnyObject, withKey key: String, toObject targetObject: AnyObject, withKey targetKey: String) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func exportKey(_ key: String!, fromObject targetObject: AnyObject!, withName exportedKeyName: String!) | QuartzCore |
| To | func exportKey(_ key: String, fromObject targetObject: AnyObject, withName exportedKeyName: String?) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func filter() -> CIFilter! | QuartzCore |
| To | func filter() -> CIFilter | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(contentsOfURL aURL: NSURL!) | QuartzCore |
| To | init?(contentsOfURL aURL: NSURL) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func registerFilterName(_ name: String!) | QuartzCore |
| To | func registerFilterName(_ name: String) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func removeExportedKey(_ exportedKeyName: String!) | QuartzCore |
| To | func removeExportedKey(_ exportedKeyName: String) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func setAttributes(_ attributes: [NSObject : AnyObject]!, forExportedKey key: String!) | QuartzCore |
| To | func setAttributes(_ attributes: [NSObject : AnyObject], forExportedKey key: String) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func writeToURL(_ aURL: NSURL!, atomically flag: Bool) -> Bool | QuartzCore |
| To | func writeToURL(_ aURL: NSURL, atomically flag: Bool) -> Bool | CoreImage |
Modified CIFilterShape
| Declaration | Introduction | Module | |
|---|---|---|---|
| From | class CIFilterShape : NSObject, NSCopying {
class func shapeWithRect(_ r: CGRect) -> AnyObject!
init!(rect r: CGRect)
func transformBy(_ m: CGAffineTransform, interior flag: Bool) -> CIFilterShape!
func insetByX(_ dx: Int32, y dy: Int32) -> CIFilterShape!
func unionWith(_ s2: CIFilterShape!) -> CIFilterShape!
func unionWithRect(_ r: CGRect) -> CIFilterShape!
func intersectWith(_ s2: CIFilterShape!) -> CIFilterShape!
func intersectWithRect(_ r: CGRect) -> CIFilterShape!
} | OS X 10.10 | QuartzCore |
| To | class CIFilterShape : NSObject, NSCopying {
convenience init(rect r: CGRect)
class func shapeWithRect(_ r: CGRect) -> Self
init(rect r: CGRect)
func transformBy(_ m: CGAffineTransform, interior flag: Bool) -> CIFilterShape
func insetByX(_ dx: Int32, y dy: Int32) -> CIFilterShape
func unionWith(_ s2: CIFilterShape) -> CIFilterShape
func unionWithRect(_ r: CGRect) -> CIFilterShape
func intersectWith(_ s2: CIFilterShape) -> CIFilterShape
func intersectWithRect(_ r: CGRect) -> CIFilterShape
var extent: CGRect { get }
} | OS X 10.4 | CoreImage |
Modified CIFilterShape.init(rect: CGRect)
| Declaration | Module | |
|---|---|---|
| From | init!(rect r: CGRect) | QuartzCore |
| To | init(rect r: CGRect) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func insetByX(_ dx: Int32, y dy: Int32) -> CIFilterShape! | QuartzCore |
| To | func insetByX(_ dx: Int32, y dy: Int32) -> CIFilterShape | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func intersectWith(_ s2: CIFilterShape!) -> CIFilterShape! | QuartzCore |
| To | func intersectWith(_ s2: CIFilterShape) -> CIFilterShape | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func intersectWithRect(_ r: CGRect) -> CIFilterShape! | QuartzCore |
| To | func intersectWithRect(_ r: CGRect) -> CIFilterShape | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func transformBy(_ m: CGAffineTransform, interior flag: Bool) -> CIFilterShape! | QuartzCore |
| To | func transformBy(_ m: CGAffineTransform, interior flag: Bool) -> CIFilterShape | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func unionWith(_ s2: CIFilterShape!) -> CIFilterShape! | QuartzCore |
| To | func unionWith(_ s2: CIFilterShape) -> CIFilterShape | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func unionWithRect(_ r: CGRect) -> CIFilterShape! | QuartzCore |
| To | func unionWithRect(_ r: CGRect) -> CIFilterShape | CoreImage |
Modified CIImage
| Declaration | Protocols | Introduction | Module | |
|---|---|---|---|---|
| From | class CIImage : NSObject, NSCoding, NSCopying {
init!(CGImage image: CGImage!) -> CIImage
class func imageWithCGImage(_ image: CGImage!) -> CIImage!
init!(CGImage image: CGImage!, options d: [NSObject : AnyObject]!) -> CIImage
class func imageWithCGImage(_ image: CGImage!, options d: [NSObject : AnyObject]!) -> CIImage!
init!(CGLayer layer: CGLayer!) -> CIImage
class func imageWithCGLayer(_ layer: CGLayer!) -> CIImage!
init!(CGLayer layer: CGLayer!, options d: [NSObject : AnyObject]!) -> CIImage
class func imageWithCGLayer(_ layer: CGLayer!, options d: [NSObject : AnyObject]!) -> CIImage!
init!(bitmapData d: NSData!, bytesPerRow bpr: Int, size size: CGSize, format f: CIFormat, colorSpace cs: CGColorSpace!) -> CIImage
class func imageWithBitmapData(_ d: NSData!, bytesPerRow bpr: Int, size size: CGSize, format f: CIFormat, colorSpace cs: CGColorSpace!) -> CIImage!
init!(texture name: UInt32, size size: CGSize, flipped flag: Bool, colorSpace cs: CGColorSpace!) -> CIImage
class func imageWithTexture(_ name: UInt32, size size: CGSize, flipped flag: Bool, colorSpace cs: CGColorSpace!) -> CIImage!
init!(texture name: UInt32, size size: CGSize, flipped flag: Bool, options options: [NSObject : AnyObject]!) -> CIImage
class func imageWithTexture(_ name: UInt32, size size: CGSize, flipped flag: Bool, options options: [NSObject : AnyObject]!) -> CIImage!
init!(contentsOfURL url: NSURL!) -> CIImage
class func imageWithContentsOfURL(_ url: NSURL!) -> CIImage!
init!(contentsOfURL url: NSURL!, options d: [NSObject : AnyObject]!) -> CIImage
class func imageWithContentsOfURL(_ url: NSURL!, options d: [NSObject : AnyObject]!) -> CIImage!
init!(data data: NSData!) -> CIImage
class func imageWithData(_ data: NSData!) -> CIImage!
init!(data data: NSData!, options d: [NSObject : AnyObject]!) -> CIImage
class func imageWithData(_ data: NSData!, options d: [NSObject : AnyObject]!) -> CIImage!
init!(CVImageBuffer imageBuffer: CVImageBuffer!) -> CIImage
class func imageWithCVImageBuffer(_ imageBuffer: CVImageBuffer!) -> CIImage!
init!(CVImageBuffer imageBuffer: CVImageBuffer!, options dict: [NSObject : AnyObject]!) -> CIImage
class func imageWithCVImageBuffer(_ imageBuffer: CVImageBuffer!, options dict: [NSObject : AnyObject]!) -> CIImage!
init!(CVPixelBuffer buffer: CVPixelBuffer!) -> CIImage
class func imageWithCVPixelBuffer(_ buffer: CVPixelBuffer!) -> CIImage!
init!(CVPixelBuffer buffer: CVPixelBuffer!, options dict: [NSObject : AnyObject]!) -> CIImage
class func imageWithCVPixelBuffer(_ buffer: CVPixelBuffer!, options dict: [NSObject : AnyObject]!) -> CIImage!
init!(IOSurface surface: IOSurface!) -> CIImage
class func imageWithIOSurface(_ surface: IOSurface!) -> CIImage!
init!(IOSurface surface: IOSurface!, options d: [NSObject : AnyObject]!) -> CIImage
class func imageWithIOSurface(_ surface: IOSurface!, options d: [NSObject : AnyObject]!) -> CIImage!
init!(color color: CIColor!) -> CIImage
class func imageWithColor(_ color: CIColor!) -> CIImage!
class func emptyImage() -> CIImage!
init!(CGImage image: CGImage!)
init!(CGImage image: CGImage!, options d: [NSObject : AnyObject]!)
init!(CGLayer layer: CGLayer!)
init!(CGLayer layer: CGLayer!, options d: [NSObject : AnyObject]!)
init!(data data: NSData!)
init!(data data: NSData!, options d: [NSObject : AnyObject]!)
init!(bitmapData d: NSData!, bytesPerRow bpr: Int, size size: CGSize, format f: CIFormat, colorSpace c: CGColorSpace!)
init!(texture name: UInt32, size size: CGSize, flipped flag: Bool, colorSpace cs: CGColorSpace!)
init!(texture name: UInt32, size size: CGSize, flipped flag: Bool, options options: [NSObject : AnyObject]!)
init!(contentsOfURL url: NSURL!)
init!(contentsOfURL url: NSURL!, options d: [NSObject : AnyObject]!)
init!(IOSurface surface: IOSurface!)
init!(IOSurface surface: IOSurface!, options d: [NSObject : AnyObject]!)
init!(IOSurface surface: IOSurface!, plane plane: Int, format format: CIFormat, options d: [NSObject : AnyObject]!)
init!(CVImageBuffer imageBuffer: CVImageBuffer!)
init!(CVImageBuffer imageBuffer: CVImageBuffer!, options dict: [NSObject : AnyObject]!)
init!(CVPixelBuffer buffer: CVPixelBuffer!)
init!(CVPixelBuffer buffer: CVPixelBuffer!, options dict: [NSObject : AnyObject]!)
init!(color color: CIColor!)
func imageByApplyingTransform(_ matrix: CGAffineTransform) -> CIImage!
func imageByApplyingOrientation(_ orientation: Int32) -> CIImage!
func imageTransformForOrientation(_ orientation: Int32) -> CGAffineTransform
func imageByCompositingOverImage(_ dest: CIImage!) -> CIImage!
func imageByCroppingToRect(_ r: CGRect) -> CIImage!
func imageByClampingToExtent() -> CIImage!
func extent() -> CGRect
func imageByApplyingFilter(_ filterName: String!, withInputParameters params: [NSObject : AnyObject]!) -> CIImage!
func properties() -> [NSObject : AnyObject]!
func definition() -> CIFilterShape!
func url() -> NSURL!
func colorSpace() -> Unmanaged<CGColorSpace>!
}
extension CIImage {
init?(bitmapImageRep bitmapImageRep: NSBitmapImageRep)
func drawInRect(_ rect: NSRect, fromRect fromRect: NSRect, operation op: NSCompositingOperation, fraction delta: CGFloat)
func drawAtPoint(_ point: NSPoint, fromRect fromRect: NSRect, operation op: NSCompositingOperation, fraction delta: CGFloat)
}
extension CIImage {
func autoAdjustmentFilters() -> [AnyObject]!
func autoAdjustmentFiltersWithOptions(_ dict: [NSObject : AnyObject]!) -> [AnyObject]!
}
extension CIImage {
init!(imageProvider p: AnyObject!, size width: Int, _ height: Int, format f: CIFormat, colorSpace cs: CGColorSpace!, options dict: [NSObject : AnyObject]!) -> CIImage
class func imageWithImageProvider(_ p: AnyObject!, size width: Int, _ height: Int, format f: CIFormat, colorSpace cs: CGColorSpace!, options dict: [NSObject : AnyObject]!) -> CIImage!
init!(imageProvider p: AnyObject!, size width: Int, _ height: Int, format f: CIFormat, colorSpace cs: CGColorSpace!, options dict: [NSObject : AnyObject]!)
} | AnyObject, NSCoding, NSCopying | OS X 10.10 | QuartzCore |
| To | class CIImage : NSObject, NSSecureCoding, NSCoding, NSCopying {
init(CGImage image: CGImage)
class func imageWithCGImage(_ image: CGImage) -> CIImage
init(CGImage image: CGImage, options options: [String : AnyObject]?)
class func imageWithCGImage(_ image: CGImage, options options: [String : AnyObject]?) -> CIImage
init(CGLayer layer: CGLayer)
class func imageWithCGLayer(_ layer: CGLayer) -> CIImage
init(CGLayer layer: CGLayer, options options: [String : AnyObject]?)
class func imageWithCGLayer(_ layer: CGLayer, options options: [String : AnyObject]?) -> CIImage
init(bitmapData data: NSData, bytesPerRow bytesPerRow: Int, size size: CGSize, format format: CIFormat, colorSpace colorSpace: CGColorSpace?)
class func imageWithBitmapData(_ data: NSData, bytesPerRow bytesPerRow: Int, size size: CGSize, format format: CIFormat, colorSpace colorSpace: CGColorSpace?) -> CIImage
init(texture name: UInt32, size size: CGSize, flipped flipped: Bool, colorSpace colorSpace: CGColorSpace?)
class func imageWithTexture(_ name: UInt32, size size: CGSize, flipped flipped: Bool, colorSpace colorSpace: CGColorSpace?) -> CIImage
init(texture name: UInt32, size size: CGSize, flipped flipped: Bool, options options: [String : AnyObject]?)
class func imageWithTexture(_ name: UInt32, size size: CGSize, flipped flipped: Bool, options options: [String : AnyObject]?) -> CIImage
init(MTLTexture texture: MTLTexture, options options: [String : AnyObject]?)
class func imageWithMTLTexture(_ texture: MTLTexture, options options: [String : AnyObject]?) -> CIImage
init?(contentsOfURL url: NSURL)
class func imageWithContentsOfURL(_ url: NSURL) -> CIImage?
init?(contentsOfURL url: NSURL, options options: [String : AnyObject]?)
class func imageWithContentsOfURL(_ url: NSURL, options options: [String : AnyObject]?) -> CIImage?
init?(data data: NSData)
class func imageWithData(_ data: NSData) -> CIImage?
init?(data data: NSData, options options: [String : AnyObject]?)
class func imageWithData(_ data: NSData, options options: [String : AnyObject]?) -> CIImage?
init(CVImageBuffer imageBuffer: CVImageBuffer)
class func imageWithCVImageBuffer(_ imageBuffer: CVImageBuffer) -> CIImage
init(CVImageBuffer imageBuffer: CVImageBuffer, options options: [String : AnyObject]?)
class func imageWithCVImageBuffer(_ imageBuffer: CVImageBuffer, options options: [String : AnyObject]?) -> CIImage
init(CVPixelBuffer pixelBuffer: CVPixelBuffer)
class func imageWithCVPixelBuffer(_ pixelBuffer: CVPixelBuffer) -> CIImage
init(CVPixelBuffer pixelBuffer: CVPixelBuffer, options options: [String : AnyObject]?)
class func imageWithCVPixelBuffer(_ pixelBuffer: CVPixelBuffer, options options: [String : AnyObject]?) -> CIImage
init(IOSurface surface: IOSurface)
class func imageWithIOSurface(_ surface: IOSurface) -> CIImage
init(IOSurface surface: IOSurface, options options: [String : AnyObject]?)
class func imageWithIOSurface(_ surface: IOSurface, options options: [String : AnyObject]?) -> CIImage
init(color color: CIColor)
class func imageWithColor(_ color: CIColor) -> CIImage
class func emptyImage() -> CIImage
init(CGImage image: CGImage)
init(CGImage image: CGImage, options options: [String : AnyObject]?)
init(CGLayer layer: CGLayer)
init(CGLayer layer: CGLayer, options options: [String : AnyObject]?)
init?(data data: NSData)
init?(data data: NSData, options options: [String : AnyObject]?)
init(bitmapData data: NSData, bytesPerRow bytesPerRow: Int, size size: CGSize, format format: CIFormat, colorSpace colorSpace: CGColorSpace?)
init(texture name: UInt32, size size: CGSize, flipped flipped: Bool, colorSpace colorSpace: CGColorSpace?)
init(texture name: UInt32, size size: CGSize, flipped flipped: Bool, options options: [String : AnyObject]?)
init(MTLTexture texture: MTLTexture, options options: [String : AnyObject]?)
init?(contentsOfURL url: NSURL)
init?(contentsOfURL url: NSURL, options options: [String : AnyObject]?)
init(IOSurface surface: IOSurface)
init(IOSurface surface: IOSurface, options options: [String : AnyObject]?)
init(IOSurface surface: IOSurface, plane plane: Int, format format: CIFormat, options options: [String : AnyObject]?)
init(CVImageBuffer imageBuffer: CVImageBuffer)
init(CVImageBuffer imageBuffer: CVImageBuffer, options options: [String : AnyObject]?)
init(CVPixelBuffer pixelBuffer: CVPixelBuffer)
init(CVPixelBuffer pixelBuffer: CVPixelBuffer, options options: [String : AnyObject]?)
init(color color: CIColor)
func imageByApplyingTransform(_ matrix: CGAffineTransform) -> CIImage
func imageByApplyingOrientation(_ orientation: Int32) -> CIImage
func imageTransformForOrientation(_ orientation: Int32) -> CGAffineTransform
func imageByCompositingOverImage(_ dest: CIImage) -> CIImage
func imageByCroppingToRect(_ rect: CGRect) -> CIImage
func imageByClampingToExtent() -> CIImage
func imageByApplyingFilter(_ filterName: String, withInputParameters params: [String : AnyObject]?) -> CIImage
var extent: CGRect { get }
var properties: [String : AnyObject] { get }
var definition: CIFilterShape { get }
var url: NSURL? { get }
var colorSpace: CGColorSpace? { get }
func regionOfInterestForImage(_ image: CIImage, inRect rect: CGRect) -> CGRect
}
extension CIImage {
init?(bitmapImageRep bitmapImageRep: NSBitmapImageRep)
func drawInRect(_ rect: NSRect, fromRect fromRect: NSRect, operation op: NSCompositingOperation, fraction delta: CGFloat)
func drawAtPoint(_ point: NSPoint, fromRect fromRect: NSRect, operation op: NSCompositingOperation, fraction delta: CGFloat)
}
extension CIImage {
func autoAdjustmentFiltersWithOptions(_ options: [String : AnyObject]?) -> [CIFilter]
}
extension CIImage {
init(imageProvider p: AnyObject, size width: Int, _ height: Int, format f: CIFormat, colorSpace cs: CGColorSpace?, options options: [String : AnyObject]?)
class func imageWithImageProvider(_ p: AnyObject, size width: Int, _ height: Int, format f: CIFormat, colorSpace cs: CGColorSpace?, options options: [String : AnyObject]?) -> CIImage
init(imageProvider p: AnyObject, size width: Int, _ height: Int, format f: CIFormat, colorSpace cs: CGColorSpace?, options options: [String : AnyObject]?)
} | AnyObject, NSCoding, NSCopying, NSSecureCoding | OS X 10.4 | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func autoAdjustmentFiltersWithOptions(_ dict: [NSObject : AnyObject]!) -> [AnyObject]! | QuartzCore |
| To | func autoAdjustmentFiltersWithOptions(_ options: [String : AnyObject]?) -> [CIFilter] | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | class func emptyImage() -> CIImage! | QuartzCore |
| To | class func emptyImage() -> CIImage | CoreImage |
Modified CIImage.imageByApplyingFilter(_: String, withInputParameters: [String : AnyObject]?) -> CIImage
| Declaration | Module | |
|---|---|---|
| From | func imageByApplyingFilter(_ filterName: String!, withInputParameters params: [NSObject : AnyObject]!) -> CIImage! | QuartzCore |
| To | func imageByApplyingFilter(_ filterName: String, withInputParameters params: [String : AnyObject]?) -> CIImage | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func imageByApplyingOrientation(_ orientation: Int32) -> CIImage! | QuartzCore |
| To | func imageByApplyingOrientation(_ orientation: Int32) -> CIImage | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func imageByApplyingTransform(_ matrix: CGAffineTransform) -> CIImage! | QuartzCore |
| To | func imageByApplyingTransform(_ matrix: CGAffineTransform) -> CIImage | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func imageByClampingToExtent() -> CIImage! | QuartzCore |
| To | func imageByClampingToExtent() -> CIImage | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func imageByCompositingOverImage(_ dest: CIImage!) -> CIImage! | QuartzCore |
| To | func imageByCompositingOverImage(_ dest: CIImage) -> CIImage | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func imageByCroppingToRect(_ r: CGRect) -> CIImage! | QuartzCore |
| To | func imageByCroppingToRect(_ rect: CGRect) -> CIImage | CoreImage |
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(bitmapData d: NSData!, bytesPerRow bpr: Int, size size: CGSize, format f: CIFormat, colorSpace c: CGColorSpace!) | QuartzCore |
| To | init(bitmapData data: NSData, bytesPerRow bytesPerRow: Int, size size: CGSize, format format: CIFormat, colorSpace colorSpace: CGColorSpace?) | CoreImage |
Modified CIImage.init(CGImage: CGImage)
| Declaration | Module | |
|---|---|---|
| From | init!(CGImage image: CGImage!) | QuartzCore |
| To | init(CGImage image: CGImage) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(CGImage image: CGImage!, options d: [NSObject : AnyObject]!) | QuartzCore |
| To | init(CGImage image: CGImage, options options: [String : AnyObject]?) | CoreImage |
Modified CIImage.init(CGLayer: CGLayer)
| Declaration | Deprecation | Module | |
|---|---|---|---|
| From | init!(CGLayer layer: CGLayer!) | -- | QuartzCore |
| To | init(CGLayer layer: CGLayer) | OS X 10.11 | CoreImage |
| Declaration | Deprecation | Module | |
|---|---|---|---|
| From | init!(CGLayer layer: CGLayer!, options d: [NSObject : AnyObject]!) | -- | QuartzCore |
| To | init(CGLayer layer: CGLayer, options options: [String : AnyObject]?) | OS X 10.11 | CoreImage |
Modified CIImage.init(color: CIColor)
| Declaration | Module | |
|---|---|---|
| From | init!(color color: CIColor!) | QuartzCore |
| To | init(color color: CIColor) | CoreImage |
Modified CIImage.init(contentsOfURL: NSURL)
| Declaration | Module | |
|---|---|---|
| From | init!(contentsOfURL url: NSURL!) | QuartzCore |
| To | init?(contentsOfURL url: NSURL) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(contentsOfURL url: NSURL!, options d: [NSObject : AnyObject]!) | QuartzCore |
| To | init?(contentsOfURL url: NSURL, options options: [String : AnyObject]?) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(CVImageBuffer imageBuffer: CVImageBuffer!) | QuartzCore |
| To | init(CVImageBuffer imageBuffer: CVImageBuffer) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(CVImageBuffer imageBuffer: CVImageBuffer!, options dict: [NSObject : AnyObject]!) | QuartzCore |
| To | init(CVImageBuffer imageBuffer: CVImageBuffer, options options: [String : AnyObject]?) | CoreImage |
Modified CIImage.init(data: NSData)
| Declaration | Module | |
|---|---|---|
| From | init!(data data: NSData!) | QuartzCore |
| To | init?(data data: NSData) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(data data: NSData!, options d: [NSObject : AnyObject]!) | QuartzCore |
| To | init?(data data: NSData, options options: [String : AnyObject]?) | CoreImage |
| Declaration | Introduction | Module | |
|---|---|---|---|
| From | init!(imageProvider p: AnyObject!, size width: Int, _ height: Int, format f: CIFormat, colorSpace cs: CGColorSpace!, options dict: [NSObject : AnyObject]!) | OS X 10.10 | QuartzCore |
| To | init(imageProvider p: AnyObject, size width: Int, _ height: Int, format f: CIFormat, colorSpace cs: CGColorSpace?, options options: [String : AnyObject]?) | OS X 10.4 | CoreImage |
Modified CIImage.init(IOSurface: IOSurface)
| Declaration | Module | |
|---|---|---|
| From | init!(IOSurface surface: IOSurface!) | QuartzCore |
| To | init(IOSurface surface: IOSurface) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(IOSurface surface: IOSurface!, options d: [NSObject : AnyObject]!) | QuartzCore |
| To | init(IOSurface surface: IOSurface, options options: [String : AnyObject]?) | CoreImage |
Modified CIImage.init(IOSurface: IOSurface, plane: Int, format: CIFormat, options: [String : AnyObject]?)
| Declaration | Introduction | Deprecation | Module | |
|---|---|---|---|---|
| From | init!(IOSurface surface: IOSurface!, plane plane: Int, format format: CIFormat, options d: [NSObject : AnyObject]!) | OS X 10.10 | -- | QuartzCore |
| To | init(IOSurface surface: IOSurface, plane plane: Int, format format: CIFormat, options options: [String : AnyObject]?) | OS X 10.9 | OS X 10.11 | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(texture name: UInt32, size size: CGSize, flipped flag: Bool, colorSpace cs: CGColorSpace!) | QuartzCore |
| To | init(texture name: UInt32, size size: CGSize, flipped flipped: Bool, colorSpace colorSpace: CGColorSpace?) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(texture name: UInt32, size size: CGSize, flipped flag: Bool, options options: [NSObject : AnyObject]!) | QuartzCore |
| To | init(texture name: UInt32, size size: CGSize, flipped flipped: Bool, options options: [String : AnyObject]?) | CoreImage |
Modified CIImageAccumulator
| Declaration | Introduction | Module | |
|---|---|---|---|
| From | class CIImageAccumulator : NSObject {
init!(extent extent: CGRect, format format: CIFormat) -> CIImageAccumulator
class func imageAccumulatorWithExtent(_ extent: CGRect, format format: CIFormat) -> CIImageAccumulator!
init!(extent extent: CGRect, format format: CIFormat, colorSpace colorSpace: CGColorSpace!) -> CIImageAccumulator
class func imageAccumulatorWithExtent(_ extent: CGRect, format format: CIFormat, colorSpace colorSpace: CGColorSpace!) -> CIImageAccumulator!
init!(extent extent: CGRect, format format: CIFormat)
init!(extent extent: CGRect, format format: CIFormat, colorSpace colorSpace: CGColorSpace!)
func extent() -> CGRect
func format() -> CIFormat
func image() -> CIImage!
func setImage(_ im: CIImage!)
func setImage(_ im: CIImage!, dirtyRect r: CGRect)
func clear()
} | OS X 10.10 | QuartzCore |
| To | class CIImageAccumulator : NSObject {
convenience init(extent extent: CGRect, format format: CIFormat)
class func imageAccumulatorWithExtent(_ extent: CGRect, format format: CIFormat) -> Self
convenience init(extent extent: CGRect, format format: CIFormat, colorSpace colorSpace: CGColorSpace)
class func imageAccumulatorWithExtent(_ extent: CGRect, format format: CIFormat, colorSpace colorSpace: CGColorSpace) -> Self
init(extent extent: CGRect, format format: CIFormat)
init(extent extent: CGRect, format format: CIFormat, colorSpace colorSpace: CGColorSpace)
var extent: CGRect { get }
var format: CIFormat { get }
func image() -> CIImage
func setImage(_ image: CIImage)
func setImage(_ image: CIImage, dirtyRect dirtyRect: CGRect)
func clear()
} | OS X 10.4 | CoreImage |
Modified CIImageAccumulator.clear()
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func image() -> CIImage! | QuartzCore |
| To | func image() -> CIImage | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(extent extent: CGRect, format format: CIFormat) | QuartzCore |
| To | init(extent extent: CGRect, format format: CIFormat) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(extent extent: CGRect, format format: CIFormat, colorSpace colorSpace: CGColorSpace!) | QuartzCore |
| To | init(extent extent: CGRect, format format: CIFormat, colorSpace colorSpace: CGColorSpace) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func setImage(_ im: CIImage!) | QuartzCore |
| To | func setImage(_ image: CIImage) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func setImage(_ im: CIImage!, dirtyRect r: CGRect) | QuartzCore |
| To | func setImage(_ image: CIImage, dirtyRect dirtyRect: CGRect) | CoreImage |
Modified CIKernel
| Declaration | Introduction | Module | |
|---|---|---|---|
| From | class CIKernel : NSObject {
class func kernelsWithString(_ s: String!) -> [AnyObject]!
init!(string s: String!) -> CIKernel
class func kernelWithString(_ s: String!) -> CIKernel!
func name() -> String!
func setROISelector(_ aMethod: Selector)
} | OS X 10.10 | QuartzCore |
| To | class CIKernel : NSObject {
class func kernelsWithString(_ string: String) -> [CIKernel]?
convenience init?(string string: String)
class func kernelWithString(_ string: String) -> Self?
var name: String { get }
func setROISelector(_ method: Selector)
func applyWithExtent(_ extent: CGRect, roiCallback callback: CIKernelROICallback, arguments args: [AnyObject]?) -> CIImage?
} | OS X 10.4 | CoreImage |
Modified CIKernel.init(string: String)
| Declaration | Module | |
|---|---|---|
| From | init!(string s: String!) -> CIKernel | QuartzCore |
| To | convenience init?(string string: String) | CoreImage |
| Declaration | Introduction | Module | |
|---|---|---|---|
| From | class func kernelsWithString(_ s: String!) -> [AnyObject]! | OS X 10.10 | QuartzCore |
| To | class func kernelsWithString(_ string: String) -> [CIKernel]? | OS X 10.4 | CoreImage |
Modified CIKernel.setROISelector(_: Selector)
| Introduction | Module | |
|---|---|---|
| From | OS X 10.10 | QuartzCore |
| To | OS X 10.4 | CoreImage |
Modified CIPlugIn
| Introduction | Module | |
|---|---|---|
| From | OS X 10.10 | QuartzCore |
| To | OS X 10.4 | CoreImage |
Modified CIPlugIn.loadAllPlugIns() [class]
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIPlugInRegistration
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIQRCodeFeature
| Declaration | Module | |
|---|---|---|
| From | class CIQRCodeFeature : CIFeature {
var bounds: CGRect { get }
var topLeft: CGPoint { get }
var topRight: CGPoint { get }
var bottomLeft: CGPoint { get }
var bottomRight: CGPoint { get }
var messageString: String! { get }
} | QuartzCore |
| To | class CIQRCodeFeature : CIFeature {
var bounds: CGRect { get }
var topLeft: CGPoint { get }
var topRight: CGPoint { get }
var bottomLeft: CGPoint { get }
var bottomRight: CGPoint { get }
var messageString: String { get }
} | CoreImage |
Modified CIQRCodeFeature.bottomLeft
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIQRCodeFeature.bottomRight
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIQRCodeFeature.bounds
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIQRCodeFeature.messageString
| Declaration | Module | |
|---|---|---|
| From | var messageString: String! { get } | QuartzCore |
| To | var messageString: String { get } | CoreImage |
Modified CIQRCodeFeature.topLeft
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIQRCodeFeature.topRight
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIRectangleFeature
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIRectangleFeature.bottomLeft
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIRectangleFeature.bottomRight
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIRectangleFeature.bounds
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIRectangleFeature.topLeft
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIRectangleFeature.topRight
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CISampler
| Declaration | Introduction | Module | |
|---|---|---|---|
| From | class CISampler : NSObject, NSCopying {
init!(image im: CIImage!) -> CISampler
class func samplerWithImage(_ im: CIImage!) -> CISampler!
init!(image im: CIImage!, options dict: [NSObject : AnyObject]!) -> CISampler
class func samplerWithImage(_ im: CIImage!, options dict: [NSObject : AnyObject]!) -> CISampler!
init!(image im: CIImage!)
init!(image im: CIImage!, options dict: [NSObject : AnyObject]!)
func definition() -> CIFilterShape!
func extent() -> CGRect
}
extension CISampler {
convenience init(im im: CIImage!, elements elements: (NSCopying, AnyObject)...)
}
extension CISampler {
convenience init(im im: CIImage!, elements elements: (NSCopying, AnyObject)...)
} | OS X 10.10 | QuartzCore |
| To | class CISampler : NSObject, NSCopying {
convenience init(image im: CIImage)
class func samplerWithImage(_ im: CIImage) -> Self
convenience init(image im: CIImage, options dict: [NSObject : AnyObject]?)
class func samplerWithImage(_ im: CIImage, options dict: [NSObject : AnyObject]?) -> Self
convenience init(image im: CIImage)
init(image im: CIImage, options dict: [NSObject : AnyObject]?)
var definition: CIFilterShape { get }
var extent: CGRect { get }
} | OS X 10.4 | CoreImage |
Modified CISampler.init(image: CIImage)
| Declaration | Module | |
|---|---|---|
| From | init!(image im: CIImage!) | QuartzCore |
| To | convenience init(image im: CIImage) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(image im: CIImage!, options dict: [NSObject : AnyObject]!) | QuartzCore |
| To | init(image im: CIImage, options dict: [NSObject : AnyObject]?) | CoreImage |
Modified CIVector
| Declaration | Protocols | Introduction | Module | |
|---|---|---|---|---|
| From | class CIVector : NSObject, NSCopying, NSCoding {
init!(values values: UnsafePointer<CGFloat>, count count: Int) -> CIVector
class func vectorWithValues(_ values: UnsafePointer<CGFloat>, count count: Int) -> CIVector!
init!(x x: CGFloat) -> CIVector
class func vectorWithX(_ x: CGFloat) -> CIVector!
init!(x x: CGFloat, y y: CGFloat) -> CIVector
class func vectorWithX(_ x: CGFloat, y y: CGFloat) -> CIVector!
init!(x x: CGFloat, y y: CGFloat, z z: CGFloat) -> CIVector
class func vectorWithX(_ x: CGFloat, y y: CGFloat, z z: CGFloat) -> CIVector!
init!(x x: CGFloat, y y: CGFloat, z z: CGFloat, w w: CGFloat) -> CIVector
class func vectorWithX(_ x: CGFloat, y y: CGFloat, z z: CGFloat, w w: CGFloat) -> CIVector!
init!(CGPoint p: CGPoint) -> CIVector
class func vectorWithCGPoint(_ p: CGPoint) -> CIVector!
init!(CGRect r: CGRect) -> CIVector
class func vectorWithCGRect(_ r: CGRect) -> CIVector!
init!(CGAffineTransform t: CGAffineTransform) -> CIVector
class func vectorWithCGAffineTransform(_ t: CGAffineTransform) -> CIVector!
init!(string representation: String!) -> CIVector
class func vectorWithString(_ representation: String!) -> CIVector!
init!(values values: UnsafePointer<CGFloat>, count count: Int)
init!(x x: CGFloat)
init!(x x: CGFloat, y y: CGFloat)
init!(x x: CGFloat, y y: CGFloat, z z: CGFloat)
init!(x x: CGFloat, y y: CGFloat, z z: CGFloat, w w: CGFloat)
init!(CGPoint p: CGPoint)
init!(CGRect r: CGRect)
init!(CGAffineTransform r: CGAffineTransform)
init!(string representation: String!)
func valueAtIndex(_ index: Int) -> CGFloat
func count() -> Int
func X() -> CGFloat
func Y() -> CGFloat
func Z() -> CGFloat
func W() -> CGFloat
func CGPointValue() -> CGPoint
func CGRectValue() -> CGRect
func CGAffineTransformValue() -> CGAffineTransform
func stringRepresentation() -> String!
} | AnyObject, NSCoding, NSCopying | OS X 10.10 | QuartzCore |
| To | class CIVector : NSObject, NSCopying, NSSecureCoding, NSCoding {
convenience init(values values: UnsafePointer<CGFloat>, count count: Int)
class func vectorWithValues(_ values: UnsafePointer<CGFloat>, count count: Int) -> Self
convenience init(x x: CGFloat)
class func vectorWithX(_ x: CGFloat) -> Self
convenience init(x x: CGFloat, y y: CGFloat)
class func vectorWithX(_ x: CGFloat, y y: CGFloat) -> Self
convenience init(x x: CGFloat, y y: CGFloat, z z: CGFloat)
class func vectorWithX(_ x: CGFloat, y y: CGFloat, z z: CGFloat) -> Self
convenience init(x x: CGFloat, y y: CGFloat, z z: CGFloat, w w: CGFloat)
class func vectorWithX(_ x: CGFloat, y y: CGFloat, z z: CGFloat, w w: CGFloat) -> Self
convenience init(CGPoint p: CGPoint)
class func vectorWithCGPoint(_ p: CGPoint) -> Self
convenience init(CGRect r: CGRect)
class func vectorWithCGRect(_ r: CGRect) -> Self
convenience init(CGAffineTransform t: CGAffineTransform)
class func vectorWithCGAffineTransform(_ t: CGAffineTransform) -> Self
convenience init(string representation: String)
class func vectorWithString(_ representation: String) -> Self
init(values values: UnsafePointer<CGFloat>, count count: Int)
convenience init(x x: CGFloat)
convenience init(x x: CGFloat, y y: CGFloat)
convenience init(x x: CGFloat, y y: CGFloat, z z: CGFloat)
convenience init(x x: CGFloat, y y: CGFloat, z z: CGFloat, w w: CGFloat)
convenience init(CGPoint p: CGPoint)
convenience init(CGRect r: CGRect)
convenience init(CGAffineTransform r: CGAffineTransform)
convenience init(string representation: String)
func valueAtIndex(_ index: Int) -> CGFloat
var count: Int { get }
var X: CGFloat { get }
var Y: CGFloat { get }
var Z: CGFloat { get }
var W: CGFloat { get }
var CGPointValue: CGPoint { get }
var CGRectValue: CGRect { get }
var CGAffineTransformValue: CGAffineTransform { get }
var stringRepresentation: String { get }
} | AnyObject, NSCoding, NSCopying, NSSecureCoding | OS X 10.4 | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(CGAffineTransform r: CGAffineTransform) | QuartzCore |
| To | convenience init(CGAffineTransform r: CGAffineTransform) | CoreImage |
Modified CIVector.init(CGPoint: CGPoint)
| Declaration | Module | |
|---|---|---|
| From | init!(CGPoint p: CGPoint) | QuartzCore |
| To | convenience init(CGPoint p: CGPoint) | CoreImage |
Modified CIVector.init(CGRect: CGRect)
| Declaration | Module | |
|---|---|---|
| From | init!(CGRect r: CGRect) | QuartzCore |
| To | convenience init(CGRect r: CGRect) | CoreImage |
Modified CIVector.init(string: String)
| Declaration | Module | |
|---|---|---|
| From | init!(string representation: String!) | QuartzCore |
| To | convenience init(string representation: String) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(values values: UnsafePointer<CGFloat>, count count: Int) | QuartzCore |
| To | init(values values: UnsafePointer<CGFloat>, count count: Int) | CoreImage |
Modified CIVector.init(x: CGFloat)
| Declaration | Module | |
|---|---|---|
| From | init!(x x: CGFloat) | QuartzCore |
| To | convenience init(x x: CGFloat) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(x x: CGFloat, y y: CGFloat) | QuartzCore |
| To | convenience init(x x: CGFloat, y y: CGFloat) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(x x: CGFloat, y y: CGFloat, z z: CGFloat) | QuartzCore |
| To | convenience init(x x: CGFloat, y y: CGFloat, z z: CGFloat) | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | init!(x x: CGFloat, y y: CGFloat, z z: CGFloat, w w: CGFloat) | QuartzCore |
| To | convenience init(x x: CGFloat, y y: CGFloat, z z: CGFloat, w w: CGFloat) | CoreImage |
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
| Declaration | Module | |
|---|---|---|
| From | func provideImageData(_ data: UnsafeMutablePointer<Void>, bytesPerRow rowbytes: Int, origin x: Int, _ y: Int, size width: Int, _ height: Int, userInfo info: AnyObject!) | QuartzCore |
| To | func provideImageData(_ data: UnsafeMutablePointer<Void>, bytesPerRow rowbytes: Int, origin x: Int, _ y: Int, size width: Int, _ height: Int, userInfo info: AnyObject?) | CoreImage |
Modified CIDetectorAccuracy
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIDetectorAccuracyHigh
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIDetectorAccuracyLow
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIDetectorAspectRatio
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIDetectorEyeBlink
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIDetectorFocalLength
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIDetectorImageOrientation
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIDetectorMinFeatureSize
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIDetectorSmile
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIDetectorTracking
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIDetectorTypeFace
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIDetectorTypeQRCode
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIDetectorTypeRectangle
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIFeatureTypeFace
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIFeatureTypeRectangle
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified CIFormat
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIActiveKeys
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIApplyOptionColorSpace
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIApplyOptionDefinition
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIApplyOptionExtent
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIApplyOptionUserInfo
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIAttributeClass
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIAttributeDefault
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIAttributeDescription
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIAttributeDisplayName
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIAttributeFilterCategories
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIAttributeFilterDisplayName
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIAttributeFilterName
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIAttributeIdentity
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIAttributeMax
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIAttributeMin
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIAttributeName
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIAttributeReferenceDocumentation
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIAttributeSliderMax
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIAttributeSliderMin
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIAttributeType
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIAttributeTypeAngle
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIAttributeTypeBoolean
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIAttributeTypeCount
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIAttributeTypeDistance
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIAttributeTypeGradient
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIAttributeTypeInteger
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIAttributeTypeOffset
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIAttributeTypeOpaqueColor
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIAttributeTypePosition
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIAttributeTypePosition3
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIAttributeTypeRectangle
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIAttributeTypeScalar
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIAttributeTypeTime
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCICategoryBlur
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCICategoryBuiltIn
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCICategoryColorAdjustment
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCICategoryColorEffect
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCICategoryCompositeOperation
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCICategoryDistortionEffect
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCICategoryFilterGenerator
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCICategoryGenerator
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCICategoryGeometryAdjustment
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCICategoryGradient
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCICategoryHalftoneEffect
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCICategoryHighDynamicRange
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCICategoryInterlaced
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCICategoryNonSquarePixels
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCICategoryReduction
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCICategorySharpen
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCICategoryStillImage
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCICategoryStylize
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCICategoryTileEffect
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCICategoryTransition
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCICategoryVideo
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIContextOutputColorSpace
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIContextUseSoftwareRenderer
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIContextWorkingColorSpace
| Introduction | Module | |
|---|---|---|
| From | OS X 10.4 | QuartzCore |
| To | OS X 10.10 | CoreImage |
Modified kCIFilterGeneratorExportedKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIFilterGeneratorExportedKeyName
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIFormatARGB8
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIFormatRGBA16
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIFormatRGBAf
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIFormatRGBAh
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIImageAutoAdjustCrop
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIImageAutoAdjustEnhance
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIImageAutoAdjustFeatures
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIImageAutoAdjustLevel
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIImageAutoAdjustRedEye
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIImageColorSpace
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIImageProperties
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIImageProviderTileSize
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIImageProviderUserInfo
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIImageTextureFormat
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIImageTextureTarget
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputAllowDraftModeKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputAngleKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputAspectRatioKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputBackgroundImageKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputBiasKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputBoostKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputBoostShadowAmountKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputBrightnessKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputCenterKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputColorKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputColorNoiseReductionAmountKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputContrastKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputDecoderVersionKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputEnableSharpeningKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputEVKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputExtentKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputGradientImageKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputIgnoreImageOrientationKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputImageKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputImageOrientationKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputIntensityKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputLinearSpaceFilter
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputMaskImageKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputNeutralChromaticityXKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputNeutralChromaticityYKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputNeutralLocationKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputNeutralTemperatureKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputNeutralTintKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputNoiseReductionAmountKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputRadiusKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputRefractionKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputSaturationKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputScaleFactorKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputScaleKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputShadingImageKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputSharpnessKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputTargetImageKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputTimeKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputTransformKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIInputWidthKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIOutputImageKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIOutputNativeSizeKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCISamplerAffineMatrix
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCISamplerColorSpace
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCISamplerFilterLinear
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCISamplerFilterMode
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCISamplerFilterNearest
| Introduction | Module | |
|---|---|---|
| From | OS X 10.10 | QuartzCore |
| To | OS X 10.4 | CoreImage |
Modified kCISamplerWrapBlack
| Introduction | Module | |
|---|---|---|
| From | OS X 10.10 | QuartzCore |
| To | OS X 10.4 | CoreImage |
Modified kCISamplerWrapClamp
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCISamplerWrapMode
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCISupportedDecoderVersionsKey
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIUIParameterSet
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIUISetAdvanced
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIUISetBasic
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIUISetDevelopment
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |
Modified kCIUISetIntermediate
| Module | |
|---|---|
| From | QuartzCore |
| To | CoreImage |