CoreVideo Changes for Swift
CoreVideo
Removed CVFillExtendedPixelsCallBackData.init(version: CFIndex, fillCallBack: CVFillExtendedPixelsCallBack, refCon: UnsafeMutablePointer<Void>)
Removed CVPixelBufferLockFlags [struct]
Removed CVPixelBufferLockFlags.init(_: UInt32)
Removed CVPixelBufferLockFlags.value
Added CVFillExtendedPixelsCallBackData.init(version: CFIndex, fillCallBack: CVFillExtendedPixelsCallBack?, refCon: UnsafeMutablePointer<Void>)
Added COREVIDEO_DECLARE_NULLABILITY
Added CVPixelBufferLockFlags
Added kCVReturnUnsupported
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) |
Modified CVFillExtendedPixelsCallBack
Declaration | |
---|---|
From | typealias CVFillExtendedPixelsCallBack = CFunctionPointer<((CVPixelBuffer!, UnsafeMutablePointer<Void>) -> Boolean)> |
To | typealias CVFillExtendedPixelsCallBack = (CVPixelBuffer, UnsafeMutablePointer<Void>) -> DarwinBoolean |
Declaration | |
---|---|
From | func CVImageBufferGetCleanRect(_ imageBuffer: CVImageBuffer!) -> CGRect |
To | func CVImageBufferGetCleanRect(_ imageBuffer: CVImageBuffer) -> CGRect |
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 CVMetalTextureCacheCreate(_ allocator: CFAllocator!, _ cacheAttributes: CFDictionary!, _ metalDevice: MTLDevice!, _ textureAttributes: CFDictionary!, _ cacheOut: UnsafeMutablePointer<Unmanaged<CVMetalTextureCache>?>) -> CVReturn |
To | func CVMetalTextureCacheCreate(_ allocator: CFAllocator?, _ cacheAttributes: CFDictionary?, _ metalDevice: MTLDevice, _ textureAttributes: CFDictionary?, _ cacheOut: UnsafeMutablePointer<Unmanaged<CVMetalTextureCache>?>) -> CVReturn |
Declaration | |
---|---|
From | func CVMetalTextureCacheCreateTextureFromImage(_ allocator: CFAllocator!, _ textureCache: CVMetalTextureCache!, _ sourceImage: CVImageBuffer!, _ textureAttributes: CFDictionary!, _ pixelFormat: MTLPixelFormat, _ width: Int, _ height: Int, _ planeIndex: Int, _ textureOut: UnsafeMutablePointer<Unmanaged<CVMetalTexture>?>) -> CVReturn |
To | func CVMetalTextureCacheCreateTextureFromImage(_ allocator: CFAllocator?, _ textureCache: CVMetalTextureCache, _ sourceImage: CVImageBuffer, _ textureAttributes: CFDictionary?, _ pixelFormat: MTLPixelFormat, _ width: Int, _ height: Int, _ planeIndex: Int, _ textureOut: UnsafeMutablePointer<Unmanaged<CVMetalTexture>?>) -> CVReturn |
Declaration | |
---|---|
From | func CVMetalTextureCacheFlush(_ textureCache: CVMetalTextureCache!, _ options: CVOptionFlags) |
To | func CVMetalTextureCacheFlush(_ textureCache: CVMetalTextureCache, _ options: CVOptionFlags) |
Declaration | |
---|---|
From | func CVMetalTextureGetCleanTexCoords(_ image: CVMetalTexture!, _ lowerLeft: UnsafeMutablePointer<Float>, _ lowerRight: UnsafeMutablePointer<Float>, _ upperRight: UnsafeMutablePointer<Float>, _ upperLeft: UnsafeMutablePointer<Float>) |
To | func CVMetalTextureGetCleanTexCoords(_ image: CVMetalTexture, _ lowerLeft: UnsafeMutablePointer<Float>, _ lowerRight: UnsafeMutablePointer<Float>, _ upperRight: UnsafeMutablePointer<Float>, _ upperLeft: UnsafeMutablePointer<Float>) |
Declaration | |
---|---|
From | func CVMetalTextureGetTexture(_ image: CVMetalTexture!) -> MTLTexture! |
To | func CVMetalTextureGetTexture(_ image: CVMetalTexture) -> MTLTexture? |
Declaration | |
---|---|
From | func CVMetalTextureIsFlipped(_ image: CVMetalTexture!) -> Boolean |
To | func CVMetalTextureIsFlipped(_ image: CVMetalTexture) -> Bool |
Declaration | |
---|---|
From | func CVOpenGLESTextureCacheCreate(_ allocator: CFAllocator!, _ cacheAttributes: CFDictionary!, _ eaglContext: CVEAGLContext!, _ textureAttributes: CFDictionary!, _ cacheOut: UnsafeMutablePointer<Unmanaged<CVOpenGLESTextureCache>?>) -> CVReturn |
To | func CVOpenGLESTextureCacheCreate(_ allocator: CFAllocator?, _ cacheAttributes: CFDictionary?, _ eaglContext: CVEAGLContext, _ textureAttributes: CFDictionary?, _ cacheOut: UnsafeMutablePointer<CVOpenGLESTextureCache?>) -> CVReturn |
Declaration | |
---|---|
From | func CVOpenGLESTextureCacheCreateTextureFromImage(_ allocator: CFAllocator!, _ textureCache: CVOpenGLESTextureCache!, _ sourceImage: CVImageBuffer!, _ textureAttributes: CFDictionary!, _ target: GLenum, _ internalFormat: GLint, _ width: GLsizei, _ height: GLsizei, _ format: GLenum, _ type: GLenum, _ planeIndex: Int, _ textureOut: UnsafeMutablePointer<Unmanaged<CVOpenGLESTexture>?>) -> CVReturn |
To | func CVOpenGLESTextureCacheCreateTextureFromImage(_ allocator: CFAllocator?, _ textureCache: CVOpenGLESTextureCache, _ sourceImage: CVImageBuffer, _ textureAttributes: CFDictionary?, _ target: GLenum, _ internalFormat: GLint, _ width: GLsizei, _ height: GLsizei, _ format: GLenum, _ type: GLenum, _ planeIndex: Int, _ textureOut: UnsafeMutablePointer<CVOpenGLESTexture?>) -> CVReturn |
Declaration | |
---|---|
From | func CVOpenGLESTextureCacheFlush(_ textureCache: CVOpenGLESTextureCache!, _ options: CVOptionFlags) |
To | func CVOpenGLESTextureCacheFlush(_ textureCache: CVOpenGLESTextureCache, _ options: CVOptionFlags) |
Declaration | |
---|---|
From | func CVOpenGLESTextureGetCleanTexCoords(_ image: CVOpenGLESTexture!, _ lowerLeft: UnsafeMutablePointer<GLfloat>, _ lowerRight: UnsafeMutablePointer<GLfloat>, _ upperRight: UnsafeMutablePointer<GLfloat>, _ upperLeft: UnsafeMutablePointer<GLfloat>) |
To | func CVOpenGLESTextureGetCleanTexCoords(_ image: CVOpenGLESTexture, _ lowerLeft: UnsafeMutablePointer<GLfloat>, _ lowerRight: UnsafeMutablePointer<GLfloat>, _ upperRight: UnsafeMutablePointer<GLfloat>, _ upperLeft: UnsafeMutablePointer<GLfloat>) |
Declaration | |
---|---|
From | func CVOpenGLESTextureGetName(_ image: CVOpenGLESTexture!) -> GLuint |
To | func CVOpenGLESTextureGetName(_ image: CVOpenGLESTexture) -> GLuint |
Declaration | |
---|---|
From | func CVOpenGLESTextureGetTarget(_ image: CVOpenGLESTexture!) -> GLenum |
To | func CVOpenGLESTextureGetTarget(_ image: CVOpenGLESTexture) -> GLenum |
Declaration | |
---|---|
From | func CVOpenGLESTextureIsFlipped(_ image: CVOpenGLESTexture!) -> Boolean |
To | func CVOpenGLESTextureIsFlipped(_ image: CVOpenGLESTexture) -> 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 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 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>? |
Modified CVPixelBufferPoolGetPixelBufferAttributes(_: CVPixelBufferPool) -> Unmanaged<CFDictionary>?
Declaration | |
---|---|
From | func CVPixelBufferPoolGetPixelBufferAttributes(_ pool: CVPixelBufferPool!) -> Unmanaged<CFDictionary>! |
To | func CVPixelBufferPoolGetPixelBufferAttributes(_ pool: CVPixelBufferPool) -> Unmanaged<CFDictionary>? |
Modified CVPixelBufferReleaseBytesCallback
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 |
Modified CVPixelFormatDescriptionArrayCreateWithAllPixelFormatTypes(_: CFAllocator?) -> Unmanaged<CFArray>?
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) |
Modified kCVAttachmentMode_ShouldNotPropagate
Declaration | |
---|---|
From | var kCVAttachmentMode_ShouldNotPropagate: Int { get } |
To | var kCVAttachmentMode_ShouldNotPropagate: CVAttachmentMode { get } |
Modified kCVAttachmentMode_ShouldPropagate
Declaration | |
---|---|
From | var kCVAttachmentMode_ShouldPropagate: Int { get } |
To | var kCVAttachmentMode_ShouldPropagate: CVAttachmentMode { get } |
Modified kCVBufferMovieTimeKey
Declaration | |
---|---|
From | let kCVBufferMovieTimeKey: CFString! |
To | let kCVBufferMovieTimeKey: CFString |
Modified kCVBufferNonPropagatedAttachmentsKey
Declaration | |
---|---|
From | let kCVBufferNonPropagatedAttachmentsKey: CFString! |
To | let kCVBufferNonPropagatedAttachmentsKey: CFString |
Modified kCVBufferPropagatedAttachmentsKey
Declaration | |
---|---|
From | let kCVBufferPropagatedAttachmentsKey: CFString! |
To | let kCVBufferPropagatedAttachmentsKey: CFString |
Modified kCVBufferTimeScaleKey
Declaration | |
---|---|
From | let kCVBufferTimeScaleKey: CFString! |
To | let kCVBufferTimeScaleKey: CFString |
Modified kCVBufferTimeValueKey
Declaration | |
---|---|
From | let kCVBufferTimeValueKey: CFString! |
To | let kCVBufferTimeValueKey: CFString |
Modified kCVImageBufferAlphaChannelIsOpaque
Declaration | |
---|---|
From | let kCVImageBufferAlphaChannelIsOpaque: CFString! |
To | let kCVImageBufferAlphaChannelIsOpaque: CFString |
Modified kCVImageBufferCGColorSpaceKey
Declaration | |
---|---|
From | let kCVImageBufferCGColorSpaceKey: CFString! |
To | let kCVImageBufferCGColorSpaceKey: CFString |
Modified kCVImageBufferChromaLocation_Bottom
Declaration | |
---|---|
From | let kCVImageBufferChromaLocation_Bottom: CFString! |
To | let kCVImageBufferChromaLocation_Bottom: CFString |
Declaration | |
---|---|
From | let kCVImageBufferChromaLocation_BottomLeft: CFString! |
To | let kCVImageBufferChromaLocation_BottomLeft: CFString |
Modified kCVImageBufferChromaLocation_Center
Declaration | |
---|---|
From | let kCVImageBufferChromaLocation_Center: CFString! |
To | let kCVImageBufferChromaLocation_Center: CFString |
Modified kCVImageBufferChromaLocation_DV420
Declaration | |
---|---|
From | let kCVImageBufferChromaLocation_DV420: CFString! |
To | let kCVImageBufferChromaLocation_DV420: CFString |
Modified kCVImageBufferChromaLocation_Left
Declaration | |
---|---|
From | let kCVImageBufferChromaLocation_Left: CFString! |
To | let kCVImageBufferChromaLocation_Left: CFString |
Modified kCVImageBufferChromaLocation_Top
Declaration | |
---|---|
From | let kCVImageBufferChromaLocation_Top: CFString! |
To | let kCVImageBufferChromaLocation_Top: CFString |
Modified kCVImageBufferChromaLocation_TopLeft
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 |
Modified kCVImageBufferChromaSubsampling_411
Declaration | |
---|---|
From | let kCVImageBufferChromaSubsampling_411: CFString! |
To | let kCVImageBufferChromaSubsampling_411: CFString |
Modified kCVImageBufferChromaSubsampling_420
Declaration | |
---|---|
From | let kCVImageBufferChromaSubsampling_420: CFString! |
To | let kCVImageBufferChromaSubsampling_420: CFString |
Modified kCVImageBufferChromaSubsampling_422
Declaration | |
---|---|
From | let kCVImageBufferChromaSubsampling_422: CFString! |
To | let kCVImageBufferChromaSubsampling_422: CFString |
Modified kCVImageBufferChromaSubsamplingKey
Declaration | |
---|---|
From | let kCVImageBufferChromaSubsamplingKey: CFString! |
To | let kCVImageBufferChromaSubsamplingKey: CFString |
Modified kCVImageBufferCleanApertureHeightKey
Declaration | |
---|---|
From | let kCVImageBufferCleanApertureHeightKey: CFString! |
To | let kCVImageBufferCleanApertureHeightKey: CFString |
Declaration | |
---|---|
From | let kCVImageBufferCleanApertureHorizontalOffsetKey: CFString! |
To | let kCVImageBufferCleanApertureHorizontalOffsetKey: CFString |
Modified kCVImageBufferCleanApertureKey
Declaration | |
---|---|
From | let kCVImageBufferCleanApertureKey: CFString! |
To | let kCVImageBufferCleanApertureKey: CFString |
Declaration | |
---|---|
From | let kCVImageBufferCleanApertureVerticalOffsetKey: CFString! |
To | let kCVImageBufferCleanApertureVerticalOffsetKey: CFString |
Modified kCVImageBufferCleanApertureWidthKey
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 |
Modified kCVImageBufferColorPrimaries_P22
Declaration | |
---|---|
From | let kCVImageBufferColorPrimaries_P22: CFString! |
To | let kCVImageBufferColorPrimaries_P22: CFString |
Modified kCVImageBufferColorPrimaries_SMPTE_C
Declaration | |
---|---|
From | let kCVImageBufferColorPrimaries_SMPTE_C: CFString! |
To | let kCVImageBufferColorPrimaries_SMPTE_C: CFString |
Modified kCVImageBufferColorPrimariesKey
Declaration | |
---|---|
From | let kCVImageBufferColorPrimariesKey: CFString! |
To | let kCVImageBufferColorPrimariesKey: CFString |
Modified kCVImageBufferDisplayDimensionsKey
Declaration | |
---|---|
From | let kCVImageBufferDisplayDimensionsKey: CFString! |
To | let kCVImageBufferDisplayDimensionsKey: CFString |
Modified kCVImageBufferDisplayHeightKey
Declaration | |
---|---|
From | let kCVImageBufferDisplayHeightKey: CFString! |
To | let kCVImageBufferDisplayHeightKey: CFString |
Modified kCVImageBufferDisplayWidthKey
Declaration | |
---|---|
From | let kCVImageBufferDisplayWidthKey: CFString! |
To | let kCVImageBufferDisplayWidthKey: CFString |
Modified kCVImageBufferFieldCountKey
Declaration | |
---|---|
From | let kCVImageBufferFieldCountKey: CFString! |
To | let kCVImageBufferFieldCountKey: CFString |
Modified kCVImageBufferFieldDetailKey
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 |
Modified kCVImageBufferGammaLevelKey
Declaration | |
---|---|
From | let kCVImageBufferGammaLevelKey: CFString! |
To | let kCVImageBufferGammaLevelKey: CFString |
Modified kCVImageBufferICCProfileKey
Declaration | |
---|---|
From | let kCVImageBufferICCProfileKey: CFString! |
To | let kCVImageBufferICCProfileKey: CFString |
Declaration | |
---|---|
From | let kCVImageBufferPixelAspectRatioHorizontalSpacingKey: CFString! |
To | let kCVImageBufferPixelAspectRatioHorizontalSpacingKey: CFString |
Modified kCVImageBufferPixelAspectRatioKey
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 |
Modified kCVImageBufferTransferFunctionKey
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 |
Modified kCVImageBufferYCbCrMatrixKey
Declaration | |
---|---|
From | let kCVImageBufferYCbCrMatrixKey: CFString! |
To | let kCVImageBufferYCbCrMatrixKey: CFString |
Declaration | |
---|---|
From | let kCVMetalTextureCacheMaximumTextureAgeKey: CFString! |
To | let kCVMetalTextureCacheMaximumTextureAgeKey: CFString |
Declaration | |
---|---|
From | let kCVOpenGLESTextureCacheMaximumTextureAgeKey: CFString! |
To | let kCVOpenGLESTextureCacheMaximumTextureAgeKey: 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 |
Modified kCVPixelBufferExtendedPixelsLeftKey
Declaration | |
---|---|
From | let kCVPixelBufferExtendedPixelsLeftKey: CFString! |
To | let kCVPixelBufferExtendedPixelsLeftKey: CFString |
Modified kCVPixelBufferExtendedPixelsRightKey
Declaration | |
---|---|
From | let kCVPixelBufferExtendedPixelsRightKey: CFString! |
To | let kCVPixelBufferExtendedPixelsRightKey: CFString |
Modified kCVPixelBufferExtendedPixelsTopKey
Declaration | |
---|---|
From | let kCVPixelBufferExtendedPixelsTopKey: CFString! |
To | let kCVPixelBufferExtendedPixelsTopKey: CFString |
Modified kCVPixelBufferHeightKey
Declaration | |
---|---|
From | let kCVPixelBufferHeightKey: CFString! |
To | let kCVPixelBufferHeightKey: CFString |
Modified kCVPixelBufferIOSurfacePropertiesKey
Declaration | |
---|---|
From | let kCVPixelBufferIOSurfacePropertiesKey: CFString! |
To | let kCVPixelBufferIOSurfacePropertiesKey: CFString |
Modified kCVPixelBufferLock_ReadOnly
Introduction | |
---|---|
From | iOS 8.0 |
To | iOS 9.0 |
Modified kCVPixelBufferMemoryAllocatorKey
Declaration | |
---|---|
From | let kCVPixelBufferMemoryAllocatorKey: CFString! |
To | let kCVPixelBufferMemoryAllocatorKey: CFString |
Modified kCVPixelBufferMetalCompatibilityKey
Declaration | |
---|---|
From | let kCVPixelBufferMetalCompatibilityKey: CFString! |
To | let kCVPixelBufferMetalCompatibilityKey: CFString |
Modified kCVPixelBufferOpenGLCompatibilityKey
Declaration | |
---|---|
From | let kCVPixelBufferOpenGLCompatibilityKey: CFString! |
To | let kCVPixelBufferOpenGLCompatibilityKey: CFString |
Declaration | |
---|---|
From | let kCVPixelBufferOpenGLESCompatibilityKey: CFString! |
To | let kCVPixelBufferOpenGLESCompatibilityKey: CFString |
Modified kCVPixelBufferPixelFormatTypeKey
Declaration | |
---|---|
From | let kCVPixelBufferPixelFormatTypeKey: CFString! |
To | let kCVPixelBufferPixelFormatTypeKey: CFString |
Modified kCVPixelBufferPlaneAlignmentKey
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 |
Modified kCVPixelBufferWidthKey
Declaration | |
---|---|
From | let kCVPixelBufferWidthKey: CFString! |
To | let kCVPixelBufferWidthKey: CFString |
Modified kCVPixelFormatBitsPerBlock
Declaration | |
---|---|
From | let kCVPixelFormatBitsPerBlock: CFString! |
To | let kCVPixelFormatBitsPerBlock: CFString |
Modified kCVPixelFormatBlackBlock
Declaration | |
---|---|
From | let kCVPixelFormatBlackBlock: CFString! |
To | let kCVPixelFormatBlackBlock: CFString |
Modified kCVPixelFormatBlockHeight
Declaration | |
---|---|
From | let kCVPixelFormatBlockHeight: CFString! |
To | let kCVPixelFormatBlockHeight: CFString |
Declaration | |
---|---|
From | let kCVPixelFormatBlockHorizontalAlignment: CFString! |
To | let kCVPixelFormatBlockHorizontalAlignment: CFString |
Modified kCVPixelFormatBlockVerticalAlignment
Declaration | |
---|---|
From | let kCVPixelFormatBlockVerticalAlignment: CFString! |
To | let kCVPixelFormatBlockVerticalAlignment: CFString |
Modified kCVPixelFormatBlockWidth
Declaration | |
---|---|
From | let kCVPixelFormatBlockWidth: CFString! |
To | let kCVPixelFormatBlockWidth: CFString |
Declaration | |
---|---|
From | let kCVPixelFormatCGBitmapContextCompatibility: CFString! |
To | let kCVPixelFormatCGBitmapContextCompatibility: CFString |
Modified kCVPixelFormatCGBitmapInfo
Declaration | |
---|---|
From | let kCVPixelFormatCGBitmapInfo: CFString! |
To | let kCVPixelFormatCGBitmapInfo: CFString |
Modified kCVPixelFormatCGImageCompatibility
Declaration | |
---|---|
From | let kCVPixelFormatCGImageCompatibility: CFString! |
To | let kCVPixelFormatCGImageCompatibility: CFString |
Modified kCVPixelFormatCodecType
Declaration | |
---|---|
From | let kCVPixelFormatCodecType: CFString! |
To | let kCVPixelFormatCodecType: CFString |
Modified kCVPixelFormatConstant
Declaration | |
---|---|
From | let kCVPixelFormatConstant: CFString! |
To | let kCVPixelFormatConstant: CFString |
Modified kCVPixelFormatContainsAlpha
Declaration | |
---|---|
From | let kCVPixelFormatContainsAlpha: CFString! |
To | let kCVPixelFormatContainsAlpha: CFString |
Modified kCVPixelFormatContainsRGB
Declaration | |
---|---|
From | let kCVPixelFormatContainsRGB: CFString! |
To | let kCVPixelFormatContainsRGB: CFString |
Modified kCVPixelFormatContainsYCbCr
Declaration | |
---|---|
From | let kCVPixelFormatContainsYCbCr: CFString! |
To | let kCVPixelFormatContainsYCbCr: CFString |
Declaration | |
---|---|
From | let kCVPixelFormatFillExtendedPixelsCallback: CFString! |
To | let kCVPixelFormatFillExtendedPixelsCallback: CFString |
Modified kCVPixelFormatFourCC
Declaration | |
---|---|
From | let kCVPixelFormatFourCC: CFString! |
To | let kCVPixelFormatFourCC: CFString |
Modified kCVPixelFormatHorizontalSubsampling
Declaration | |
---|---|
From | let kCVPixelFormatHorizontalSubsampling: CFString! |
To | let kCVPixelFormatHorizontalSubsampling: CFString |
Modified kCVPixelFormatName
Declaration | |
---|---|
From | let kCVPixelFormatName: CFString! |
To | let kCVPixelFormatName: CFString |
Modified kCVPixelFormatOpenGLCompatibility
Declaration | |
---|---|
From | let kCVPixelFormatOpenGLCompatibility: CFString! |
To | let kCVPixelFormatOpenGLCompatibility: CFString |
Modified kCVPixelFormatOpenGLESCompatibility
Declaration | |
---|---|
From | let kCVPixelFormatOpenGLESCompatibility: CFString! |
To | let kCVPixelFormatOpenGLESCompatibility: CFString |
Modified kCVPixelFormatOpenGLFormat
Declaration | |
---|---|
From | let kCVPixelFormatOpenGLFormat: CFString! |
To | let kCVPixelFormatOpenGLFormat: CFString |
Modified kCVPixelFormatOpenGLInternalFormat
Declaration | |
---|---|
From | let kCVPixelFormatOpenGLInternalFormat: CFString! |
To | let kCVPixelFormatOpenGLInternalFormat: CFString |
Modified kCVPixelFormatOpenGLType
Declaration | |
---|---|
From | let kCVPixelFormatOpenGLType: CFString! |
To | let kCVPixelFormatOpenGLType: CFString |
Modified kCVPixelFormatPlanes
Declaration | |
---|---|
From | let kCVPixelFormatPlanes: CFString! |
To | let kCVPixelFormatPlanes: CFString |
Modified kCVPixelFormatQDCompatibility
Declaration | |
---|---|
From | let kCVPixelFormatQDCompatibility: CFString! |
To | let kCVPixelFormatQDCompatibility: CFString |
Modified kCVPixelFormatType_128RGBAFloat
Declaration | |
---|---|
From | var kCVPixelFormatType_128RGBAFloat: Int { get } |
To | var kCVPixelFormatType_128RGBAFloat: OSType { get } |
Modified kCVPixelFormatType_16BE555
Declaration | |
---|---|
From | var kCVPixelFormatType_16BE555: Int { get } |
To | var kCVPixelFormatType_16BE555: OSType { get } |
Modified kCVPixelFormatType_16BE565
Declaration | |
---|---|
From | var kCVPixelFormatType_16BE565: Int { get } |
To | var kCVPixelFormatType_16BE565: OSType { get } |
Modified kCVPixelFormatType_16Gray
Declaration | |
---|---|
From | var kCVPixelFormatType_16Gray: Int { get } |
To | var kCVPixelFormatType_16Gray: OSType { get } |
Modified kCVPixelFormatType_16LE555
Declaration | |
---|---|
From | var kCVPixelFormatType_16LE555: Int { get } |
To | var kCVPixelFormatType_16LE555: OSType { get } |
Modified kCVPixelFormatType_16LE5551
Declaration | |
---|---|
From | var kCVPixelFormatType_16LE5551: Int { get } |
To | var kCVPixelFormatType_16LE5551: OSType { get } |
Modified kCVPixelFormatType_16LE565
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 } |
Modified kCVPixelFormatType_1Monochrome
Declaration | |
---|---|
From | var kCVPixelFormatType_1Monochrome: Int { get } |
To | var kCVPixelFormatType_1Monochrome: OSType { get } |
Modified kCVPixelFormatType_24BGR
Declaration | |
---|---|
From | var kCVPixelFormatType_24BGR: Int { get } |
To | var kCVPixelFormatType_24BGR: OSType { get } |
Modified kCVPixelFormatType_24RGB
Declaration | |
---|---|
From | var kCVPixelFormatType_24RGB: Int { get } |
To | var kCVPixelFormatType_24RGB: OSType { get } |
Modified kCVPixelFormatType_2Indexed
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 } |
Modified kCVPixelFormatType_30RGB
Declaration | |
---|---|
From | var kCVPixelFormatType_30RGB: Int { get } |
To | var kCVPixelFormatType_30RGB: OSType { get } |
Modified kCVPixelFormatType_32ABGR
Declaration | |
---|---|
From | var kCVPixelFormatType_32ABGR: Int { get } |
To | var kCVPixelFormatType_32ABGR: OSType { get } |
Modified kCVPixelFormatType_32AlphaGray
Declaration | |
---|---|
From | var kCVPixelFormatType_32AlphaGray: Int { get } |
To | var kCVPixelFormatType_32AlphaGray: OSType { get } |
Modified kCVPixelFormatType_32ARGB
Declaration | |
---|---|
From | var kCVPixelFormatType_32ARGB: Int { get } |
To | var kCVPixelFormatType_32ARGB: OSType { get } |
Modified kCVPixelFormatType_32BGRA
Declaration | |
---|---|
From | var kCVPixelFormatType_32BGRA: Int { get } |
To | var kCVPixelFormatType_32BGRA: OSType { get } |
Modified kCVPixelFormatType_32RGBA
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 } |
Modified kCVPixelFormatType_420YpCbCr8Planar
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 } |
Modified kCVPixelFormatType_422YpCbCr10
Declaration | |
---|---|
From | var kCVPixelFormatType_422YpCbCr10: Int { get } |
To | var kCVPixelFormatType_422YpCbCr10: OSType { get } |
Modified kCVPixelFormatType_422YpCbCr16
Declaration | |
---|---|
From | var kCVPixelFormatType_422YpCbCr16: Int { get } |
To | var kCVPixelFormatType_422YpCbCr16: OSType { get } |
Modified kCVPixelFormatType_422YpCbCr8
Declaration | |
---|---|
From | var kCVPixelFormatType_422YpCbCr8: Int { get } |
To | var kCVPixelFormatType_422YpCbCr8: OSType { get } |
Modified kCVPixelFormatType_422YpCbCr8_yuvs
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 } |
Modified kCVPixelFormatType_4444AYpCbCr16
Declaration | |
---|---|
From | var kCVPixelFormatType_4444AYpCbCr16: Int { get } |
To | var kCVPixelFormatType_4444AYpCbCr16: OSType { get } |
Modified kCVPixelFormatType_4444AYpCbCr8
Declaration | |
---|---|
From | var kCVPixelFormatType_4444AYpCbCr8: Int { get } |
To | var kCVPixelFormatType_4444AYpCbCr8: OSType { get } |
Modified kCVPixelFormatType_4444YpCbCrA8
Declaration | |
---|---|
From | var kCVPixelFormatType_4444YpCbCrA8: Int { get } |
To | var kCVPixelFormatType_4444YpCbCrA8: OSType { get } |
Modified kCVPixelFormatType_4444YpCbCrA8R
Declaration | |
---|---|
From | var kCVPixelFormatType_4444YpCbCrA8R: Int { get } |
To | var kCVPixelFormatType_4444YpCbCrA8R: OSType { get } |
Modified kCVPixelFormatType_444YpCbCr10
Declaration | |
---|---|
From | var kCVPixelFormatType_444YpCbCr10: Int { get } |
To | var kCVPixelFormatType_444YpCbCr10: OSType { get } |
Modified kCVPixelFormatType_444YpCbCr8
Declaration | |
---|---|
From | var kCVPixelFormatType_444YpCbCr8: Int { get } |
To | var kCVPixelFormatType_444YpCbCr8: OSType { get } |
Modified kCVPixelFormatType_48RGB
Declaration | |
---|---|
From | var kCVPixelFormatType_48RGB: Int { get } |
To | var kCVPixelFormatType_48RGB: OSType { get } |
Modified kCVPixelFormatType_4Indexed
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 } |
Modified kCVPixelFormatType_64ARGB
Declaration | |
---|---|
From | var kCVPixelFormatType_64ARGB: Int { get } |
To | var kCVPixelFormatType_64ARGB: OSType { get } |
Modified kCVPixelFormatType_64RGBAHalf
Declaration | |
---|---|
From | var kCVPixelFormatType_64RGBAHalf: Int { get } |
To | var kCVPixelFormatType_64RGBAHalf: OSType { get } |
Modified kCVPixelFormatType_8Indexed
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 } |
Modified kCVPixelFormatType_OneComponent8
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 } |
Modified kCVPixelFormatType_TwoComponent8
Declaration | |
---|---|
From | var kCVPixelFormatType_TwoComponent8: Int { get } |
To | var kCVPixelFormatType_TwoComponent8: OSType { get } |
Modified kCVPixelFormatVerticalSubsampling
Declaration | |
---|---|
From | let kCVPixelFormatVerticalSubsampling: CFString! |
To | let kCVPixelFormatVerticalSubsampling: CFString |
Modified kCVReturnAllocationFailed
Declaration | Introduction | |
---|---|---|
From | var kCVReturnAllocationFailed: _CVReturn { get } | iOS 8.0 |
To | var kCVReturnAllocationFailed: CVReturn { get } | iOS 9.0 |
Modified kCVReturnDisplayLinkAlreadyRunning
Declaration | Introduction | |
---|---|---|
From | var kCVReturnDisplayLinkAlreadyRunning: _CVReturn { get } | iOS 8.0 |
To | var kCVReturnDisplayLinkAlreadyRunning: CVReturn { get } | iOS 9.0 |
Modified kCVReturnDisplayLinkCallbacksNotSet
Declaration | Introduction | |
---|---|---|
From | var kCVReturnDisplayLinkCallbacksNotSet: _CVReturn { get } | iOS 8.0 |
To | var kCVReturnDisplayLinkCallbacksNotSet: CVReturn { get } | iOS 9.0 |
Modified kCVReturnDisplayLinkNotRunning
Declaration | Introduction | |
---|---|---|
From | var kCVReturnDisplayLinkNotRunning: _CVReturn { get } | iOS 8.0 |
To | var kCVReturnDisplayLinkNotRunning: CVReturn { get } | iOS 9.0 |
Modified kCVReturnError
Declaration | Introduction | |
---|---|---|
From | var kCVReturnError: _CVReturn { get } | iOS 8.0 |
To | var kCVReturnError: CVReturn { get } | iOS 9.0 |
Modified kCVReturnFirst
Declaration | Introduction | |
---|---|---|
From | var kCVReturnFirst: _CVReturn { get } | iOS 8.0 |
To | var kCVReturnFirst: CVReturn { get } | iOS 9.0 |
Modified kCVReturnInvalidArgument
Declaration | Introduction | |
---|---|---|
From | var kCVReturnInvalidArgument: _CVReturn { get } | iOS 8.0 |
To | var kCVReturnInvalidArgument: CVReturn { get } | iOS 9.0 |
Modified kCVReturnInvalidDisplay
Declaration | Introduction | |
---|---|---|
From | var kCVReturnInvalidDisplay: _CVReturn { get } | iOS 8.0 |
To | var kCVReturnInvalidDisplay: CVReturn { get } | iOS 9.0 |
Declaration | Introduction | |
---|---|---|
From | var kCVReturnInvalidPixelBufferAttributes: _CVReturn { get } | iOS 8.0 |
To | var kCVReturnInvalidPixelBufferAttributes: CVReturn { get } | iOS 9.0 |
Modified kCVReturnInvalidPixelFormat
Declaration | Introduction | |
---|---|---|
From | var kCVReturnInvalidPixelFormat: _CVReturn { get } | iOS 8.0 |
To | var kCVReturnInvalidPixelFormat: CVReturn { get } | iOS 9.0 |
Modified kCVReturnInvalidPoolAttributes
Declaration | Introduction | |
---|---|---|
From | var kCVReturnInvalidPoolAttributes: _CVReturn { get } | iOS 8.0 |
To | var kCVReturnInvalidPoolAttributes: CVReturn { get } | iOS 9.0 |
Modified kCVReturnInvalidSize
Declaration | Introduction | |
---|---|---|
From | var kCVReturnInvalidSize: _CVReturn { get } | iOS 8.0 |
To | var kCVReturnInvalidSize: CVReturn { get } | iOS 9.0 |
Modified kCVReturnLast
Declaration | Introduction | |
---|---|---|
From | var kCVReturnLast: _CVReturn { get } | iOS 8.0 |
To | var kCVReturnLast: CVReturn { get } | iOS 9.0 |
Declaration | Introduction | |
---|---|---|
From | var kCVReturnPixelBufferNotMetalCompatible: _CVReturn { get } | iOS 8.0 |
To | var kCVReturnPixelBufferNotMetalCompatible: CVReturn { get } | iOS 9.0 |
Declaration | Introduction | |
---|---|---|
From | var kCVReturnPixelBufferNotOpenGLCompatible: _CVReturn { get } | iOS 8.0 |
To | var kCVReturnPixelBufferNotOpenGLCompatible: CVReturn { get } | iOS 9.0 |
Modified kCVReturnPoolAllocationFailed
Declaration | Introduction | |
---|---|---|
From | var kCVReturnPoolAllocationFailed: _CVReturn { get } | iOS 8.0 |
To | var kCVReturnPoolAllocationFailed: CVReturn { get } | iOS 9.0 |
Modified kCVReturnSuccess
Declaration | Introduction | |
---|---|---|
From | var kCVReturnSuccess: _CVReturn { get } | iOS 8.0 |
To | var kCVReturnSuccess: CVReturn { get } | iOS 9.0 |
Declaration | Introduction | |
---|---|---|
From | var kCVReturnWouldExceedAllocationThreshold: _CVReturn { get } | iOS 8.0 |
To | var kCVReturnWouldExceedAllocationThreshold: CVReturn { get } | iOS 9.0 |