├── .gitignore ├── .gitmodules ├── CoreAnimationCF ├── CACFAnimation.h ├── CACFBase.h ├── CACFCAMLParser.h ├── CACFContext.h ├── CACFFilter.h ├── CACFLayer.h ├── CACFMeshTransform.h ├── CACFTiming.h ├── CACFTimingFunction.h ├── CACFValueFunction.h ├── CACFVector.h ├── CACFView.h └── CoreAnimationCF.h ├── CoreAnimationPrivate ├── CAAnimationPrivate.h ├── CABackdropLayer.h ├── CABackingStore.h ├── CABehavior.h ├── CAColorMatrix.h ├── CAContext.h ├── CADebug.h ├── CADistanceFieldLayer.h ├── CADynamicsBehavior.h ├── CAEmitterBehavior.h ├── CAEmitterLayerPrivate.h ├── CAFilter.h ├── CAForceField.h ├── CAImageQueue.h ├── CALayerHost.h ├── CALayerPrivate.h ├── CALayoutManagerPrivate.h ├── CALight.h ├── CAMeshTransform.h ├── CAMiscLayersPrivate.h ├── CAPackage.h ├── CAPluginLayer.h ├── CAPoint.h ├── CAPortalLayer.h ├── CAPresentationModifier.h ├── CAPropertyInfo.h ├── CAProxyLayer.h ├── CARender.h ├── CARenderCG.h ├── CARenderOGL.h ├── CARenderServer.h ├── CARendererPrivate.h ├── CASpring.h ├── CAState.h ├── CATransactionPrivate.h ├── CATransform3DPrivate.h ├── CAView.h └── CoreAnimationPrivate.h ├── CoreGraphicsPrivate ├── CGAccessSession.h ├── CGBitmapContextPrivate.h ├── CGColorTransform.h ├── CGContextDelegate.h ├── CGContextPrivate.h ├── CGDash.h ├── CGDirectDisplayPrivate.h ├── CGDisplayList.h ├── CGFontPrivate.h ├── CGGState.h ├── CGGeometryPrivate.h ├── CGIOSurfaceContext.h ├── CGNotificationCenter.h ├── CGRenderingState.h ├── CGShadingPrivate.h ├── CGSoftMask.h └── CGStyle.h ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/.gitmodules -------------------------------------------------------------------------------- /CoreAnimationCF/CACFAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationCF/CACFAnimation.h -------------------------------------------------------------------------------- /CoreAnimationCF/CACFBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationCF/CACFBase.h -------------------------------------------------------------------------------- /CoreAnimationCF/CACFCAMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationCF/CACFCAMLParser.h -------------------------------------------------------------------------------- /CoreAnimationCF/CACFContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationCF/CACFContext.h -------------------------------------------------------------------------------- /CoreAnimationCF/CACFFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationCF/CACFFilter.h -------------------------------------------------------------------------------- /CoreAnimationCF/CACFLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationCF/CACFLayer.h -------------------------------------------------------------------------------- /CoreAnimationCF/CACFMeshTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationCF/CACFMeshTransform.h -------------------------------------------------------------------------------- /CoreAnimationCF/CACFTiming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationCF/CACFTiming.h -------------------------------------------------------------------------------- /CoreAnimationCF/CACFTimingFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationCF/CACFTimingFunction.h -------------------------------------------------------------------------------- /CoreAnimationCF/CACFValueFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationCF/CACFValueFunction.h -------------------------------------------------------------------------------- /CoreAnimationCF/CACFVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationCF/CACFVector.h -------------------------------------------------------------------------------- /CoreAnimationCF/CACFView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationCF/CACFView.h -------------------------------------------------------------------------------- /CoreAnimationCF/CoreAnimationCF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationCF/CoreAnimationCF.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CAAnimationPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CAAnimationPrivate.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CABackdropLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CABackdropLayer.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CABackingStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CABackingStore.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CABehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CABehavior.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CAColorMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CAColorMatrix.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CAContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CAContext.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CADebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CADebug.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CADistanceFieldLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CADistanceFieldLayer.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CADynamicsBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CADynamicsBehavior.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CAEmitterBehavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CAEmitterBehavior.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CAEmitterLayerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CAEmitterLayerPrivate.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CAFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CAFilter.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CAForceField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CAForceField.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CAImageQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CAImageQueue.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CALayerHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CALayerHost.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CALayerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CALayerPrivate.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CALayoutManagerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CALayoutManagerPrivate.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CALight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CALight.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CAMeshTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CAMeshTransform.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CAMiscLayersPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CAMiscLayersPrivate.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CAPackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CAPackage.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CAPluginLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CAPluginLayer.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CAPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CAPoint.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CAPortalLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CAPortalLayer.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CAPresentationModifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CAPresentationModifier.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CAPropertyInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CAPropertyInfo.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CAProxyLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CAProxyLayer.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CARender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CARender.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CARenderCG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CARenderCG.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CARenderOGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CARenderOGL.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CARenderServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CARenderServer.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CARendererPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CARendererPrivate.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CASpring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CASpring.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CAState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CAState.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CATransactionPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CATransactionPrivate.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CATransform3DPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CATransform3DPrivate.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CAView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CAView.h -------------------------------------------------------------------------------- /CoreAnimationPrivate/CoreAnimationPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreAnimationPrivate/CoreAnimationPrivate.h -------------------------------------------------------------------------------- /CoreGraphicsPrivate/CGAccessSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreGraphicsPrivate/CGAccessSession.h -------------------------------------------------------------------------------- /CoreGraphicsPrivate/CGBitmapContextPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreGraphicsPrivate/CGBitmapContextPrivate.h -------------------------------------------------------------------------------- /CoreGraphicsPrivate/CGColorTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreGraphicsPrivate/CGColorTransform.h -------------------------------------------------------------------------------- /CoreGraphicsPrivate/CGContextDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreGraphicsPrivate/CGContextDelegate.h -------------------------------------------------------------------------------- /CoreGraphicsPrivate/CGContextPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreGraphicsPrivate/CGContextPrivate.h -------------------------------------------------------------------------------- /CoreGraphicsPrivate/CGDash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreGraphicsPrivate/CGDash.h -------------------------------------------------------------------------------- /CoreGraphicsPrivate/CGDirectDisplayPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreGraphicsPrivate/CGDirectDisplayPrivate.h -------------------------------------------------------------------------------- /CoreGraphicsPrivate/CGDisplayList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreGraphicsPrivate/CGDisplayList.h -------------------------------------------------------------------------------- /CoreGraphicsPrivate/CGFontPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreGraphicsPrivate/CGFontPrivate.h -------------------------------------------------------------------------------- /CoreGraphicsPrivate/CGGState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreGraphicsPrivate/CGGState.h -------------------------------------------------------------------------------- /CoreGraphicsPrivate/CGGeometryPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreGraphicsPrivate/CGGeometryPrivate.h -------------------------------------------------------------------------------- /CoreGraphicsPrivate/CGIOSurfaceContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreGraphicsPrivate/CGIOSurfaceContext.h -------------------------------------------------------------------------------- /CoreGraphicsPrivate/CGNotificationCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreGraphicsPrivate/CGNotificationCenter.h -------------------------------------------------------------------------------- /CoreGraphicsPrivate/CGRenderingState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreGraphicsPrivate/CGRenderingState.h -------------------------------------------------------------------------------- /CoreGraphicsPrivate/CGShadingPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreGraphicsPrivate/CGShadingPrivate.h -------------------------------------------------------------------------------- /CoreGraphicsPrivate/CGSoftMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreGraphicsPrivate/CGSoftMask.h -------------------------------------------------------------------------------- /CoreGraphicsPrivate/CGStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/CoreGraphicsPrivate/CGStyle.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaidyam/QuartzInternal/HEAD/README.md --------------------------------------------------------------------------------