Documentation Archive Developer
Search

CoreVideo Changes for Swift

CoreVideo

Removed CVFillExtendedPixelsCallBackData.init(version: CFIndex, fillCallBack: CVFillExtendedPixelsCallBack, refCon: UnsafeMutablePointer<Void>)
Removed CVPixelBufferLockFlags.init(_: UInt32)
Removed CVPixelBufferLockFlags.value
Added CVFillExtendedPixelsCallBackData.init(version: CFIndex, fillCallBack: CVFillExtendedPixelsCallBack?, refCon: UnsafeMutablePointer<Void>)
Added COREVIDEO_DECLARE_NULLABILITY
Added CVMetalTextureCacheRef
Declaration
From
struct CVFillExtendedPixelsCallBackData {
    var version: CFIndex
    var fillCallBack: CVFillExtendedPixelsCallBack
    var refCon: UnsafeMutablePointer<Void>
    init()
    init(version version: CFIndex, fillCallBack fillCallBack: CVFillExtendedPixelsCallBack, refCon refCon: UnsafeMutablePointer<Void>)
}
To
struct CVFillExtendedPixelsCallBackData {
    var version: CFIndex
    var fillCallBack: CVFillExtendedPixelsCallBack?
    var refCon: UnsafeMutablePointer<Void>
    init()
    init(version version: CFIndex, fillCallBack fillCallBack: CVFillExtendedPixelsCallBack?, refCon refCon: UnsafeMutablePointer<Void>)
}

Declaration
From
var fillCallBack: CVFillExtendedPixelsCallBack
To
var fillCallBack: CVFillExtendedPixelsCallBack?

Declaration
From
func CVBufferGetAttachment(_ buffer: CVBuffer!, _ key: CFString!, _ attachmentMode: UnsafeMutablePointer<CVAttachmentMode>) -> Unmanaged<AnyObject>!
To
func CVBufferGetAttachment(_ buffer: CVBuffer, _ key: CFString, _ attachmentMode: UnsafeMutablePointer<CVAttachmentMode>) -> Unmanaged<AnyObject>?

Declaration
From
func CVBufferGetAttachments(_ buffer: CVBuffer!, _ attachmentMode: CVAttachmentMode) -> Unmanaged<CFDictionary>!
To
func CVBufferGetAttachments(_ buffer: CVBuffer, _ attachmentMode: CVAttachmentMode) -> Unmanaged<CFDictionary>?

Declaration
From
func CVBufferPropagateAttachments(_ sourceBuffer: CVBuffer!, _ destinationBuffer: CVBuffer!)
To
func CVBufferPropagateAttachments(_ sourceBuffer: CVBuffer, _ destinationBuffer: CVBuffer)

Declaration
From
func CVBufferRemoveAllAttachments(_ buffer: CVBuffer!)
To
func CVBufferRemoveAllAttachments(_ buffer: CVBuffer)

Declaration
From
func CVBufferRemoveAttachment(_ buffer: CVBuffer!, _ key: CFString!)
To
func CVBufferRemoveAttachment(_ buffer: CVBuffer, _ key: CFString)

Declaration
From
func CVBufferSetAttachment(_ buffer: CVBuffer!, _ key: CFString!, _ value: AnyObject!, _ attachmentMode: CVAttachmentMode)
To
func CVBufferSetAttachment(_ buffer: CVBuffer, _ key: CFString, _ value: AnyObject, _ attachmentMode: CVAttachmentMode)

Declaration
From
func CVBufferSetAttachments(_ buffer: CVBuffer!, _ theAttachments: CFDictionary!, _ attachmentMode: CVAttachmentMode)
To
func CVBufferSetAttachments(_ buffer: CVBuffer, _ theAttachments: CFDictionary, _ attachmentMode: CVAttachmentMode)

Declaration
From
func CVDisplayLinkCreateWithActiveCGDisplays(_ displayLinkOut: UnsafeMutablePointer<Unmanaged<CVDisplayLink>?>) -> CVReturn
To
func CVDisplayLinkCreateWithActiveCGDisplays(_ displayLinkOut: UnsafeMutablePointer<CVDisplayLink?>) -> CVReturn

Declaration
From
func CVDisplayLinkCreateWithCGDisplay(_ displayID: CGDirectDisplayID, _ displayLinkOut: UnsafeMutablePointer<Unmanaged<CVDisplayLink>?>) -> CVReturn
To
func CVDisplayLinkCreateWithCGDisplay(_ displayID: CGDirectDisplayID, _ displayLinkOut: UnsafeMutablePointer<CVDisplayLink?>) -> CVReturn

Declaration
From
func CVDisplayLinkCreateWithCGDisplays(_ displayArray: UnsafeMutablePointer<CGDirectDisplayID>, _ count: CFIndex, _ displayLinkOut: UnsafeMutablePointer<Unmanaged<CVDisplayLink>?>) -> CVReturn
To
func CVDisplayLinkCreateWithCGDisplays(_ displayArray: UnsafeMutablePointer<CGDirectDisplayID>, _ count: CFIndex, _ displayLinkOut: UnsafeMutablePointer<CVDisplayLink?>) -> CVReturn

Declaration
From
func CVDisplayLinkCreateWithOpenGLDisplayMask(_ mask: CGOpenGLDisplayMask, _ displayLinkOut: UnsafeMutablePointer<Unmanaged<CVDisplayLink>?>) -> CVReturn
To
func CVDisplayLinkCreateWithOpenGLDisplayMask(_ mask: CGOpenGLDisplayMask, _ displayLinkOut: UnsafeMutablePointer<CVDisplayLink?>) -> CVReturn

Declaration
From
func CVDisplayLinkGetActualOutputVideoRefreshPeriod(_ displayLink: CVDisplayLink!) -> Double
To
func CVDisplayLinkGetActualOutputVideoRefreshPeriod(_ displayLink: CVDisplayLink) -> Double

Declaration
From
func CVDisplayLinkGetCurrentCGDisplay(_ displayLink: CVDisplayLink!) -> CGDirectDisplayID
To
func CVDisplayLinkGetCurrentCGDisplay(_ displayLink: CVDisplayLink) -> CGDirectDisplayID

Declaration
From
func CVDisplayLinkGetCurrentTime(_ displayLink: CVDisplayLink!, _ outTime: UnsafeMutablePointer<CVTimeStamp>) -> CVReturn
To
func CVDisplayLinkGetCurrentTime(_ displayLink: CVDisplayLink, _ outTime: UnsafeMutablePointer<CVTimeStamp>) -> CVReturn

Declaration
From
func CVDisplayLinkGetNominalOutputVideoRefreshPeriod(_ displayLink: CVDisplayLink!) -> CVTime
To
func CVDisplayLinkGetNominalOutputVideoRefreshPeriod(_ displayLink: CVDisplayLink) -> CVTime

Declaration
From
func CVDisplayLinkGetOutputVideoLatency(_ displayLink: CVDisplayLink!) -> CVTime
To
func CVDisplayLinkGetOutputVideoLatency(_ displayLink: CVDisplayLink) -> CVTime

Declaration
From
func CVDisplayLinkIsRunning(_ displayLink: CVDisplayLink!) -> Boolean
To
func CVDisplayLinkIsRunning(_ displayLink: CVDisplayLink) -> Bool

Declaration
From
typealias CVDisplayLinkOutputCallback = CFunctionPointer<((CVDisplayLink!, UnsafePointer<CVTimeStamp>, UnsafePointer<CVTimeStamp>, CVOptionFlags, UnsafeMutablePointer<CVOptionFlags>, UnsafeMutablePointer<Void>) -> CVReturn)>
To
typealias CVDisplayLinkOutputCallback = (CVDisplayLink, UnsafePointer<CVTimeStamp>, UnsafePointer<CVTimeStamp>, CVOptionFlags, UnsafeMutablePointer<CVOptionFlags>, UnsafeMutablePointer<Void>) -> CVReturn

Declaration
From
func CVDisplayLinkSetCurrentCGDisplay(_ displayLink: CVDisplayLink!, _ displayID: CGDirectDisplayID) -> CVReturn
To
func CVDisplayLinkSetCurrentCGDisplay(_ displayLink: CVDisplayLink, _ displayID: CGDirectDisplayID) -> CVReturn

Declaration
From
func CVDisplayLinkSetCurrentCGDisplayFromOpenGLContext(_ displayLink: CVDisplayLink!, _ cglContext: CGLContextObj, _ cglPixelFormat: CGLPixelFormatObj) -> CVReturn
To
func CVDisplayLinkSetCurrentCGDisplayFromOpenGLContext(_ displayLink: CVDisplayLink, _ cglContext: CGLContextObj, _ cglPixelFormat: CGLPixelFormatObj) -> CVReturn

Declaration
From
func CVDisplayLinkSetOutputCallback(_ displayLink: CVDisplayLink!, _ callback: CVDisplayLinkOutputCallback, _ userInfo: UnsafeMutablePointer<Void>) -> CVReturn
To
func CVDisplayLinkSetOutputCallback(_ displayLink: CVDisplayLink, _ callback: CVDisplayLinkOutputCallback, _ userInfo: UnsafeMutablePointer<Void>) -> CVReturn

Declaration
From
func CVDisplayLinkStart(_ displayLink: CVDisplayLink!) -> CVReturn
To
func CVDisplayLinkStart(_ displayLink: CVDisplayLink) -> CVReturn

Declaration
From
func CVDisplayLinkStop(_ displayLink: CVDisplayLink!) -> CVReturn
To
func CVDisplayLinkStop(_ displayLink: CVDisplayLink) -> CVReturn

Declaration
From
func CVDisplayLinkTranslateTime(_ displayLink: CVDisplayLink!, _ inTime: UnsafePointer<CVTimeStamp>, _ outTime: UnsafeMutablePointer<CVTimeStamp>) -> CVReturn
To
func CVDisplayLinkTranslateTime(_ displayLink: CVDisplayLink, _ inTime: UnsafePointer<CVTimeStamp>, _ outTime: UnsafeMutablePointer<CVTimeStamp>) -> CVReturn

Declaration
From
typealias CVFillExtendedPixelsCallBack = CFunctionPointer<((CVPixelBuffer!, UnsafeMutablePointer<Void>) -> Boolean)>
To
typealias CVFillExtendedPixelsCallBack = (CVPixelBuffer, UnsafeMutablePointer<Void>) -> DarwinBoolean

Declaration
From
func CVImageBufferCreateColorSpaceFromAttachments(_ attachments: CFDictionary!) -> Unmanaged<CGColorSpace>!
To
func CVImageBufferCreateColorSpaceFromAttachments(_ attachments: CFDictionary) -> Unmanaged<CGColorSpace>?

Declaration
From
func CVImageBufferGetCleanRect(_ imageBuffer: CVImageBuffer!) -> CGRect
To
func CVImageBufferGetCleanRect(_ imageBuffer: CVImageBuffer) -> CGRect

Declaration
From
func CVImageBufferGetColorSpace(_ imageBuffer: CVImageBuffer!) -> Unmanaged<CGColorSpace>!
To
func CVImageBufferGetColorSpace(_ imageBuffer: CVImageBuffer) -> Unmanaged<CGColorSpace>?

Declaration
From
func CVImageBufferGetDisplaySize(_ imageBuffer: CVImageBuffer!) -> CGSize
To
func CVImageBufferGetDisplaySize(_ imageBuffer: CVImageBuffer) -> CGSize

Declaration
From
func CVImageBufferGetEncodedSize(_ imageBuffer: CVImageBuffer!) -> CGSize
To
func CVImageBufferGetEncodedSize(_ imageBuffer: CVImageBuffer) -> CGSize

Declaration
From
func CVImageBufferIsFlipped(_ imageBuffer: CVImageBuffer!) -> Boolean
To
func CVImageBufferIsFlipped(_ imageBuffer: CVImageBuffer) -> Bool

Declaration
From
func CVOpenGLBufferAttach(_ openGLBuffer: CVOpenGLBuffer!, _ cglContext: CGLContextObj, _ face: GLenum, _ level: GLint, _ screen: GLint) -> CVReturn
To
func CVOpenGLBufferAttach(_ openGLBuffer: CVOpenGLBuffer, _ cglContext: CGLContextObj, _ face: GLenum, _ level: GLint, _ screen: GLint) -> CVReturn

Declaration
From
func CVOpenGLBufferCreate(_ allocator: CFAllocator!, _ width: Int, _ height: Int, _ attributes: CFDictionary!, _ bufferOut: UnsafeMutablePointer<Unmanaged<CVOpenGLBuffer>?>) -> CVReturn
To
func CVOpenGLBufferCreate(_ allocator: CFAllocator?, _ width: Int, _ height: Int, _ attributes: CFDictionary?, _ bufferOut: UnsafeMutablePointer<CVOpenGLBuffer?>) -> CVReturn

Declaration
From
func CVOpenGLBufferGetAttributes(_ openGLBuffer: CVOpenGLBuffer!) -> Unmanaged<CFDictionary>!
To
func CVOpenGLBufferGetAttributes(_ openGLBuffer: CVOpenGLBuffer) -> Unmanaged<CFDictionary>?

Declaration
From
func CVOpenGLBufferPoolCreate(_ allocator: CFAllocator!, _ poolAttributes: CFDictionary!, _ openGLBufferAttributes: CFDictionary!, _ poolOut: UnsafeMutablePointer<Unmanaged<CVOpenGLBufferPool>?>) -> CVReturn
To
func CVOpenGLBufferPoolCreate(_ allocator: CFAllocator?, _ poolAttributes: CFDictionary?, _ openGLBufferAttributes: CFDictionary?, _ poolOut: UnsafeMutablePointer<CVOpenGLBufferPool?>) -> CVReturn

Declaration
From
func CVOpenGLBufferPoolCreateOpenGLBuffer(_ allocator: CFAllocator!, _ openGLBufferPool: CVOpenGLBufferPool!, _ openGLBufferOut: UnsafeMutablePointer<Unmanaged<CVOpenGLBuffer>?>) -> CVReturn
To
func CVOpenGLBufferPoolCreateOpenGLBuffer(_ allocator: CFAllocator?, _ openGLBufferPool: CVOpenGLBufferPool, _ openGLBufferOut: UnsafeMutablePointer<CVOpenGLBuffer?>) -> CVReturn

Declaration
From
func CVOpenGLBufferPoolGetAttributes(_ pool: CVOpenGLBufferPool!) -> Unmanaged<CFDictionary>!
To
func CVOpenGLBufferPoolGetAttributes(_ pool: CVOpenGLBufferPool) -> Unmanaged<CFDictionary>?

Declaration
From
func CVOpenGLBufferPoolGetOpenGLBufferAttributes(_ pool: CVOpenGLBufferPool!) -> Unmanaged<CFDictionary>!
To
func CVOpenGLBufferPoolGetOpenGLBufferAttributes(_ pool: CVOpenGLBufferPool) -> Unmanaged<CFDictionary>?

Declaration
From
func CVOpenGLTextureCacheCreate(_ allocator: CFAllocator!, _ cacheAttributes: CFDictionary!, _ cglContext: CGLContextObj, _ cglPixelFormat: CGLPixelFormatObj, _ textureAttributes: CFDictionary!, _ cacheOut: UnsafeMutablePointer<Unmanaged<CVOpenGLTextureCache>?>) -> CVReturn
To
func CVOpenGLTextureCacheCreate(_ allocator: CFAllocator?, _ cacheAttributes: CFDictionary?, _ cglContext: CGLContextObj, _ cglPixelFormat: CGLPixelFormatObj, _ textureAttributes: CFDictionary?, _ cacheOut: UnsafeMutablePointer<CVOpenGLTextureCache?>) -> CVReturn

Declaration
From
func CVOpenGLTextureCacheCreateTextureFromImage(_ allocator: CFAllocator!, _ textureCache: CVOpenGLTextureCache!, _ sourceImage: CVImageBuffer!, _ attributes: CFDictionary!, _ textureOut: UnsafeMutablePointer<Unmanaged<CVOpenGLTexture>?>) -> CVReturn
To
func CVOpenGLTextureCacheCreateTextureFromImage(_ allocator: CFAllocator?, _ textureCache: CVOpenGLTextureCache, _ sourceImage: CVImageBuffer, _ attributes: CFDictionary?, _ textureOut: UnsafeMutablePointer<CVOpenGLTexture?>) -> CVReturn

Declaration
From
func CVOpenGLTextureCacheFlush(_ textureCache: CVOpenGLTextureCache!, _ options: CVOptionFlags)
To
func CVOpenGLTextureCacheFlush(_ textureCache: CVOpenGLTextureCache, _ options: CVOptionFlags)

Declaration
From
func CVOpenGLTextureGetCleanTexCoords(_ image: CVOpenGLTexture!, _ lowerLeft: UnsafeMutablePointer<GLfloat>, _ lowerRight: UnsafeMutablePointer<GLfloat>, _ upperRight: UnsafeMutablePointer<GLfloat>, _ upperLeft: UnsafeMutablePointer<GLfloat>)
To
func CVOpenGLTextureGetCleanTexCoords(_ image: CVOpenGLTexture, _ lowerLeft: UnsafeMutablePointer<GLfloat>, _ lowerRight: UnsafeMutablePointer<GLfloat>, _ upperRight: UnsafeMutablePointer<GLfloat>, _ upperLeft: UnsafeMutablePointer<GLfloat>)

Declaration
From
func CVOpenGLTextureGetName(_ image: CVOpenGLTexture!) -> GLuint
To
func CVOpenGLTextureGetName(_ image: CVOpenGLTexture) -> GLuint

Declaration
From
func CVOpenGLTextureGetTarget(_ image: CVOpenGLTexture!) -> GLenum
To
func CVOpenGLTextureGetTarget(_ image: CVOpenGLTexture) -> GLenum

Declaration
From
func CVOpenGLTextureIsFlipped(_ image: CVOpenGLTexture!) -> Boolean
To
func CVOpenGLTextureIsFlipped(_ image: CVOpenGLTexture) -> Bool

Declaration
From
func CVPixelBufferCreate(_ allocator: CFAllocator!, _ width: Int, _ height: Int, _ pixelFormatType: OSType, _ pixelBufferAttributes: CFDictionary!, _ pixelBufferOut: UnsafeMutablePointer<Unmanaged<CVPixelBuffer>?>) -> CVReturn
To
func CVPixelBufferCreate(_ allocator: CFAllocator?, _ width: Int, _ height: Int, _ pixelFormatType: OSType, _ pixelBufferAttributes: CFDictionary?, _ pixelBufferOut: UnsafeMutablePointer<CVPixelBuffer?>) -> CVReturn

Declaration
From
func CVPixelBufferCreateResolvedAttributesDictionary(_ allocator: CFAllocator!, _ attributes: CFArray!, _ resolvedDictionaryOut: UnsafeMutablePointer<Unmanaged<CFDictionary>?>) -> CVReturn
To
func CVPixelBufferCreateResolvedAttributesDictionary(_ allocator: CFAllocator?, _ attributes: CFArray?, _ resolvedDictionaryOut: UnsafeMutablePointer<CFDictionary?>) -> CVReturn

Declaration
From
func CVPixelBufferCreateWithBytes(_ allocator: CFAllocator!, _ width: Int, _ height: Int, _ pixelFormatType: OSType, _ baseAddress: UnsafeMutablePointer<Void>, _ bytesPerRow: Int, _ releaseCallback: CVPixelBufferReleaseBytesCallback, _ releaseRefCon: UnsafeMutablePointer<Void>, _ pixelBufferAttributes: CFDictionary!, _ pixelBufferOut: UnsafeMutablePointer<Unmanaged<CVPixelBuffer>?>) -> CVReturn
To
func CVPixelBufferCreateWithBytes(_ allocator: CFAllocator?, _ width: Int, _ height: Int, _ pixelFormatType: OSType, _ baseAddress: UnsafeMutablePointer<Void>, _ bytesPerRow: Int, _ releaseCallback: CVPixelBufferReleaseBytesCallback?, _ releaseRefCon: UnsafeMutablePointer<Void>, _ pixelBufferAttributes: CFDictionary?, _ pixelBufferOut: UnsafeMutablePointer<CVPixelBuffer?>) -> CVReturn

Declaration
From
func CVPixelBufferCreateWithIOSurface(_ allocator: CFAllocator!, _ surface: IOSurface!, _ pixelBufferAttributes: CFDictionary!, _ pixelBufferOut: UnsafeMutablePointer<Unmanaged<CVPixelBuffer>?>) -> CVReturn
To
func CVPixelBufferCreateWithIOSurface(_ allocator: CFAllocator?, _ surface: IOSurface, _ pixelBufferAttributes: CFDictionary?, _ pixelBufferOut: UnsafeMutablePointer<Unmanaged<CVPixelBuffer>?>) -> CVReturn

Declaration
From
func CVPixelBufferCreateWithPlanarBytes(_ allocator: CFAllocator!, _ width: Int, _ height: Int, _ pixelFormatType: OSType, _ dataPtr: UnsafeMutablePointer<Void>, _ dataSize: Int, _ numberOfPlanes: Int, _ planeBaseAddress: UnsafeMutablePointer<UnsafeMutablePointer<Void>>, _ planeWidth: UnsafeMutablePointer<Int>, _ planeHeight: UnsafeMutablePointer<Int>, _ planeBytesPerRow: UnsafeMutablePointer<Int>, _ releaseCallback: CVPixelBufferReleasePlanarBytesCallback, _ releaseRefCon: UnsafeMutablePointer<Void>, _ pixelBufferAttributes: CFDictionary!, _ pixelBufferOut: UnsafeMutablePointer<Unmanaged<CVPixelBuffer>?>) -> CVReturn
To
func CVPixelBufferCreateWithPlanarBytes(_ allocator: CFAllocator?, _ width: Int, _ height: Int, _ pixelFormatType: OSType, _ dataPtr: UnsafeMutablePointer<Void>, _ dataSize: Int, _ numberOfPlanes: Int, _ planeBaseAddress: UnsafeMutablePointer<UnsafeMutablePointer<Void>>, _ planeWidth: UnsafeMutablePointer<Int>, _ planeHeight: UnsafeMutablePointer<Int>, _ planeBytesPerRow: UnsafeMutablePointer<Int>, _ releaseCallback: CVPixelBufferReleasePlanarBytesCallback?, _ releaseRefCon: UnsafeMutablePointer<Void>, _ pixelBufferAttributes: CFDictionary?, _ pixelBufferOut: UnsafeMutablePointer<CVPixelBuffer?>) -> CVReturn

Declaration
From
func CVPixelBufferFillExtendedPixels(_ pixelBuffer: CVPixelBuffer!) -> CVReturn
To
func CVPixelBufferFillExtendedPixels(_ pixelBuffer: CVPixelBuffer) -> CVReturn

Declaration
From
func CVPixelBufferGetBaseAddress(_ pixelBuffer: CVPixelBuffer!) -> UnsafeMutablePointer<Void>
To
func CVPixelBufferGetBaseAddress(_ pixelBuffer: CVPixelBuffer) -> UnsafeMutablePointer<Void>

Declaration
From
func CVPixelBufferGetBaseAddressOfPlane(_ pixelBuffer: CVPixelBuffer!, _ planeIndex: Int) -> UnsafeMutablePointer<Void>
To
func CVPixelBufferGetBaseAddressOfPlane(_ pixelBuffer: CVPixelBuffer, _ planeIndex: Int) -> UnsafeMutablePointer<Void>

Declaration
From
func CVPixelBufferGetBytesPerRow(_ pixelBuffer: CVPixelBuffer!) -> Int
To
func CVPixelBufferGetBytesPerRow(_ pixelBuffer: CVPixelBuffer) -> Int

Declaration
From
func CVPixelBufferGetBytesPerRowOfPlane(_ pixelBuffer: CVPixelBuffer!, _ planeIndex: Int) -> Int
To
func CVPixelBufferGetBytesPerRowOfPlane(_ pixelBuffer: CVPixelBuffer, _ planeIndex: Int) -> Int

Declaration
From
func CVPixelBufferGetDataSize(_ pixelBuffer: CVPixelBuffer!) -> Int
To
func CVPixelBufferGetDataSize(_ pixelBuffer: CVPixelBuffer) -> Int

Declaration
From
func CVPixelBufferGetExtendedPixels(_ pixelBuffer: CVPixelBuffer!, _ extraColumnsOnLeft: UnsafeMutablePointer<Int>, _ extraColumnsOnRight: UnsafeMutablePointer<Int>, _ extraRowsOnTop: UnsafeMutablePointer<Int>, _ extraRowsOnBottom: UnsafeMutablePointer<Int>)
To
func CVPixelBufferGetExtendedPixels(_ pixelBuffer: CVPixelBuffer, _ extraColumnsOnLeft: UnsafeMutablePointer<Int>, _ extraColumnsOnRight: UnsafeMutablePointer<Int>, _ extraRowsOnTop: UnsafeMutablePointer<Int>, _ extraRowsOnBottom: UnsafeMutablePointer<Int>)

Declaration
From
func CVPixelBufferGetHeight(_ pixelBuffer: CVPixelBuffer!) -> Int
To
func CVPixelBufferGetHeight(_ pixelBuffer: CVPixelBuffer) -> Int

Declaration
From
func CVPixelBufferGetHeightOfPlane(_ pixelBuffer: CVPixelBuffer!, _ planeIndex: Int) -> Int
To
func CVPixelBufferGetHeightOfPlane(_ pixelBuffer: CVPixelBuffer, _ planeIndex: Int) -> Int

Declaration
From
func CVPixelBufferGetIOSurface(_ pixelBuffer: CVPixelBuffer!) -> Unmanaged<IOSurface>!
To
func CVPixelBufferGetIOSurface(_ pixelBuffer: CVPixelBuffer?) -> Unmanaged<IOSurface>?

Declaration
From
func CVPixelBufferGetPixelFormatType(_ pixelBuffer: CVPixelBuffer!) -> OSType
To
func CVPixelBufferGetPixelFormatType(_ pixelBuffer: CVPixelBuffer) -> OSType

Declaration
From
func CVPixelBufferGetPlaneCount(_ pixelBuffer: CVPixelBuffer!) -> Int
To
func CVPixelBufferGetPlaneCount(_ pixelBuffer: CVPixelBuffer) -> Int

Declaration
From
func CVPixelBufferGetWidth(_ pixelBuffer: CVPixelBuffer!) -> Int
To
func CVPixelBufferGetWidth(_ pixelBuffer: CVPixelBuffer) -> Int

Declaration
From
func CVPixelBufferGetWidthOfPlane(_ pixelBuffer: CVPixelBuffer!, _ planeIndex: Int) -> Int
To
func CVPixelBufferGetWidthOfPlane(_ pixelBuffer: CVPixelBuffer, _ planeIndex: Int) -> Int

Declaration
From
func CVPixelBufferIsPlanar(_ pixelBuffer: CVPixelBuffer!) -> Boolean
To
func CVPixelBufferIsPlanar(_ pixelBuffer: CVPixelBuffer) -> Bool

Declaration
From
func CVPixelBufferLockBaseAddress(_ pixelBuffer: CVPixelBuffer!, _ lockFlags: CVOptionFlags) -> CVReturn
To
func CVPixelBufferLockBaseAddress(_ pixelBuffer: CVPixelBuffer, _ lockFlags: CVPixelBufferLockFlags) -> CVReturn

Declaration
From
func CVPixelBufferPoolCreate(_ allocator: CFAllocator!, _ poolAttributes: CFDictionary!, _ pixelBufferAttributes: CFDictionary!, _ poolOut: UnsafeMutablePointer<Unmanaged<CVPixelBufferPool>?>) -> CVReturn
To
func CVPixelBufferPoolCreate(_ allocator: CFAllocator?, _ poolAttributes: CFDictionary?, _ pixelBufferAttributes: CFDictionary?, _ poolOut: UnsafeMutablePointer<CVPixelBufferPool?>) -> CVReturn

Declaration
From
func CVPixelBufferPoolCreatePixelBuffer(_ allocator: CFAllocator!, _ pixelBufferPool: CVPixelBufferPool!, _ pixelBufferOut: UnsafeMutablePointer<Unmanaged<CVPixelBuffer>?>) -> CVReturn
To
func CVPixelBufferPoolCreatePixelBuffer(_ allocator: CFAllocator?, _ pixelBufferPool: CVPixelBufferPool, _ pixelBufferOut: UnsafeMutablePointer<CVPixelBuffer?>) -> CVReturn

Declaration
From
func CVPixelBufferPoolCreatePixelBufferWithAuxAttributes(_ allocator: CFAllocator!, _ pixelBufferPool: CVPixelBufferPool!, _ auxAttributes: CFDictionary!, _ pixelBufferOut: UnsafeMutablePointer<Unmanaged<CVPixelBuffer>?>) -> CVReturn
To
func CVPixelBufferPoolCreatePixelBufferWithAuxAttributes(_ allocator: CFAllocator?, _ pixelBufferPool: CVPixelBufferPool, _ auxAttributes: CFDictionary?, _ pixelBufferOut: UnsafeMutablePointer<CVPixelBuffer?>) -> CVReturn

Declaration
From
func CVPixelBufferPoolGetAttributes(_ pool: CVPixelBufferPool!) -> Unmanaged<CFDictionary>!
To
func CVPixelBufferPoolGetAttributes(_ pool: CVPixelBufferPool) -> Unmanaged<CFDictionary>?

Declaration
From
func CVPixelBufferPoolGetPixelBufferAttributes(_ pool: CVPixelBufferPool!) -> Unmanaged<CFDictionary>!
To
func CVPixelBufferPoolGetPixelBufferAttributes(_ pool: CVPixelBufferPool) -> Unmanaged<CFDictionary>?

Declaration
From
typealias CVPixelBufferReleaseBytesCallback = CFunctionPointer<((UnsafeMutablePointer<Void>, UnsafePointer<Void>) -> Void)>
To
typealias CVPixelBufferReleaseBytesCallback = (UnsafeMutablePointer<Void>, UnsafePointer<Void>) -> Void

Declaration
From
typealias CVPixelBufferReleasePlanarBytesCallback = CFunctionPointer<((UnsafeMutablePointer<Void>, UnsafePointer<Void>, Int, Int, UnsafeMutablePointer<UnsafePointer<Void>>) -> Void)>
To
typealias CVPixelBufferReleasePlanarBytesCallback = (UnsafeMutablePointer<Void>, UnsafePointer<Void>, Int, Int, UnsafeMutablePointer<UnsafePointer<Void>>) -> Void

Declaration
From
func CVPixelBufferUnlockBaseAddress(_ pixelBuffer: CVPixelBuffer!, _ unlockFlags: CVOptionFlags) -> CVReturn
To
func CVPixelBufferUnlockBaseAddress(_ pixelBuffer: CVPixelBuffer, _ unlockFlags: CVPixelBufferLockFlags) -> CVReturn

Declaration
From
func CVPixelFormatDescriptionArrayCreateWithAllPixelFormatTypes(_ allocator: CFAllocator!) -> Unmanaged<CFArray>!
To
func CVPixelFormatDescriptionArrayCreateWithAllPixelFormatTypes(_ allocator: CFAllocator?) -> Unmanaged<CFArray>?

Declaration
From
func CVPixelFormatDescriptionCreateWithPixelFormatType(_ allocator: CFAllocator!, _ pixelFormat: OSType) -> Unmanaged<CFDictionary>!
To
func CVPixelFormatDescriptionCreateWithPixelFormatType(_ allocator: CFAllocator?, _ pixelFormat: OSType) -> Unmanaged<CFDictionary>?

Declaration
From
func CVPixelFormatDescriptionRegisterDescriptionWithPixelFormatType(_ description: CFDictionary!, _ pixelFormat: OSType)
To
func CVPixelFormatDescriptionRegisterDescriptionWithPixelFormatType(_ description: CFDictionary, _ pixelFormat: OSType)

Declaration
From
var kCVAttachmentMode_ShouldNotPropagate: Int { get }
To
var kCVAttachmentMode_ShouldNotPropagate: CVAttachmentMode { get }

Declaration
From
var kCVAttachmentMode_ShouldPropagate: Int { get }
To
var kCVAttachmentMode_ShouldPropagate: CVAttachmentMode { get }

Declaration
From
let kCVBufferMovieTimeKey: CFString!
To
let kCVBufferMovieTimeKey: CFString

Declaration
From
let kCVBufferNonPropagatedAttachmentsKey: CFString!
To
let kCVBufferNonPropagatedAttachmentsKey: CFString

Declaration
From
let kCVBufferPropagatedAttachmentsKey: CFString!
To
let kCVBufferPropagatedAttachmentsKey: CFString

Declaration
From
let kCVBufferTimeScaleKey: CFString!
To
let kCVBufferTimeScaleKey: CFString

Declaration
From
let kCVBufferTimeValueKey: CFString!
To
let kCVBufferTimeValueKey: CFString

Declaration
From
let kCVImageBufferAlphaChannelIsOpaque: CFString!
To
let kCVImageBufferAlphaChannelIsOpaque: CFString

Declaration
From
let kCVImageBufferCGColorSpaceKey: CFString!
To
let kCVImageBufferCGColorSpaceKey: CFString

Declaration
From
let kCVImageBufferChromaLocation_Bottom: CFString!
To
let kCVImageBufferChromaLocation_Bottom: CFString

Declaration
From
let kCVImageBufferChromaLocation_BottomLeft: CFString!
To
let kCVImageBufferChromaLocation_BottomLeft: CFString

Declaration
From
let kCVImageBufferChromaLocation_Center: CFString!
To
let kCVImageBufferChromaLocation_Center: CFString

Declaration
From
let kCVImageBufferChromaLocation_DV420: CFString!
To
let kCVImageBufferChromaLocation_DV420: CFString

Declaration
From
let kCVImageBufferChromaLocation_Left: CFString!
To
let kCVImageBufferChromaLocation_Left: CFString

Declaration
From
let kCVImageBufferChromaLocation_Top: CFString!
To
let kCVImageBufferChromaLocation_Top: CFString

Declaration
From
let kCVImageBufferChromaLocation_TopLeft: CFString!
To
let kCVImageBufferChromaLocation_TopLeft: CFString

Declaration
From
let kCVImageBufferChromaLocationBottomFieldKey: CFString!
To
let kCVImageBufferChromaLocationBottomFieldKey: CFString

Declaration
From
let kCVImageBufferChromaLocationTopFieldKey: CFString!
To
let kCVImageBufferChromaLocationTopFieldKey: CFString

Declaration
From
let kCVImageBufferChromaSubsampling_411: CFString!
To
let kCVImageBufferChromaSubsampling_411: CFString

Declaration
From
let kCVImageBufferChromaSubsampling_420: CFString!
To
let kCVImageBufferChromaSubsampling_420: CFString

Declaration
From
let kCVImageBufferChromaSubsampling_422: CFString!
To
let kCVImageBufferChromaSubsampling_422: CFString

Declaration
From
let kCVImageBufferChromaSubsamplingKey: CFString!
To
let kCVImageBufferChromaSubsamplingKey: CFString

Declaration
From
let kCVImageBufferCleanApertureHeightKey: CFString!
To
let kCVImageBufferCleanApertureHeightKey: CFString

Declaration
From
let kCVImageBufferCleanApertureHorizontalOffsetKey: CFString!
To
let kCVImageBufferCleanApertureHorizontalOffsetKey: CFString

Declaration
From
let kCVImageBufferCleanApertureKey: CFString!
To
let kCVImageBufferCleanApertureKey: CFString

Declaration
From
let kCVImageBufferCleanApertureVerticalOffsetKey: CFString!
To
let kCVImageBufferCleanApertureVerticalOffsetKey: CFString

Declaration
From
let kCVImageBufferCleanApertureWidthKey: CFString!
To
let kCVImageBufferCleanApertureWidthKey: CFString

Declaration
From
let kCVImageBufferColorPrimaries_EBU_3213: CFString!
To
let kCVImageBufferColorPrimaries_EBU_3213: CFString

Declaration
From
let kCVImageBufferColorPrimaries_ITU_R_709_2: CFString!
To
let kCVImageBufferColorPrimaries_ITU_R_709_2: CFString

Declaration
From
let kCVImageBufferColorPrimaries_P22: CFString!
To
let kCVImageBufferColorPrimaries_P22: CFString

Declaration
From
let kCVImageBufferColorPrimaries_SMPTE_C: CFString!
To
let kCVImageBufferColorPrimaries_SMPTE_C: CFString

Declaration
From
let kCVImageBufferColorPrimariesKey: CFString!
To
let kCVImageBufferColorPrimariesKey: CFString

Declaration
From
let kCVImageBufferDisplayDimensionsKey: CFString!
To
let kCVImageBufferDisplayDimensionsKey: CFString

Declaration
From
let kCVImageBufferDisplayHeightKey: CFString!
To
let kCVImageBufferDisplayHeightKey: CFString

Declaration
From
let kCVImageBufferDisplayWidthKey: CFString!
To
let kCVImageBufferDisplayWidthKey: CFString

Declaration
From
let kCVImageBufferFieldCountKey: CFString!
To
let kCVImageBufferFieldCountKey: CFString

Declaration
From
let kCVImageBufferFieldDetailKey: CFString!
To
let kCVImageBufferFieldDetailKey: CFString

Declaration
From
let kCVImageBufferFieldDetailSpatialFirstLineEarly: CFString!
To
let kCVImageBufferFieldDetailSpatialFirstLineEarly: CFString

Declaration
From
let kCVImageBufferFieldDetailSpatialFirstLineLate: CFString!
To
let kCVImageBufferFieldDetailSpatialFirstLineLate: CFString

Declaration
From
let kCVImageBufferFieldDetailTemporalBottomFirst: CFString!
To
let kCVImageBufferFieldDetailTemporalBottomFirst: CFString

Declaration
From
let kCVImageBufferFieldDetailTemporalTopFirst: CFString!
To
let kCVImageBufferFieldDetailTemporalTopFirst: CFString

Declaration
From
let kCVImageBufferGammaLevelKey: CFString!
To
let kCVImageBufferGammaLevelKey: CFString

Declaration
From
let kCVImageBufferICCProfileKey: CFString!
To
let kCVImageBufferICCProfileKey: CFString

Declaration
From
let kCVImageBufferPixelAspectRatioHorizontalSpacingKey: CFString!
To
let kCVImageBufferPixelAspectRatioHorizontalSpacingKey: CFString

Declaration
From
let kCVImageBufferPixelAspectRatioKey: CFString!
To
let kCVImageBufferPixelAspectRatioKey: CFString

Declaration
From
let kCVImageBufferPixelAspectRatioVerticalSpacingKey: CFString!
To
let kCVImageBufferPixelAspectRatioVerticalSpacingKey: CFString

Declaration
From
let kCVImageBufferPreferredCleanApertureKey: CFString!
To
let kCVImageBufferPreferredCleanApertureKey: CFString

Declaration
From
let kCVImageBufferTransferFunction_ITU_R_709_2: CFString!
To
let kCVImageBufferTransferFunction_ITU_R_709_2: CFString

Declaration
From
let kCVImageBufferTransferFunction_SMPTE_240M_1995: CFString!
To
let kCVImageBufferTransferFunction_SMPTE_240M_1995: CFString

Declaration
From
let kCVImageBufferTransferFunction_UseGamma: CFString!
To
let kCVImageBufferTransferFunction_UseGamma: CFString

Declaration
From
let kCVImageBufferTransferFunctionKey: CFString!
To
let kCVImageBufferTransferFunctionKey: CFString

Declaration
From
let kCVImageBufferYCbCrMatrix_ITU_R_601_4: CFString!
To
let kCVImageBufferYCbCrMatrix_ITU_R_601_4: CFString

Declaration
From
let kCVImageBufferYCbCrMatrix_ITU_R_709_2: CFString!
To
let kCVImageBufferYCbCrMatrix_ITU_R_709_2: CFString

Declaration
From
let kCVImageBufferYCbCrMatrix_SMPTE_240M_1995: CFString!
To
let kCVImageBufferYCbCrMatrix_SMPTE_240M_1995: CFString

Declaration
From
let kCVImageBufferYCbCrMatrixKey: CFString!
To
let kCVImageBufferYCbCrMatrixKey: CFString

Declaration
From
let kCVOpenGLBufferHeight: CFString!
To
let kCVOpenGLBufferHeight: CFString

Declaration
From
let kCVOpenGLBufferInternalFormat: CFString!
To
let kCVOpenGLBufferInternalFormat: CFString

Declaration
From
let kCVOpenGLBufferMaximumMipmapLevel: CFString!
To
let kCVOpenGLBufferMaximumMipmapLevel: CFString

Declaration
From
let kCVOpenGLBufferPoolMaximumBufferAgeKey: CFString!
To
let kCVOpenGLBufferPoolMaximumBufferAgeKey: CFString

Declaration
From
let kCVOpenGLBufferPoolMinimumBufferCountKey: CFString!
To
let kCVOpenGLBufferPoolMinimumBufferCountKey: CFString

Declaration
From
let kCVOpenGLBufferTarget: CFString!
To
let kCVOpenGLBufferTarget: CFString

Declaration
From
let kCVOpenGLBufferWidth: CFString!
To
let kCVOpenGLBufferWidth: CFString

Declaration
From
let kCVOpenGLTextureCacheChromaSamplingModeAutomatic: CFString!
To
let kCVOpenGLTextureCacheChromaSamplingModeAutomatic: CFString

Declaration
From
let kCVOpenGLTextureCacheChromaSamplingModeBestPerformance: CFString!
To
let kCVOpenGLTextureCacheChromaSamplingModeBestPerformance: CFString

Declaration
From
let kCVOpenGLTextureCacheChromaSamplingModeHighestQuality: CFString!
To
let kCVOpenGLTextureCacheChromaSamplingModeHighestQuality: CFString

Declaration
From
let kCVOpenGLTextureCacheChromaSamplingModeKey: CFString!
To
let kCVOpenGLTextureCacheChromaSamplingModeKey: CFString

Declaration
From
let kCVPixelBufferBytesPerRowAlignmentKey: CFString!
To
let kCVPixelBufferBytesPerRowAlignmentKey: CFString

Declaration
From
let kCVPixelBufferCGBitmapContextCompatibilityKey: CFString!
To
let kCVPixelBufferCGBitmapContextCompatibilityKey: CFString

Declaration
From
let kCVPixelBufferCGImageCompatibilityKey: CFString!
To
let kCVPixelBufferCGImageCompatibilityKey: CFString

Declaration
From
let kCVPixelBufferExtendedPixelsBottomKey: CFString!
To
let kCVPixelBufferExtendedPixelsBottomKey: CFString

Declaration
From
let kCVPixelBufferExtendedPixelsLeftKey: CFString!
To
let kCVPixelBufferExtendedPixelsLeftKey: CFString

Declaration
From
let kCVPixelBufferExtendedPixelsRightKey: CFString!
To
let kCVPixelBufferExtendedPixelsRightKey: CFString

Declaration
From
let kCVPixelBufferExtendedPixelsTopKey: CFString!
To
let kCVPixelBufferExtendedPixelsTopKey: CFString

Declaration
From
let kCVPixelBufferHeightKey: CFString!
To
let kCVPixelBufferHeightKey: CFString

Declaration
From
let kCVPixelBufferIOSurfaceCoreAnimationCompatibilityKey: CFString!
To
let kCVPixelBufferIOSurfaceCoreAnimationCompatibilityKey: CFString

Declaration
From
let kCVPixelBufferIOSurfaceOpenGLFBOCompatibilityKey: CFString!
To
let kCVPixelBufferIOSurfaceOpenGLFBOCompatibilityKey: CFString

Declaration
From
let kCVPixelBufferIOSurfaceOpenGLTextureCompatibilityKey: CFString!
To
let kCVPixelBufferIOSurfaceOpenGLTextureCompatibilityKey: CFString

Declaration
From
let kCVPixelBufferIOSurfacePropertiesKey: CFString!
To
let kCVPixelBufferIOSurfacePropertiesKey: CFString

Introduction
FromOS X 10.10
ToOS X 10.11

Declaration
From
let kCVPixelBufferMemoryAllocatorKey: CFString!
To
let kCVPixelBufferMemoryAllocatorKey: CFString

Declaration
From
let kCVPixelBufferOpenGLCompatibilityKey: CFString!
To
let kCVPixelBufferOpenGLCompatibilityKey: CFString

Declaration
From
let kCVPixelBufferPixelFormatTypeKey: CFString!
To
let kCVPixelBufferPixelFormatTypeKey: CFString

Declaration
From
let kCVPixelBufferPlaneAlignmentKey: CFString!
To
let kCVPixelBufferPlaneAlignmentKey: CFString

Declaration
From
let kCVPixelBufferPoolAllocationThresholdKey: CFString!
To
let kCVPixelBufferPoolAllocationThresholdKey: CFString

Declaration
From
let kCVPixelBufferPoolFreeBufferNotification: CFString!
To
let kCVPixelBufferPoolFreeBufferNotification: CFString

Declaration
From
let kCVPixelBufferPoolMaximumBufferAgeKey: CFString!
To
let kCVPixelBufferPoolMaximumBufferAgeKey: CFString

Declaration
From
let kCVPixelBufferPoolMinimumBufferCountKey: CFString!
To
let kCVPixelBufferPoolMinimumBufferCountKey: CFString

Declaration
From
let kCVPixelBufferWidthKey: CFString!
To
let kCVPixelBufferWidthKey: CFString

Declaration
From
let kCVPixelFormatBitsPerBlock: CFString!
To
let kCVPixelFormatBitsPerBlock: CFString

Declaration
From
let kCVPixelFormatBlackBlock: CFString!
To
let kCVPixelFormatBlackBlock: CFString

Declaration
From
let kCVPixelFormatBlockHeight: CFString!
To
let kCVPixelFormatBlockHeight: CFString

Declaration
From
let kCVPixelFormatBlockHorizontalAlignment: CFString!
To
let kCVPixelFormatBlockHorizontalAlignment: CFString

Declaration
From
let kCVPixelFormatBlockVerticalAlignment: CFString!
To
let kCVPixelFormatBlockVerticalAlignment: CFString

Declaration
From
let kCVPixelFormatBlockWidth: CFString!
To
let kCVPixelFormatBlockWidth: CFString

Declaration
From
let kCVPixelFormatCGBitmapContextCompatibility: CFString!
To
let kCVPixelFormatCGBitmapContextCompatibility: CFString

Declaration
From
let kCVPixelFormatCGBitmapInfo: CFString!
To
let kCVPixelFormatCGBitmapInfo: CFString

Declaration
From
let kCVPixelFormatCGImageCompatibility: CFString!
To
let kCVPixelFormatCGImageCompatibility: CFString

Declaration
From
let kCVPixelFormatCodecType: CFString!
To
let kCVPixelFormatCodecType: CFString

Declaration
From
let kCVPixelFormatConstant: CFString!
To
let kCVPixelFormatConstant: CFString

Declaration
From
let kCVPixelFormatContainsAlpha: CFString!
To
let kCVPixelFormatContainsAlpha: CFString

Declaration
From
let kCVPixelFormatContainsRGB: CFString!
To
let kCVPixelFormatContainsRGB: CFString

Declaration
From
let kCVPixelFormatContainsYCbCr: CFString!
To
let kCVPixelFormatContainsYCbCr: CFString

Declaration
From
let kCVPixelFormatFillExtendedPixelsCallback: CFString!
To
let kCVPixelFormatFillExtendedPixelsCallback: CFString

Declaration
From
let kCVPixelFormatFourCC: CFString!
To
let kCVPixelFormatFourCC: CFString

Declaration
From
let kCVPixelFormatHorizontalSubsampling: CFString!
To
let kCVPixelFormatHorizontalSubsampling: CFString

Declaration
From
let kCVPixelFormatName: CFString!
To
let kCVPixelFormatName: CFString

Declaration
From
let kCVPixelFormatOpenGLCompatibility: CFString!
To
let kCVPixelFormatOpenGLCompatibility: CFString

Declaration
From
let kCVPixelFormatOpenGLFormat: CFString!
To
let kCVPixelFormatOpenGLFormat: CFString

Declaration
From
let kCVPixelFormatOpenGLInternalFormat: CFString!
To
let kCVPixelFormatOpenGLInternalFormat: CFString

Declaration
From
let kCVPixelFormatOpenGLType: CFString!
To
let kCVPixelFormatOpenGLType: CFString

Declaration
From
let kCVPixelFormatPlanes: CFString!
To
let kCVPixelFormatPlanes: CFString

Declaration
From
let kCVPixelFormatQDCompatibility: CFString!
To
let kCVPixelFormatQDCompatibility: CFString

Declaration
From
var kCVPixelFormatType_128RGBAFloat: Int { get }
To
var kCVPixelFormatType_128RGBAFloat: OSType { get }

Declaration
From
var kCVPixelFormatType_16BE555: Int { get }
To
var kCVPixelFormatType_16BE555: OSType { get }

Declaration
From
var kCVPixelFormatType_16BE565: Int { get }
To
var kCVPixelFormatType_16BE565: OSType { get }

Declaration
From
var kCVPixelFormatType_16Gray: Int { get }
To
var kCVPixelFormatType_16Gray: OSType { get }

Declaration
From
var kCVPixelFormatType_16LE555: Int { get }
To
var kCVPixelFormatType_16LE555: OSType { get }

Declaration
From
var kCVPixelFormatType_16LE5551: Int { get }
To
var kCVPixelFormatType_16LE5551: OSType { get }

Declaration
From
var kCVPixelFormatType_16LE565: Int { get }
To
var kCVPixelFormatType_16LE565: OSType { get }

Declaration
From
var kCVPixelFormatType_1IndexedGray_WhiteIsZero: Int { get }
To
var kCVPixelFormatType_1IndexedGray_WhiteIsZero: OSType { get }

Declaration
From
var kCVPixelFormatType_1Monochrome: Int { get }
To
var kCVPixelFormatType_1Monochrome: OSType { get }

Declaration
From
var kCVPixelFormatType_24BGR: Int { get }
To
var kCVPixelFormatType_24BGR: OSType { get }

Declaration
From
var kCVPixelFormatType_24RGB: Int { get }
To
var kCVPixelFormatType_24RGB: OSType { get }

Declaration
From
var kCVPixelFormatType_2Indexed: Int { get }
To
var kCVPixelFormatType_2Indexed: OSType { get }

Declaration
From
var kCVPixelFormatType_2IndexedGray_WhiteIsZero: Int { get }
To
var kCVPixelFormatType_2IndexedGray_WhiteIsZero: OSType { get }

Declaration
From
var kCVPixelFormatType_30RGB: Int { get }
To
var kCVPixelFormatType_30RGB: OSType { get }

Declaration
From
var kCVPixelFormatType_32ABGR: Int { get }
To
var kCVPixelFormatType_32ABGR: OSType { get }

Declaration
From
var kCVPixelFormatType_32AlphaGray: Int { get }
To
var kCVPixelFormatType_32AlphaGray: OSType { get }

Declaration
From
var kCVPixelFormatType_32ARGB: Int { get }
To
var kCVPixelFormatType_32ARGB: OSType { get }

Declaration
From
var kCVPixelFormatType_32BGRA: Int { get }
To
var kCVPixelFormatType_32BGRA: OSType { get }

Declaration
From
var kCVPixelFormatType_32RGBA: Int { get }
To
var kCVPixelFormatType_32RGBA: OSType { get }

Declaration
From
var kCVPixelFormatType_420YpCbCr8BiPlanarFullRange: Int { get }
To
var kCVPixelFormatType_420YpCbCr8BiPlanarFullRange: OSType { get }

Declaration
From
var kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange: Int { get }
To
var kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange: OSType { get }

Declaration
From
var kCVPixelFormatType_420YpCbCr8Planar: Int { get }
To
var kCVPixelFormatType_420YpCbCr8Planar: OSType { get }

Declaration
From
var kCVPixelFormatType_420YpCbCr8PlanarFullRange: Int { get }
To
var kCVPixelFormatType_420YpCbCr8PlanarFullRange: OSType { get }

Declaration
From
var kCVPixelFormatType_422YpCbCr10: Int { get }
To
var kCVPixelFormatType_422YpCbCr10: OSType { get }

Declaration
From
var kCVPixelFormatType_422YpCbCr16: Int { get }
To
var kCVPixelFormatType_422YpCbCr16: OSType { get }

Declaration
From
var kCVPixelFormatType_422YpCbCr8: Int { get }
To
var kCVPixelFormatType_422YpCbCr8: OSType { get }

Declaration
From
var kCVPixelFormatType_422YpCbCr8_yuvs: Int { get }
To
var kCVPixelFormatType_422YpCbCr8_yuvs: OSType { get }

Declaration
From
var kCVPixelFormatType_422YpCbCr8FullRange: Int { get }
To
var kCVPixelFormatType_422YpCbCr8FullRange: OSType { get }

Declaration
From
var kCVPixelFormatType_422YpCbCr_4A_8BiPlanar: Int { get }
To
var kCVPixelFormatType_422YpCbCr_4A_8BiPlanar: OSType { get }

Declaration
From
var kCVPixelFormatType_4444AYpCbCr16: Int { get }
To
var kCVPixelFormatType_4444AYpCbCr16: OSType { get }

Declaration
From
var kCVPixelFormatType_4444AYpCbCr8: Int { get }
To
var kCVPixelFormatType_4444AYpCbCr8: OSType { get }

Declaration
From
var kCVPixelFormatType_4444YpCbCrA8: Int { get }
To
var kCVPixelFormatType_4444YpCbCrA8: OSType { get }

Declaration
From
var kCVPixelFormatType_4444YpCbCrA8R: Int { get }
To
var kCVPixelFormatType_4444YpCbCrA8R: OSType { get }

Declaration
From
var kCVPixelFormatType_444YpCbCr10: Int { get }
To
var kCVPixelFormatType_444YpCbCr10: OSType { get }

Declaration
From
var kCVPixelFormatType_444YpCbCr8: Int { get }
To
var kCVPixelFormatType_444YpCbCr8: OSType { get }

Declaration
From
var kCVPixelFormatType_48RGB: Int { get }
To
var kCVPixelFormatType_48RGB: OSType { get }

Declaration
From
var kCVPixelFormatType_4Indexed: Int { get }
To
var kCVPixelFormatType_4Indexed: OSType { get }

Declaration
From
var kCVPixelFormatType_4IndexedGray_WhiteIsZero: Int { get }
To
var kCVPixelFormatType_4IndexedGray_WhiteIsZero: OSType { get }

Declaration
From
var kCVPixelFormatType_64ARGB: Int { get }
To
var kCVPixelFormatType_64ARGB: OSType { get }

Declaration
From
var kCVPixelFormatType_64RGBAHalf: Int { get }
To
var kCVPixelFormatType_64RGBAHalf: OSType { get }

Declaration
From
var kCVPixelFormatType_8Indexed: Int { get }
To
var kCVPixelFormatType_8Indexed: OSType { get }

Declaration
From
var kCVPixelFormatType_8IndexedGray_WhiteIsZero: Int { get }
To
var kCVPixelFormatType_8IndexedGray_WhiteIsZero: OSType { get }

Declaration
From
var kCVPixelFormatType_OneComponent16Half: Int { get }
To
var kCVPixelFormatType_OneComponent16Half: OSType { get }

Declaration
From
var kCVPixelFormatType_OneComponent32Float: Int { get }
To
var kCVPixelFormatType_OneComponent32Float: OSType { get }

Declaration
From
var kCVPixelFormatType_OneComponent8: Int { get }
To
var kCVPixelFormatType_OneComponent8: OSType { get }

Declaration
From
var kCVPixelFormatType_TwoComponent16Half: Int { get }
To
var kCVPixelFormatType_TwoComponent16Half: OSType { get }

Declaration
From
var kCVPixelFormatType_TwoComponent32Float: Int { get }
To
var kCVPixelFormatType_TwoComponent32Float: OSType { get }

Declaration
From
var kCVPixelFormatType_TwoComponent8: Int { get }
To
var kCVPixelFormatType_TwoComponent8: OSType { get }

Declaration
From
let kCVPixelFormatVerticalSubsampling: CFString!
To
let kCVPixelFormatVerticalSubsampling: CFString

DeclarationIntroduction
From
var kCVReturnAllocationFailed: _CVReturn { get }
OS X 10.10
To
var kCVReturnAllocationFailed: CVReturn { get }
OS X 10.11

DeclarationIntroduction
From
var kCVReturnDisplayLinkAlreadyRunning: _CVReturn { get }
OS X 10.10
To
var kCVReturnDisplayLinkAlreadyRunning: CVReturn { get }
OS X 10.11

DeclarationIntroduction
From
var kCVReturnDisplayLinkCallbacksNotSet: _CVReturn { get }
OS X 10.10
To
var kCVReturnDisplayLinkCallbacksNotSet: CVReturn { get }
OS X 10.11

DeclarationIntroduction
From
var kCVReturnDisplayLinkNotRunning: _CVReturn { get }
OS X 10.10
To
var kCVReturnDisplayLinkNotRunning: CVReturn { get }
OS X 10.11

DeclarationIntroduction
From
var kCVReturnError: _CVReturn { get }
OS X 10.10
To
var kCVReturnError: CVReturn { get }
OS X 10.11

DeclarationIntroduction
From
var kCVReturnFirst: _CVReturn { get }
OS X 10.10
To
var kCVReturnFirst: CVReturn { get }
OS X 10.11

DeclarationIntroduction
From
var kCVReturnInvalidArgument: _CVReturn { get }
OS X 10.10
To
var kCVReturnInvalidArgument: CVReturn { get }
OS X 10.11

DeclarationIntroduction
From
var kCVReturnInvalidDisplay: _CVReturn { get }
OS X 10.10
To
var kCVReturnInvalidDisplay: CVReturn { get }
OS X 10.11

DeclarationIntroduction
From
var kCVReturnInvalidPixelBufferAttributes: _CVReturn { get }
OS X 10.10
To
var kCVReturnInvalidPixelBufferAttributes: CVReturn { get }
OS X 10.11

DeclarationIntroduction
From
var kCVReturnInvalidPixelFormat: _CVReturn { get }
OS X 10.10
To
var kCVReturnInvalidPixelFormat: CVReturn { get }
OS X 10.11

DeclarationIntroduction
From
var kCVReturnInvalidPoolAttributes: _CVReturn { get }
OS X 10.10
To
var kCVReturnInvalidPoolAttributes: CVReturn { get }
OS X 10.11

DeclarationIntroduction
From
var kCVReturnInvalidSize: _CVReturn { get }
OS X 10.10
To
var kCVReturnInvalidSize: CVReturn { get }
OS X 10.11

Modified kCVReturnLast
DeclarationIntroduction
From
var kCVReturnLast: _CVReturn { get }
OS X 10.10
To
var kCVReturnLast: CVReturn { get }
OS X 10.11

DeclarationIntroduction
From
var kCVReturnPixelBufferNotMetalCompatible: _CVReturn { get }
OS X 10.10
To
var kCVReturnPixelBufferNotMetalCompatible: CVReturn { get }
OS X 10.11

DeclarationIntroduction
From
var kCVReturnPixelBufferNotOpenGLCompatible: _CVReturn { get }
OS X 10.10
To
var kCVReturnPixelBufferNotOpenGLCompatible: CVReturn { get }
OS X 10.11

DeclarationIntroduction
From
var kCVReturnPoolAllocationFailed: _CVReturn { get }
OS X 10.10
To
var kCVReturnPoolAllocationFailed: CVReturn { get }
OS X 10.11

DeclarationIntroduction
From
var kCVReturnSuccess: _CVReturn { get }
OS X 10.10
To
var kCVReturnSuccess: CVReturn { get }
OS X 10.11

DeclarationIntroduction
From
var kCVReturnWouldExceedAllocationThreshold: _CVReturn { get }
OS X 10.10
To
var kCVReturnWouldExceedAllocationThreshold: CVReturn { get }
OS X 10.11