├── .config └── dotnet-tools.json ├── .devcontainer ├── devcontainer.json └── packages.sh ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── feature-request.yml ├── policies │ └── resourceManagement.yml ├── pull_request_template.md └── workflows │ ├── backport.yml │ ├── engagement-scores.yml │ ├── label-with-ai.yml │ ├── rebase.yml │ └── similarissues.yml ├── .gitignore ├── .gitmodules ├── .vscode └── settings.json ├── CODE-OF-CONDUCT.md ├── External-Dependency-Info.txt ├── LICENSE.md ├── LICENSE.txt ├── README.md ├── benchmarks ├── Directory.Build.props ├── Directory.Build.targets ├── SkiaSharp.Benchmarks.sln └── SkiaSharp.Benchmarks │ ├── Benchmarks │ └── TheBenchmark.cs │ ├── Program.cs │ ├── SkiaSharp.Benchmarks.csproj │ └── Utils │ └── NonSeekableReadOnlyStream.cs ├── binding ├── .editorconfig ├── Binding.Shared │ ├── DelegateProxies.shared.cs │ ├── HashCode.cs │ ├── LibraryLoader.cs │ └── PlatformConfiguration.cs ├── Directory.Build.props ├── Directory.Build.targets ├── HarfBuzzSharp.NativeAssets.Android │ ├── HarfBuzzSharp.NativeAssets.Android.csproj │ └── buildTransitive │ │ └── HarfBuzzSharp.targets ├── HarfBuzzSharp.NativeAssets.Linux │ ├── HarfBuzzSharp.NativeAssets.Linux.csproj │ └── buildTransitive │ │ └── net4 │ │ └── HarfBuzzSharp.targets ├── HarfBuzzSharp.NativeAssets.MacCatalyst │ ├── HarfBuzzSharp.NativeAssets.MacCatalyst.csproj │ └── buildTransitive │ │ └── HarfBuzzSharp.targets ├── HarfBuzzSharp.NativeAssets.Tizen │ ├── HarfBuzzSharp.NativeAssets.Tizen.csproj │ └── buildTransitive │ │ └── HarfBuzzSharp.targets ├── HarfBuzzSharp.NativeAssets.WebAssembly │ ├── HarfBuzzSharp.NativeAssets.WebAssembly.csproj │ └── buildTransitive │ │ ├── HarfBuzzSharp.props │ │ └── HarfBuzzSharp.targets ├── HarfBuzzSharp.NativeAssets.Win32 │ ├── HarfBuzzSharp.NativeAssets.Win32.csproj │ └── buildTransitive │ │ └── net4 │ │ └── HarfBuzzSharp.targets ├── HarfBuzzSharp.NativeAssets.iOS │ ├── HarfBuzzSharp.NativeAssets.iOS.csproj │ └── buildTransitive │ │ └── HarfBuzzSharp.targets ├── HarfBuzzSharp.NativeAssets.macOS │ ├── HarfBuzzSharp.NativeAssets.macOS.csproj │ └── buildTransitive │ │ ├── macos │ │ └── HarfBuzzSharp.targets │ │ └── net4 │ │ └── HarfBuzzSharp.targets ├── HarfBuzzSharp.NativeAssets.tvOS │ ├── HarfBuzzSharp.NativeAssets.tvOS.csproj │ └── buildTransitive │ │ ├── HarfBuzzSharp.Local.targets │ │ └── HarfBuzzSharp.targets ├── HarfBuzzSharp │ ├── Blob.cs │ ├── Buffer.cs │ ├── Definitions.cs │ ├── DelegateProxies.cs │ ├── DelegateProxies.font.cs │ ├── DelegateProxies.unicode.cs │ ├── Face.cs │ ├── Feature.cs │ ├── Font.cs │ ├── FontFunctions.cs │ ├── HarfBuzzApi.cs │ ├── HarfBuzzApi.generated.cs │ ├── HarfBuzzSharp.csproj │ ├── Language.cs │ ├── NativeObject.cs │ ├── OpenTypeMetrics.cs │ ├── Properties │ │ └── HarfBuzzSharpAssemblyInfo.cs │ ├── Script.cs │ ├── Script.fields.cs │ ├── Tag.cs │ └── UnicodeFunctions.cs ├── IncludeNativeAssets.HarfBuzzSharp.targets ├── IncludeNativeAssets.SkiaSharp.WinUI.targets ├── IncludeNativeAssets.SkiaSharp.targets ├── NativeAssets.Build.targets ├── SkiaSharp.NativeAssets.Android │ ├── SkiaSharp.NativeAssets.Android.csproj │ └── buildTransitive │ │ └── SkiaSharp.targets ├── SkiaSharp.NativeAssets.Linux.NoDependencies │ ├── SkiaSharp.NativeAssets.Linux.NoDependencies.csproj │ └── buildTransitive │ │ └── net4 │ │ └── SkiaSharp.targets ├── SkiaSharp.NativeAssets.Linux │ ├── SkiaSharp.NativeAssets.Linux.csproj │ └── buildTransitive │ │ └── net4 │ │ └── SkiaSharp.targets ├── SkiaSharp.NativeAssets.MacCatalyst │ ├── SkiaSharp.NativeAssets.MacCatalyst.csproj │ └── buildTransitive │ │ └── SkiaSharp.targets ├── SkiaSharp.NativeAssets.NanoServer │ ├── SkiaSharp.NativeAssets.NanoServer.csproj │ └── buildTransitive │ │ └── net4 │ │ └── SkiaSharp.targets ├── SkiaSharp.NativeAssets.Tizen │ ├── SkiaSharp.NativeAssets.Tizen.csproj │ └── buildTransitive │ │ └── SkiaSharp.targets ├── SkiaSharp.NativeAssets.WebAssembly │ ├── SkiaSharp.NativeAssets.WebAssembly.csproj │ └── buildTransitive │ │ ├── SkiaSharp.props │ │ └── SkiaSharp.targets ├── SkiaSharp.NativeAssets.Win32 │ ├── SkiaSharp.NativeAssets.Win32.csproj │ └── buildTransitive │ │ └── net4 │ │ └── SkiaSharp.targets ├── SkiaSharp.NativeAssets.WinUI │ └── SkiaSharp.NativeAssets.WinUI.csproj ├── SkiaSharp.NativeAssets.iOS │ ├── SkiaSharp.NativeAssets.iOS.csproj │ └── buildTransitive │ │ └── SkiaSharp.targets ├── SkiaSharp.NativeAssets.macOS │ ├── SkiaSharp.NativeAssets.macOS.csproj │ └── buildTransitive │ │ ├── macos │ │ └── SkiaSharp.targets │ │ └── net4 │ │ └── SkiaSharp.targets ├── SkiaSharp.NativeAssets.tvOS │ ├── SkiaSharp.NativeAssets.tvOS.csproj │ └── buildTransitive │ │ └── SkiaSharp.targets ├── SkiaSharp.Resources │ ├── Properties │ │ └── SkiaSharpResourcesAssemblyInfo.cs │ ├── ResourceProvider.cs │ ├── ResourcesApi.cs │ ├── ResourcesApi.generated.cs │ └── SkiaSharp.Resources.csproj ├── SkiaSharp.SceneGraph │ ├── InvalidationController.cs │ ├── Properties │ │ └── SkiaSharpSceneGraphAssemblyInfo.cs │ ├── SceneGraphApi.cs │ ├── SceneGraphApi.generated.cs │ └── SkiaSharp.SceneGraph.csproj ├── SkiaSharp.Skottie │ ├── Animation.cs │ ├── AnimationBuilder.cs │ ├── AnimationBuilderStats.cs │ ├── Properties │ │ └── SkiaSharpSkottieAssemblyInfo.cs │ ├── SkiaSharp.Skottie.csproj │ ├── SkottieApi.cs │ └── SkottieApi.generated.cs ├── SkiaSharp │ ├── Definitions.cs │ ├── DelegateProxies.cs │ ├── DelegateProxies.drawable.cs │ ├── DelegateProxies.stream.cs │ ├── DelegateProxies.trace.cs │ ├── DelegateProxies.wstream.cs │ ├── EnumMappings.cs │ ├── GRBackendRenderTarget.cs │ ├── GRBackendTexture.cs │ ├── GRContext.cs │ ├── GRContextOptions.cs │ ├── GRD3DBackendContext.cs │ ├── GRD3DTextureResourceInfo.cs │ ├── GRDefinitions.cs │ ├── GRGlInterface.cs │ ├── GRMtlBackendContext.cs │ ├── GRRecordingContext.cs │ ├── GRVkBackendContext.cs │ ├── GRVkExtensions.cs │ ├── HandleDictionary.cs │ ├── MathTypes.cs │ ├── PlatformLock.cs │ ├── Properties │ │ └── SkiaSharpAssemblyInfo.cs │ ├── SKAbstractManagedStream.cs │ ├── SKAbstractManagedWStream.cs │ ├── SKAutoCoInitialize.cs │ ├── SKBitmap.cs │ ├── SKBlender.cs │ ├── SKCanvas.cs │ ├── SKCodec.cs │ ├── SKColor.cs │ ├── SKColorF.cs │ ├── SKColorFilter.cs │ ├── SKColorSpace.cs │ ├── SKColorSpaceStructs.cs │ ├── SKColors.cs │ ├── SKData.cs │ ├── SKDocument.cs │ ├── SKDrawable.cs │ ├── SKFont.cs │ ├── SKFontManager.cs │ ├── SKFontStyle.cs │ ├── SKFontStyleSet.cs │ ├── SKFrontBufferedManagedStream.cs │ ├── SKFrontBufferedStream.cs │ ├── SKGraphics.cs │ ├── SKImage.cs │ ├── SKImageFilter.cs │ ├── SKImageInfo.cs │ ├── SKManagedStream.cs │ ├── SKManagedWStream.cs │ ├── SKMaskFilter.cs │ ├── SKMatrix.cs │ ├── SKMatrix44.cs │ ├── SKNWayCanvas.cs │ ├── SKNoDrawCanvas.cs │ ├── SKObject.cs │ ├── SKOverdrawCanvas.cs │ ├── SKPMColor.cs │ ├── SKPaint.cs │ ├── SKPath.cs │ ├── SKPathEffect.cs │ ├── SKPathMeasure.cs │ ├── SKPicture.cs │ ├── SKPictureRecorder.cs │ ├── SKPixmap.cs │ ├── SKRegion.cs │ ├── SKRotationScaleMatrix.cs │ ├── SKRoundRect.cs │ ├── SKRunBuffer.cs │ ├── SKRuntimeEffect.cs │ ├── SKSVG.cs │ ├── SKShader.cs │ ├── SKStream.cs │ ├── SKString.cs │ ├── SKSurface.cs │ ├── SKSurfaceProperties.cs │ ├── SKSwizzle.cs │ ├── SKTextBlob.cs │ ├── SKTraceMemoryDump.cs │ ├── SKTypeface.cs │ ├── SKVertices.cs │ ├── SkiaApi.cs │ ├── SkiaApi.generated.cs │ ├── SkiaSharp.csproj │ ├── SkiaSharpVersion.cs │ └── Util.cs ├── libHarfBuzzSharp.json ├── libSkiaSharp.Resources.json ├── libSkiaSharp.SceneGraph.json ├── libSkiaSharp.Skottie.json └── libSkiaSharp.json ├── build.cake ├── build.ps1 ├── build.sh ├── cgmanifest.json ├── changelogs ├── HarfBuzzSharp │ ├── 1.4.5 │ │ └── HarfBuzzSharp.md │ ├── 1.4.6.1 │ │ └── HarfBuzzSharp.md │ ├── 1.4.6.2 │ │ └── HarfBuzzSharp.md │ ├── 1.4.6 │ │ └── HarfBuzzSharp.md │ ├── 2.6.1.1 │ │ └── HarfBuzzSharp.md │ ├── 2.6.1.2 │ │ └── HarfBuzzSharp.md │ ├── 2.6.1.3 │ │ └── HarfBuzzSharp.md │ ├── 2.6.1.4 │ │ └── HarfBuzzSharp.md │ ├── 2.6.1.5 │ │ └── HarfBuzzSharp.md │ ├── 2.6.1.6 │ │ └── HarfBuzzSharp.md │ ├── 2.6.1.7 │ │ └── HarfBuzzSharp.md │ ├── 2.6.1.8 │ │ ├── HarfBuzzSharp.breaking.md │ │ └── HarfBuzzSharp.md │ ├── 2.6.1.9 │ │ └── HarfBuzzSharp.md │ ├── 2.6.1 │ │ ├── HarfBuzzSharp.breaking.md │ │ └── HarfBuzzSharp.md │ ├── 2.8.2.1 │ │ ├── HarfBuzzSharp.breaking.md │ │ └── HarfBuzzSharp.md │ ├── 2.8.2.2 │ │ └── HarfBuzzSharp.md │ ├── 2.8.2.3 │ │ └── HarfBuzzSharp.md │ ├── 2.8.2.4 │ │ └── HarfBuzzSharp.md │ ├── 2.8.2.5 │ │ └── HarfBuzzSharp.md │ ├── 2.8.2 │ │ └── HarfBuzzSharp.md │ ├── 7.3.0.1 │ │ └── HarfBuzzSharp.md │ ├── 7.3.0 │ │ └── HarfBuzzSharp.md │ └── 8.3.0 │ │ ├── HarfBuzzSharp.breaking.md │ │ └── HarfBuzzSharp.md ├── README.md ├── SkiaSharp.HarfBuzz │ ├── 1.60.0 │ │ └── SkiaSharp.HarfBuzz.md │ ├── 1.60.1 │ │ └── SkiaSharp.HarfBuzz.md │ ├── 1.60.2 │ │ └── SkiaSharp.HarfBuzz.md │ ├── 1.60.3 │ │ └── SkiaSharp.HarfBuzz.md │ ├── 1.68.0 │ │ └── SkiaSharp.HarfBuzz.md │ ├── 1.68.1.1 │ │ └── SkiaSharp.HarfBuzz.md │ ├── 1.68.1 │ │ └── SkiaSharp.HarfBuzz.md │ ├── 1.68.2.1 │ │ └── SkiaSharp.HarfBuzz.md │ ├── 1.68.2 │ │ └── SkiaSharp.HarfBuzz.md │ ├── 1.68.3 │ │ └── SkiaSharp.HarfBuzz.md │ ├── 2.80.0 │ │ └── SkiaSharp.HarfBuzz.md │ ├── 2.80.1 │ │ └── SkiaSharp.HarfBuzz.md │ ├── 2.80.2 │ │ └── SkiaSharp.HarfBuzz.md │ ├── 2.80.3 │ │ └── SkiaSharp.HarfBuzz.md │ ├── 2.80.4 │ │ └── SkiaSharp.HarfBuzz.md │ ├── 2.88.0 │ │ └── SkiaSharp.HarfBuzz.md │ ├── 2.88.1 │ │ └── SkiaSharp.HarfBuzz.md │ ├── 2.88.2 │ │ └── SkiaSharp.HarfBuzz.md │ ├── 2.88.3 │ │ └── SkiaSharp.HarfBuzz.md │ ├── 2.88.4 │ │ └── SkiaSharp.HarfBuzz.md │ ├── 2.88.5 │ │ └── SkiaSharp.HarfBuzz.md │ ├── 2.88.6 │ │ └── SkiaSharp.HarfBuzz.md │ ├── 2.88.7 │ │ └── SkiaSharp.HarfBuzz.md │ └── 3.0.0 │ │ └── SkiaSharp.HarfBuzz.md ├── SkiaSharp.Resources │ └── 3.0.0 │ │ └── SkiaSharp.Resources.md ├── SkiaSharp.SceneGraph │ └── 3.0.0 │ │ └── SkiaSharp.SceneGraph.md ├── SkiaSharp.Skottie │ ├── 2.88.1 │ │ ├── SkiaSharp.SceneGraph.md │ │ └── SkiaSharp.Skottie.md │ ├── 2.88.2 │ │ ├── SkiaSharp.SceneGraph.md │ │ └── SkiaSharp.Skottie.md │ ├── 2.88.3 │ │ ├── SkiaSharp.SceneGraph.md │ │ └── SkiaSharp.Skottie.md │ ├── 2.88.4 │ │ ├── SkiaSharp.SceneGraph.md │ │ └── SkiaSharp.Skottie.md │ ├── 2.88.5 │ │ ├── SkiaSharp.SceneGraph.md │ │ └── SkiaSharp.Skottie.md │ ├── 2.88.6 │ │ ├── SkiaSharp.SceneGraph.md │ │ └── SkiaSharp.Skottie.md │ ├── 2.88.7 │ │ ├── SkiaSharp.SceneGraph.md │ │ └── SkiaSharp.Skottie.md │ └── 3.0.0 │ │ └── SkiaSharp.Skottie.md ├── SkiaSharp.Views.Blazor │ ├── 2.88.0 │ │ └── SkiaSharp.Views.Blazor.md │ ├── 2.88.1 │ │ └── SkiaSharp.Views.Blazor.md │ ├── 2.88.2 │ │ └── SkiaSharp.Views.Blazor.md │ ├── 2.88.3 │ │ └── SkiaSharp.Views.Blazor.md │ ├── 2.88.4 │ │ └── SkiaSharp.Views.Blazor.md │ ├── 2.88.5 │ │ └── SkiaSharp.Views.Blazor.md │ ├── 2.88.6 │ │ └── SkiaSharp.Views.Blazor.md │ ├── 2.88.7 │ │ └── SkiaSharp.Views.Blazor.md │ └── 3.0.0 │ │ └── SkiaSharp.Views.Blazor.md ├── SkiaSharp.Views.Desktop.Common │ ├── 1.68.1.1 │ │ └── SkiaSharp.Views.Desktop.Common.md │ ├── 1.68.1 │ │ └── SkiaSharp.Views.Desktop.Common.md │ ├── 1.68.2.1 │ │ └── SkiaSharp.Views.Desktop.Common.md │ ├── 1.68.2 │ │ └── SkiaSharp.Views.Desktop.Common.md │ ├── 1.68.3 │ │ └── SkiaSharp.Views.Desktop.Common.md │ ├── 2.80.0 │ │ └── SkiaSharp.Views.Desktop.Common.md │ ├── 2.80.1 │ │ └── SkiaSharp.Views.Desktop.Common.md │ ├── 2.80.2 │ │ └── SkiaSharp.Views.Desktop.Common.md │ ├── 2.80.3 │ │ └── SkiaSharp.Views.Desktop.Common.md │ ├── 2.80.4 │ │ └── SkiaSharp.Views.Desktop.Common.md │ ├── 2.88.0 │ │ └── SkiaSharp.Views.Desktop.Common.md │ ├── 2.88.1 │ │ └── SkiaSharp.Views.Desktop.Common.md │ ├── 2.88.2 │ │ └── SkiaSharp.Views.Desktop.Common.md │ ├── 2.88.3 │ │ └── SkiaSharp.Views.Desktop.Common.md │ ├── 2.88.4 │ │ └── SkiaSharp.Views.Desktop.Common.md │ ├── 2.88.5 │ │ └── SkiaSharp.Views.Desktop.Common.md │ ├── 2.88.6 │ │ └── SkiaSharp.Views.Desktop.Common.md │ ├── 2.88.7 │ │ └── SkiaSharp.Views.Desktop.Common.md │ └── 3.0.0 │ │ ├── SkiaSharp.Views.Desktop.Common.breaking.md │ │ └── SkiaSharp.Views.Desktop.Common.md ├── SkiaSharp.Views.Forms.GTK │ ├── 1.68.2.1 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.68.2 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.68.3 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.80.0 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.80.1 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.80.2 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.80.3 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.80.4 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.88.0 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.88.1 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.88.2 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.88.3 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.88.4 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.88.5 │ │ └── SkiaSharp.Views.Forms.md │ └── 2.88.6 │ │ └── SkiaSharp.Views.Forms.md ├── SkiaSharp.Views.Forms.WPF │ ├── 1.68.1.1 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.68.1 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.68.2.1 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.68.2 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.68.3 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.80.0 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.80.1 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.80.2 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.80.3 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.80.4 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.88.0 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.88.1 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.88.2 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.88.3 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.88.4 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.88.5 │ │ └── SkiaSharp.Views.Forms.md │ └── 2.88.6 │ │ └── SkiaSharp.Views.Forms.md ├── SkiaSharp.Views.Forms │ ├── 1.55.0 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.55.1 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.56.0 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.56.1 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.56.2 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.57.0 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.57.1 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.58.0 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.58.1.1 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.58.1 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.59.0 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.59.1.1 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.59.1 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.59.2 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.59.3 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.60.0 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.60.1 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.60.2 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.60.3 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.68.0 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.68.1.1 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.68.1 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.68.2.1 │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.68.2 │ │ ├── SkiaSharp.Views.Forms.breaking.md │ │ └── SkiaSharp.Views.Forms.md │ ├── 1.68.3 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.80.0 │ │ ├── SkiaSharp.Views.Forms.breaking.md │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.80.1 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.80.2 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.80.3 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.80.4 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.88.0 │ │ ├── SkiaSharp.Views.Forms.breaking.md │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.88.1 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.88.2 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.88.3 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.88.4 │ │ └── SkiaSharp.Views.Forms.md │ ├── 2.88.5 │ │ └── SkiaSharp.Views.Forms.md │ └── 2.88.6 │ │ └── SkiaSharp.Views.Forms.md ├── SkiaSharp.Views.Gtk2 │ ├── 1.68.1.1 │ │ └── SkiaSharp.Views.Gtk.md │ ├── 1.68.1 │ │ └── SkiaSharp.Views.Gtk.md │ ├── 1.68.2.1 │ │ └── SkiaSharp.Views.Gtk.md │ ├── 1.68.2 │ │ └── SkiaSharp.Views.Gtk.md │ ├── 1.68.3 │ │ └── SkiaSharp.Views.Gtk.md │ ├── 2.80.0 │ │ └── SkiaSharp.Views.Gtk.md │ ├── 2.80.1 │ │ └── SkiaSharp.Views.Gtk.md │ ├── 2.80.2 │ │ └── SkiaSharp.Views.Gtk.md │ ├── 2.80.3 │ │ └── SkiaSharp.Views.Gtk.md │ ├── 2.80.4 │ │ └── SkiaSharp.Views.Gtk.md │ ├── 2.88.0 │ │ └── SkiaSharp.Views.Gtk.md │ ├── 2.88.1 │ │ └── SkiaSharp.Views.Gtk.md │ ├── 2.88.2 │ │ └── SkiaSharp.Views.Gtk.md │ ├── 2.88.3 │ │ └── SkiaSharp.Views.Gtk.md │ ├── 2.88.4 │ │ └── SkiaSharp.Views.Gtk.md │ ├── 2.88.5 │ │ └── SkiaSharp.Views.Gtk.md │ └── 2.88.6 │ │ └── SkiaSharp.Views.Gtk.md ├── SkiaSharp.Views.Gtk3 │ ├── 1.68.1.1 │ │ └── SkiaSharp.Views.Gtk3.md │ ├── 1.68.1 │ │ └── SkiaSharp.Views.Gtk3.md │ ├── 1.68.2.1 │ │ └── SkiaSharp.Views.Gtk3.md │ ├── 1.68.2 │ │ └── SkiaSharp.Views.Gtk3.md │ ├── 1.68.3 │ │ └── SkiaSharp.Views.Gtk3.md │ ├── 2.80.0 │ │ └── SkiaSharp.Views.Gtk3.md │ ├── 2.80.1 │ │ └── SkiaSharp.Views.Gtk3.md │ ├── 2.80.2 │ │ └── SkiaSharp.Views.Gtk3.md │ ├── 2.80.3 │ │ └── SkiaSharp.Views.Gtk3.md │ ├── 2.80.4 │ │ └── SkiaSharp.Views.Gtk3.md │ ├── 2.88.0 │ │ └── SkiaSharp.Views.Gtk3.md │ ├── 2.88.1 │ │ └── SkiaSharp.Views.Gtk3.md │ ├── 2.88.2 │ │ └── SkiaSharp.Views.Gtk3.md │ ├── 2.88.3 │ │ └── SkiaSharp.Views.Gtk3.md │ ├── 2.88.4 │ │ └── SkiaSharp.Views.Gtk3.md │ ├── 2.88.5 │ │ └── SkiaSharp.Views.Gtk3.md │ ├── 2.88.6 │ │ └── SkiaSharp.Views.Gtk3.md │ ├── 2.88.7 │ │ └── SkiaSharp.Views.Gtk3.md │ └── 3.0.0 │ │ └── SkiaSharp.Views.Gtk3.md ├── SkiaSharp.Views.Maui.Controls.Compatibility │ ├── 2.88.0 │ │ └── SkiaSharp.Views.Maui.Controls.Compatibility.md │ ├── 2.88.1 │ │ └── SkiaSharp.Views.Maui.Controls.Compatibility.md │ ├── 2.88.2 │ │ └── SkiaSharp.Views.Maui.Controls.Compatibility.md │ ├── 2.88.3 │ │ └── SkiaSharp.Views.Maui.Controls.Compatibility.md │ ├── 2.88.4 │ │ └── SkiaSharp.Views.Maui.Controls.Compatibility.md │ ├── 2.88.5 │ │ └── SkiaSharp.Views.Maui.Controls.Compatibility.md │ └── 2.88.6 │ │ └── SkiaSharp.Views.Maui.Controls.Compatibility.md ├── SkiaSharp.Views.Maui.Controls │ ├── 2.88.0 │ │ └── SkiaSharp.Views.Maui.Controls.md │ ├── 2.88.1 │ │ └── SkiaSharp.Views.Maui.Controls.md │ ├── 2.88.2 │ │ └── SkiaSharp.Views.Maui.Controls.md │ ├── 2.88.3 │ │ └── SkiaSharp.Views.Maui.Controls.md │ ├── 2.88.4 │ │ └── SkiaSharp.Views.Maui.Controls.md │ ├── 2.88.5 │ │ └── SkiaSharp.Views.Maui.Controls.md │ ├── 2.88.6 │ │ └── SkiaSharp.Views.Maui.Controls.md │ ├── 2.88.7 │ │ └── SkiaSharp.Views.Maui.Controls.md │ └── 3.0.0 │ │ ├── SkiaSharp.Views.Maui.Controls.breaking.md │ │ └── SkiaSharp.Views.Maui.Controls.md ├── SkiaSharp.Views.Maui.Core │ ├── 2.88.0 │ │ └── SkiaSharp.Views.Maui.Core.md │ ├── 2.88.1 │ │ └── SkiaSharp.Views.Maui.Core.md │ ├── 2.88.2 │ │ └── SkiaSharp.Views.Maui.Core.md │ ├── 2.88.3 │ │ └── SkiaSharp.Views.Maui.Core.md │ ├── 2.88.4 │ │ └── SkiaSharp.Views.Maui.Core.md │ ├── 2.88.5 │ │ └── SkiaSharp.Views.Maui.Core.md │ ├── 2.88.6 │ │ └── SkiaSharp.Views.Maui.Core.md │ ├── 2.88.7 │ │ └── SkiaSharp.Views.Maui.Core.md │ └── 3.0.0 │ │ └── SkiaSharp.Views.Maui.Core.md ├── SkiaSharp.Views.Uno.WinUI │ ├── 2.88.1 │ │ └── SkiaSharp.Views.Windows.md │ ├── 2.88.2 │ │ └── SkiaSharp.Views.Windows.md │ ├── 2.88.3 │ │ └── SkiaSharp.Views.Windows.md │ ├── 2.88.4 │ │ └── SkiaSharp.Views.Windows.md │ ├── 2.88.5 │ │ └── SkiaSharp.Views.Windows.md │ ├── 2.88.6 │ │ └── SkiaSharp.Views.Windows.md │ ├── 2.88.7 │ │ └── SkiaSharp.Views.Windows.md │ └── 3.0.0 │ │ ├── SkiaSharp.Views.Windows.breaking.md │ │ └── SkiaSharp.Views.Windows.md ├── SkiaSharp.Views.Uno │ ├── 2.80.1 │ │ └── SkiaSharp.Views.UWP.md │ ├── 2.80.2 │ │ └── SkiaSharp.Views.UWP.md │ ├── 2.80.3 │ │ ├── SkiaSharp.Views.UWP.breaking.md │ │ └── SkiaSharp.Views.UWP.md │ ├── 2.80.4 │ │ └── SkiaSharp.Views.UWP.md │ ├── 2.88.0 │ │ └── SkiaSharp.Views.UWP.md │ ├── 2.88.1 │ │ └── SkiaSharp.Views.UWP.md │ ├── 2.88.2 │ │ └── SkiaSharp.Views.UWP.md │ ├── 2.88.3 │ │ └── SkiaSharp.Views.UWP.md │ ├── 2.88.4 │ │ └── SkiaSharp.Views.UWP.md │ ├── 2.88.5 │ │ └── SkiaSharp.Views.UWP.md │ └── 2.88.6 │ │ └── SkiaSharp.Views.UWP.md ├── SkiaSharp.Views.WPF │ ├── 1.68.1.1 │ │ └── SkiaSharp.Views.WPF.md │ ├── 1.68.1 │ │ └── SkiaSharp.Views.WPF.md │ ├── 1.68.2.1 │ │ └── SkiaSharp.Views.WPF.md │ ├── 1.68.2 │ │ └── SkiaSharp.Views.WPF.md │ ├── 1.68.3 │ │ └── SkiaSharp.Views.WPF.md │ ├── 2.80.0 │ │ └── SkiaSharp.Views.WPF.md │ ├── 2.80.1 │ │ └── SkiaSharp.Views.WPF.md │ ├── 2.80.2 │ │ └── SkiaSharp.Views.WPF.md │ ├── 2.80.3 │ │ └── SkiaSharp.Views.WPF.md │ ├── 2.80.4 │ │ └── SkiaSharp.Views.WPF.md │ ├── 2.88.0 │ │ └── SkiaSharp.Views.WPF.md │ ├── 2.88.1 │ │ └── SkiaSharp.Views.WPF.md │ ├── 2.88.2 │ │ └── SkiaSharp.Views.WPF.md │ ├── 2.88.3 │ │ └── SkiaSharp.Views.WPF.md │ ├── 2.88.4 │ │ └── SkiaSharp.Views.WPF.md │ ├── 2.88.5 │ │ └── SkiaSharp.Views.WPF.md │ ├── 2.88.6 │ │ └── SkiaSharp.Views.WPF.md │ ├── 2.88.7 │ │ └── SkiaSharp.Views.WPF.md │ └── 3.0.0 │ │ └── SkiaSharp.Views.WPF.md ├── SkiaSharp.Views.WinUI │ ├── 2.80.3 │ │ └── SkiaSharp.Views.Windows.md │ ├── 2.80.4 │ │ └── SkiaSharp.Views.Windows.md │ ├── 2.88.0 │ │ └── SkiaSharp.Views.Windows.md │ ├── 2.88.1 │ │ └── SkiaSharp.Views.Windows.md │ ├── 2.88.2 │ │ └── SkiaSharp.Views.Windows.md │ ├── 2.88.3 │ │ └── SkiaSharp.Views.Windows.md │ ├── 2.88.4 │ │ └── SkiaSharp.Views.Windows.md │ ├── 2.88.5 │ │ └── SkiaSharp.Views.Windows.md │ ├── 2.88.6 │ │ └── SkiaSharp.Views.Windows.md │ ├── 2.88.7 │ │ └── SkiaSharp.Views.Windows.md │ └── 3.0.0 │ │ ├── SkiaSharp.Views.Windows.breaking.md │ │ └── SkiaSharp.Views.Windows.md ├── SkiaSharp.Views.WindowsForms │ ├── 1.68.1.1 │ │ └── SkiaSharp.Views.WindowsForms.md │ ├── 1.68.1 │ │ └── SkiaSharp.Views.WindowsForms.md │ ├── 1.68.2.1 │ │ └── SkiaSharp.Views.WindowsForms.md │ ├── 1.68.2 │ │ └── SkiaSharp.Views.WindowsForms.md │ ├── 1.68.3 │ │ └── SkiaSharp.Views.WindowsForms.md │ ├── 2.80.0 │ │ └── SkiaSharp.Views.WindowsForms.md │ ├── 2.80.1 │ │ └── SkiaSharp.Views.WindowsForms.md │ ├── 2.80.2 │ │ └── SkiaSharp.Views.WindowsForms.md │ ├── 2.80.3 │ │ └── SkiaSharp.Views.WindowsForms.md │ ├── 2.80.4 │ │ └── SkiaSharp.Views.WindowsForms.md │ ├── 2.88.0 │ │ └── SkiaSharp.Views.WindowsForms.md │ ├── 2.88.1 │ │ └── SkiaSharp.Views.WindowsForms.md │ ├── 2.88.2 │ │ └── SkiaSharp.Views.WindowsForms.md │ ├── 2.88.3 │ │ └── SkiaSharp.Views.WindowsForms.md │ ├── 2.88.4 │ │ └── SkiaSharp.Views.WindowsForms.md │ ├── 2.88.5 │ │ └── SkiaSharp.Views.WindowsForms.md │ ├── 2.88.6 │ │ └── SkiaSharp.Views.WindowsForms.md │ ├── 2.88.7 │ │ └── SkiaSharp.Views.WindowsForms.md │ └── 3.0.0 │ │ └── SkiaSharp.Views.WindowsForms.md ├── SkiaSharp.Views │ ├── 1.55.0 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.WPF.md │ │ ├── SkiaSharp.Views.iOS.md │ │ └── SkiaSharp.Views.tvOS.md │ ├── 1.55.1 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.WPF.md │ │ ├── SkiaSharp.Views.iOS.md │ │ └── SkiaSharp.Views.tvOS.md │ ├── 1.56.0 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.breaking.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.WPF.md │ │ ├── SkiaSharp.Views.iOS.breaking.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.breaking.md │ │ └── SkiaSharp.Views.tvOS.md │ ├── 1.56.1 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.WPF.md │ │ ├── SkiaSharp.Views.iOS.md │ │ └── SkiaSharp.Views.tvOS.md │ ├── 1.56.2 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.WPF.md │ │ ├── SkiaSharp.Views.iOS.md │ │ └── SkiaSharp.Views.tvOS.md │ ├── 1.57.0 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.WPF.md │ │ ├── SkiaSharp.Views.iOS.md │ │ └── SkiaSharp.Views.tvOS.md │ ├── 1.57.1 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.WPF.md │ │ ├── SkiaSharp.Views.iOS.md │ │ └── SkiaSharp.Views.tvOS.md │ ├── 1.58.0 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.WPF.md │ │ ├── SkiaSharp.Views.iOS.md │ │ └── SkiaSharp.Views.tvOS.md │ ├── 1.58.1.1 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.WPF.md │ │ ├── SkiaSharp.Views.iOS.md │ │ └── SkiaSharp.Views.tvOS.md │ ├── 1.58.1 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.WPF.md │ │ ├── SkiaSharp.Views.iOS.md │ │ └── SkiaSharp.Views.tvOS.md │ ├── 1.59.0 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.WPF.md │ │ ├── SkiaSharp.Views.iOS.md │ │ └── SkiaSharp.Views.tvOS.md │ ├── 1.59.1.1 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.WPF.md │ │ ├── SkiaSharp.Views.iOS.md │ │ └── SkiaSharp.Views.tvOS.md │ ├── 1.59.1 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.WPF.md │ │ ├── SkiaSharp.Views.iOS.md │ │ └── SkiaSharp.Views.tvOS.md │ ├── 1.59.2 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.WPF.md │ │ ├── SkiaSharp.Views.iOS.md │ │ └── SkiaSharp.Views.tvOS.md │ ├── 1.59.3 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.WPF.md │ │ ├── SkiaSharp.Views.iOS.md │ │ └── SkiaSharp.Views.tvOS.md │ ├── 1.60.0 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Gtk.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.WPF.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.md │ │ └── SkiaSharp.Views.watchOS.md │ ├── 1.60.1 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Gtk.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.Tizen.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.WPF.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.md │ │ └── SkiaSharp.Views.watchOS.md │ ├── 1.60.2 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Gtk.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.Tizen.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.WPF.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.md │ │ └── SkiaSharp.Views.watchOS.md │ ├── 1.60.3 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Gtk.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.Tizen.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.WPF.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.md │ │ └── SkiaSharp.Views.watchOS.md │ ├── 1.68.0 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Gtk.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.Tizen.md │ │ ├── SkiaSharp.Views.UWP.breaking.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.WPF.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.md │ │ └── SkiaSharp.Views.watchOS.md │ ├── 1.68.1.1 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.Tizen.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.md │ │ └── SkiaSharp.Views.watchOS.md │ ├── 1.68.1 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.breaking.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Gtk.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.Tizen.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.WPF.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.md │ │ └── SkiaSharp.Views.watchOS.md │ ├── 1.68.2.1 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.Tizen.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.md │ │ └── SkiaSharp.Views.watchOS.md │ ├── 1.68.2 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.Tizen.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.md │ │ └── SkiaSharp.Views.watchOS.md │ ├── 1.68.3 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.Tizen.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.md │ │ └── SkiaSharp.Views.watchOS.md │ ├── 2.80.0 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.Tizen.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.md │ │ └── SkiaSharp.Views.watchOS.md │ ├── 2.80.1 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.Tizen.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.md │ │ └── SkiaSharp.Views.watchOS.md │ ├── 2.80.2 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.Tizen.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.md │ │ └── SkiaSharp.Views.watchOS.md │ ├── 2.80.3 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.Tizen.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.md │ │ └── SkiaSharp.Views.watchOS.md │ ├── 2.80.4 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.Tizen.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.md │ │ └── SkiaSharp.Views.watchOS.md │ ├── 2.88.0 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.Tizen.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.md │ │ └── SkiaSharp.Views.watchOS.md │ ├── 2.88.1 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.Tizen.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.md │ │ └── SkiaSharp.Views.watchOS.md │ ├── 2.88.2 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.Tizen.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.md │ │ └── SkiaSharp.Views.watchOS.md │ ├── 2.88.3 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.Tizen.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.md │ │ └── SkiaSharp.Views.watchOS.md │ ├── 2.88.4 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.Tizen.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.md │ │ └── SkiaSharp.Views.watchOS.md │ ├── 2.88.5 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.Tizen.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.md │ │ └── SkiaSharp.Views.watchOS.md │ ├── 2.88.6 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.Tizen.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.md │ │ └── SkiaSharp.Views.watchOS.md │ ├── 2.88.7 │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Desktop.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.Tizen.md │ │ ├── SkiaSharp.Views.UWP.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.md │ │ └── SkiaSharp.Views.watchOS.md │ └── 3.0.0 │ │ ├── SkiaSharp.Views.Android.breaking.md │ │ ├── SkiaSharp.Views.Android.md │ │ ├── SkiaSharp.Views.Mac.breaking.md │ │ ├── SkiaSharp.Views.Mac.md │ │ ├── SkiaSharp.Views.Tizen.breaking.md │ │ ├── SkiaSharp.Views.Tizen.md │ │ ├── SkiaSharp.Views.iOS.breaking.md │ │ ├── SkiaSharp.Views.iOS.md │ │ ├── SkiaSharp.Views.tvOS.breaking.md │ │ └── SkiaSharp.Views.tvOS.md ├── SkiaSharp.Vulkan.SharpVk │ ├── 2.80.0 │ │ └── SkiaSharp.Vulkan.SharpVk.md │ ├── 2.80.1 │ │ └── SkiaSharp.Vulkan.SharpVk.md │ ├── 2.80.2 │ │ └── SkiaSharp.Vulkan.SharpVk.md │ ├── 2.80.3 │ │ └── SkiaSharp.Vulkan.SharpVk.md │ ├── 2.80.4 │ │ └── SkiaSharp.Vulkan.SharpVk.md │ ├── 2.88.0 │ │ └── SkiaSharp.Vulkan.SharpVk.md │ ├── 2.88.1 │ │ └── SkiaSharp.Vulkan.SharpVk.md │ ├── 2.88.2 │ │ └── SkiaSharp.Vulkan.SharpVk.md │ ├── 2.88.3 │ │ └── SkiaSharp.Vulkan.SharpVk.md │ ├── 2.88.4 │ │ └── SkiaSharp.Vulkan.SharpVk.md │ ├── 2.88.5 │ │ └── SkiaSharp.Vulkan.SharpVk.md │ ├── 2.88.6 │ │ └── SkiaSharp.Vulkan.SharpVk.md │ ├── 2.88.7 │ │ └── SkiaSharp.Vulkan.SharpVk.md │ └── 3.0.0 │ │ └── SkiaSharp.Vulkan.SharpVk.md └── SkiaSharp │ ├── 1.49.1 │ └── SkiaSharp.md │ ├── 1.53.0 │ ├── SkiaSharp.breaking.md │ └── SkiaSharp.md │ ├── 1.53.1.1 │ └── SkiaSharp.md │ ├── 1.53.1.2 │ └── SkiaSharp.md │ ├── 1.53.1 │ ├── SkiaSharp.breaking.md │ └── SkiaSharp.md │ ├── 1.54.0 │ ├── SkiaSharp.breaking.md │ └── SkiaSharp.md │ ├── 1.54.1 │ ├── SkiaSharp.breaking.md │ └── SkiaSharp.md │ ├── 1.55.0 │ ├── SkiaSharp.breaking.md │ └── SkiaSharp.md │ ├── 1.55.1 │ └── SkiaSharp.md │ ├── 1.56.0 │ ├── SkiaSharp.breaking.md │ └── SkiaSharp.md │ ├── 1.56.1 │ └── SkiaSharp.md │ ├── 1.56.2 │ ├── SkiaSharp.breaking.md │ └── SkiaSharp.md │ ├── 1.57.0 │ ├── SkiaSharp.breaking.md │ └── SkiaSharp.md │ ├── 1.57.1 │ └── SkiaSharp.md │ ├── 1.58.0 │ ├── SkiaSharp.breaking.md │ └── SkiaSharp.md │ ├── 1.58.1 │ ├── SkiaSharp.breaking.md │ └── SkiaSharp.md │ ├── 1.59.0 │ ├── SkiaSharp.breaking.md │ └── SkiaSharp.md │ ├── 1.59.1 │ └── SkiaSharp.md │ ├── 1.59.2 │ └── SkiaSharp.md │ ├── 1.59.3 │ └── SkiaSharp.md │ ├── 1.60.0 │ ├── SkiaSharp.breaking.md │ └── SkiaSharp.md │ ├── 1.60.1 │ └── SkiaSharp.md │ ├── 1.60.2 │ └── SkiaSharp.md │ ├── 1.60.3 │ └── SkiaSharp.md │ ├── 1.68.0 │ ├── SkiaSharp.breaking.md │ ├── SkiaSharp.md │ └── gpu-migration.md │ ├── 1.68.1.1 │ └── SkiaSharp.md │ ├── 1.68.1 │ ├── SkiaSharp.breaking.md │ ├── SkiaSharp.humanreadable.md │ └── SkiaSharp.md │ ├── 1.68.2.1 │ └── SkiaSharp.md │ ├── 1.68.2 │ ├── SkiaSharp.breaking.md │ ├── SkiaSharp.humanreadable.md │ └── SkiaSharp.md │ ├── 1.68.3 │ └── SkiaSharp.md │ ├── 2.80.0 │ ├── SkiaSharp.breaking.md │ └── SkiaSharp.md │ ├── 2.80.1 │ └── SkiaSharp.md │ ├── 2.80.2 │ └── SkiaSharp.md │ ├── 2.80.3 │ └── SkiaSharp.md │ ├── 2.80.4 │ └── SkiaSharp.md │ ├── 2.88.0 │ ├── SkiaSharp.breaking.md │ └── SkiaSharp.md │ ├── 2.88.1 │ ├── SkiaSharp.breaking.md │ └── SkiaSharp.md │ ├── 2.88.2 │ └── SkiaSharp.md │ ├── 2.88.3 │ └── SkiaSharp.md │ ├── 2.88.4 │ └── SkiaSharp.md │ ├── 2.88.5 │ └── SkiaSharp.md │ ├── 2.88.6 │ └── SkiaSharp.md │ ├── 2.88.7 │ └── SkiaSharp.md │ └── 3.0.0 │ ├── SkiaSharp.breaking.md │ ├── SkiaSharp.humanreadable.md │ └── SkiaSharp.md ├── externals └── .gitignore ├── global.json ├── images ├── SkiaSharpLogo.svg ├── forground.png ├── icon.png ├── icon_1024x1024.png ├── icon_128x128.png ├── icon_256x256.png ├── icon_512x512.png ├── nuget.png ├── nuget_1024.png ├── nuget_2048.png ├── nuget_old.png ├── nuget_wide.png ├── nuget_wide_old.png ├── skia_1024.png ├── skia_1024x1024.png ├── skia_128.png ├── skia_128x128.png ├── skia_16x16.png ├── skia_256.png ├── skia_256x256.png ├── skia_32x32.png ├── skia_512.png ├── skia_512x512.png └── skia_64x64.png ├── interactive ├── Gradients.dib └── README.dib ├── native ├── .gitignore ├── android │ ├── build.cake │ └── libHarfBuzzSharp │ │ ├── .gitignore │ │ └── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ └── HarfBuzzSharp.mk ├── ios │ ├── build.cake │ ├── libHarfBuzzSharp │ │ ├── libHarfBuzzSharp.xcodeproj │ │ │ └── project.pbxproj │ │ └── libHarfBuzzSharp │ │ │ ├── Info.plist │ │ │ └── libHarfBuzzSharp.h │ └── libSkiaSharp │ │ ├── libSkiaSharp.xcodeproj │ │ └── project.pbxproj │ │ └── libSkiaSharp │ │ ├── Info.plist │ │ └── libSkiaSharp.h ├── linux-clang-cross │ └── build.cake ├── linux │ ├── build.cake │ ├── libHarfBuzzSharp │ │ └── libHarfBuzzSharp.map │ └── libSkiaSharp │ │ └── libSkiaSharp.map ├── linuxnodeps │ └── build.cake ├── maccatalyst │ └── build.cake ├── macos │ ├── build.cake │ ├── libHarfBuzzSharp │ │ └── libHarfBuzzSharp.xcodeproj │ │ │ └── project.pbxproj │ └── libSkiaSharp │ │ └── libSkiaSharp.xcodeproj │ │ └── project.pbxproj ├── nanoserver │ └── build.cake ├── tizen │ ├── build.cake │ ├── libHarfBuzzSharp │ │ └── project_def.prop │ └── libSkiaSharp │ │ └── project_def.prop ├── tvos │ ├── build.cake │ ├── libHarfBuzzSharp │ │ ├── libHarfBuzzSharp.xcodeproj │ │ │ └── project.pbxproj │ │ └── libHarfBuzzSharp │ │ │ ├── Info.plist │ │ │ └── libHarfBuzzSharp.h │ └── libSkiaSharp │ │ ├── libSkiaSharp.xcodeproj │ │ └── project.pbxproj │ │ └── libSkiaSharp │ │ ├── Info.plist │ │ └── libSkiaSharp.h ├── wasm │ └── build.cake ├── windows │ ├── build.cake │ └── libHarfBuzzSharp │ │ ├── libHarfBuzzSharp.sln │ │ └── libHarfBuzzSharp.vcxproj ├── winui-angle │ └── build.cake └── winui │ ├── SkiaSharp.Views.WinUI.Native │ ├── SkiaSharp.Views.WinUI.Native.Projection │ │ ├── Directory.Build.props │ │ ├── Directory.Build.targets │ │ └── SkiaSharp.Views.WinUI.Native.Projection.csproj │ ├── SkiaSharp.Views.WinUI.Native.sln │ └── SkiaSharp.Views.WinUI.Native │ │ ├── BufferExtensions.cpp │ │ ├── BufferExtensions.h │ │ ├── BufferExtensions.idl │ │ ├── PropertySetExtensions.cpp │ │ ├── PropertySetExtensions.h │ │ ├── PropertySetExtensions.idl │ │ ├── SkiaSharp.Views.WinUI.Native.vcxproj │ │ ├── SkiaSharp.Views.WinUI.Native.vcxproj.filters │ │ ├── SkiaSharp_Views_WinUI_Native.def │ │ ├── packages.config │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── readme.txt │ └── build.cake ├── nuget.config ├── samples ├── .gitignore ├── AppStoreCertificates │ ├── SkiaSharp.keyInfo │ ├── SkiaSharp.keystore │ └── SkiaSharpSample_TemporaryKey.pfx ├── Basic │ ├── Android │ │ ├── SkiaSharpSample.Mac.slnf │ │ ├── SkiaSharpSample.Windows.slnf │ │ ├── SkiaSharpSample.sln │ │ └── SkiaSharpSample │ │ │ ├── MainActivity.cs │ │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ │ └── main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ │ ├── Strings.xml │ │ │ │ └── ic_launcher_background.xml │ │ │ └── SkiaSharpSample.csproj │ ├── BlazorWebAssembly │ │ ├── SkiaSharpSample.sln │ │ └── SkiaSharpSample │ │ │ ├── App.razor │ │ │ ├── Layout │ │ │ ├── MainLayout.razor │ │ │ ├── MainLayout.razor.css │ │ │ ├── NavMenu.razor │ │ │ └── NavMenu.razor.css │ │ │ ├── Pages │ │ │ ├── GPU.razor │ │ │ ├── Home.razor │ │ │ └── Raster.razor │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── SkiaSharpSample.csproj │ │ │ ├── _Imports.razor │ │ │ └── wwwroot │ │ │ ├── css │ │ │ ├── app.css │ │ │ └── bootstrap │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── favicon.ico │ │ │ └── index.html │ ├── BrowserWebAssembly │ │ ├── SkiaSharpSample.sln │ │ └── SkiaSharpSample │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── launchSettings.json │ │ │ ├── SkiaSharpSample.csproj │ │ │ ├── runtimeconfig.template.json │ │ │ └── wwwroot │ │ │ ├── index.html │ │ │ └── main.js │ ├── Console │ │ ├── SkiaSharpSample.sln │ │ └── SkiaSharpSample │ │ │ ├── Program.cs │ │ │ └── SkiaSharpSample.csproj │ ├── Docker │ │ ├── Console │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ ├── SkiaSharpSample.Docker.sln │ │ │ ├── SkiaSharpSample │ │ │ │ ├── Program.cs │ │ │ │ └── SkiaSharpSample.csproj │ │ │ ├── nuget.config │ │ │ └── run.ps1 │ │ └── WebApi │ │ │ ├── .dockerignore │ │ │ ├── SkiaSharpSample.Docker.sln │ │ │ ├── SkiaSharpSample │ │ │ ├── Controllers │ │ │ │ └── Images.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── SkiaSharpSample.csproj │ │ │ ├── Startup.cs │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ │ ├── linux.Dockerfile │ │ │ ├── nuget.config │ │ │ ├── run.ps1 │ │ │ └── windows.Dockerfile │ ├── Gtk3 │ │ ├── SkiaSharpSample.sln │ │ └── SkiaSharpSample │ │ │ ├── MainWindow.cs │ │ │ ├── MainWindow.glade │ │ │ ├── Program.cs │ │ │ └── SkiaSharpSample.csproj │ ├── MacCatalyst │ │ ├── SkiaSharpSample.Mac.slnf │ │ ├── SkiaSharpSample.Windows.slnf │ │ ├── SkiaSharpSample.sln │ │ └── SkiaSharpSample │ │ │ ├── AppDelegate.cs │ │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon1024.png │ │ │ │ ├── Icon128.png │ │ │ │ ├── Icon16.png │ │ │ │ ├── Icon256.png │ │ │ │ ├── Icon32.png │ │ │ │ ├── Icon512.png │ │ │ │ └── Icon64.png │ │ │ ├── Entitlements.plist │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Resources │ │ │ └── LaunchScreen.xib │ │ │ ├── SceneDelegate.cs │ │ │ └── SkiaSharpSample.csproj │ ├── Maui │ │ ├── SkiaSharpSample.Mac.sln │ │ ├── SkiaSharpSample.Mac.slnf │ │ ├── SkiaSharpSample.Windows.slnf │ │ ├── SkiaSharpSample.sln │ │ └── SkiaSharpSample │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── MauiProgram.cs │ │ │ ├── Platforms │ │ │ ├── Android │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── MainActivity.cs │ │ │ │ └── MainApplication.cs │ │ │ ├── MacCatalyst │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Info.plist │ │ │ │ └── Program.cs │ │ │ ├── Tizen │ │ │ │ ├── Main.cs │ │ │ │ └── tizen-manifest.xml │ │ │ ├── Windows │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── Package.appxmanifest │ │ │ │ └── app.manifest │ │ │ └── iOS │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Info.plist │ │ │ │ └── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Resources │ │ │ ├── appicon.png │ │ │ └── skiasharplogo.png │ │ │ └── SkiaSharpSample.csproj │ ├── Tizen │ │ ├── SkiaSharpSample.sln │ │ └── SkiaSharpSample │ │ │ ├── App.cs │ │ │ ├── SkiaSharpSample.csproj │ │ │ ├── shared │ │ │ └── res │ │ │ │ └── SkiaSharpSample.png │ │ │ └── tizen-manifest.xml │ ├── UnoPlatform │ │ ├── SkiaSharpSample.sln │ │ └── SkiaSharpSample │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ ├── Icons │ │ │ │ ├── icon.svg │ │ │ │ └── icon_foreground.svg │ │ │ ├── SharedAssets.md │ │ │ └── Splash │ │ │ │ └── splash_screen.svg │ │ │ ├── GlobalUsings.cs │ │ │ ├── MainPage.utils.cs │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── Platforms │ │ │ ├── Android │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── Assets │ │ │ │ │ └── AboutAssets.txt │ │ │ │ ├── Main.Android.cs │ │ │ │ ├── MainActivity.Android.cs │ │ │ │ ├── Resources │ │ │ │ │ ├── AboutResources.txt │ │ │ │ │ └── values │ │ │ │ │ │ ├── Strings.xml │ │ │ │ │ │ └── Styles.xml │ │ │ │ └── environment.conf │ │ │ ├── Desktop │ │ │ │ └── Program.cs │ │ │ ├── MacCatalyst │ │ │ │ ├── Entitlements.plist │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.maccatalyst.cs │ │ │ │ └── Media.xcassets │ │ │ │ │ └── LaunchImages.launchimage │ │ │ │ │ └── Contents.json │ │ │ ├── WebAssembly │ │ │ │ ├── LinkerConfig.xml │ │ │ │ ├── Program.cs │ │ │ │ ├── WasmCSS │ │ │ │ │ └── Fonts.css │ │ │ │ ├── WasmScripts │ │ │ │ │ └── AppManifest.js │ │ │ │ ├── manifest.webmanifest │ │ │ │ └── wwwroot │ │ │ │ │ ├── staticwebapp.config.json │ │ │ │ │ └── web.config │ │ │ └── iOS │ │ │ │ ├── Entitlements.plist │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.iOS.cs │ │ │ │ ├── Media.xcassets │ │ │ │ └── LaunchImages.launchimage │ │ │ │ │ └── Contents.json │ │ │ │ └── PrivacyInfo.xcprivacy │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── SkiaSharpSample.csproj │ │ │ ├── Strings │ │ │ └── en │ │ │ │ └── Resources.resw │ │ │ └── app.manifest │ ├── WPF │ │ ├── SkiaSharpSample.Windows.slnf │ │ ├── SkiaSharpSample.sln │ │ └── SkiaSharpSample │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── SkiaSharpSample.csproj │ │ │ └── icon.ico │ ├── Web │ │ ├── SkiaSharpSample.sln │ │ └── SkiaSharpSample │ │ │ ├── Controllers │ │ │ └── Api │ │ │ │ └── ImagesController.cs │ │ │ ├── Pages │ │ │ ├── Error.cshtml │ │ │ ├── Error.cshtml.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── Privacy.cshtml │ │ │ ├── Privacy.cshtml.cs │ │ │ ├── Shared │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _Layout.cshtml.css │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── SkiaSharpSample.csproj │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ └── wwwroot │ │ │ ├── css │ │ │ └── site.css │ │ │ ├── favicon.ico │ │ │ ├── js │ │ │ └── site.js │ │ │ └── lib │ │ │ ├── bootstrap │ │ │ ├── LICENSE │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ ├── bootstrap-utilities.css.map │ │ │ │ ├── bootstrap-utilities.min.css │ │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.esm.js │ │ │ │ ├── bootstrap.esm.js.map │ │ │ │ ├── bootstrap.esm.min.js │ │ │ │ ├── bootstrap.esm.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── LICENSE.txt │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ ├── jquery-validation │ │ │ ├── LICENSE.md │ │ │ └── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ └── jquery.validate.min.js │ │ │ └── jquery │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ ├── WinUI │ │ ├── SkiaSharpSample.Windows.slnf │ │ ├── SkiaSharpSample.sln │ │ └── SkiaSharpSample │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Images │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── SkiaSharpSample.csproj │ │ │ └── app.manifest │ ├── WindowsForms │ │ ├── SkiaSharpSample.Windows.slnf │ │ ├── SkiaSharpSample.sln │ │ └── SkiaSharpSample │ │ │ ├── App.config │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── SkiaSharpSample.csproj │ │ │ ├── app.manifest │ │ │ └── icon.ico │ ├── iOS │ │ ├── SkiaSharpSample.Mac.slnf │ │ ├── SkiaSharpSample.sln │ │ └── SkiaSharpSample │ │ │ ├── AppDelegate.cs │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon1024.png │ │ │ │ ├── Icon120.png │ │ │ │ ├── Icon152.png │ │ │ │ ├── Icon167.png │ │ │ │ ├── Icon180.png │ │ │ │ ├── Icon20.png │ │ │ │ ├── Icon29.png │ │ │ │ ├── Icon40.png │ │ │ │ ├── Icon58.png │ │ │ │ ├── Icon60.png │ │ │ │ ├── Icon76.png │ │ │ │ ├── Icon80.png │ │ │ │ └── Icon87.png │ │ │ └── Contents.json │ │ │ ├── Entitlements.plist │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── Main.cs │ │ │ ├── Main.storyboard │ │ │ ├── SkiaSharpSample.csproj │ │ │ ├── ViewController.cs │ │ │ └── ViewController.designer.cs │ ├── macOS │ │ ├── SkiaSharpSample.Mac.slnf │ │ ├── SkiaSharpSample.Windows.slnf │ │ ├── SkiaSharpSample.sln │ │ └── SkiaSharpSample │ │ │ ├── AppDelegate.cs │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon1024.png │ │ │ │ ├── Icon128.png │ │ │ │ ├── Icon16.png │ │ │ │ ├── Icon256.png │ │ │ │ ├── Icon32.png │ │ │ │ ├── Icon512.png │ │ │ │ └── Icon64.png │ │ │ └── Contents.json │ │ │ ├── Entitlements.plist │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Main.storyboard │ │ │ ├── SkiaSharpSample.csproj │ │ │ ├── ViewController.cs │ │ │ └── ViewController.designer.cs │ └── tvOS │ │ ├── SkiaSharpSample.Mac.slnf │ │ ├── SkiaSharpSample.Windows.slnf │ │ ├── SkiaSharpSample.sln │ │ └── SkiaSharpSample │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - Large.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon - Small.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Top Shelf Image Wide.imageset │ │ │ │ └── Contents.json │ │ │ └── Top Shelf Image.imageset │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── LaunchImages.launchimage │ │ │ └── Contents.json │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Main.storyboard │ │ ├── SkiaSharpSample.csproj │ │ ├── ViewController.cs │ │ └── ViewController.designer.cs ├── Directory.Build.props ├── Directory.Build.targets ├── Gallery │ ├── Desktop │ │ ├── SkiaSharpSample.Skip.sln │ │ └── SkiaSharpSample │ │ │ ├── App.config │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── SkiaSharpSample.csproj │ │ │ ├── app.manifest │ │ │ └── icon.ico │ ├── PlatformShared │ │ └── SamplesInitializer.cs │ ├── Shared │ │ ├── Media │ │ │ ├── LottieLogo1.json │ │ │ ├── adobe-dng.dng │ │ │ ├── animated-heart.gif │ │ │ ├── baboon.png │ │ │ ├── baby_tux.webp │ │ │ ├── color-wheel.png │ │ │ ├── content-font.ttf │ │ │ ├── embedded-font.ttf │ │ │ ├── logos.svg │ │ │ ├── nine-patch.png │ │ │ └── opacity.svg │ │ ├── PreserveAttribute.cs │ │ ├── SampleBackends.cs │ │ ├── SampleBase.cs │ │ ├── SampleCategories.cs │ │ ├── SampleMedia.cs │ │ ├── SamplePlatforms.cs │ │ ├── Samples │ │ │ ├── BitmapAnnotationSample.cs │ │ │ ├── BitmapDecoderSample.cs │ │ │ ├── BitmapLatticeSample.cs │ │ │ ├── BitmapScalerSample.cs │ │ │ ├── BitmapShaderSample.cs │ │ │ ├── BitmapSubsetDecoderSample.cs │ │ │ ├── BlurImageFilterSample.cs │ │ │ ├── BlurMaskFilterSample.cs │ │ │ ├── ChainedImageFilterSample.cs │ │ │ ├── ColorMatrixColorFilterSample.cs │ │ │ ├── ColorTableColorFilterSample.cs │ │ │ ├── ComposeShaderSample.cs │ │ │ ├── CreatePdfSample.cs │ │ │ ├── CreateXpsSample.cs │ │ │ ├── CustomFontsSample.cs │ │ │ ├── DecodeGifFramesSample.cs │ │ │ ├── DilateImageFilterSample.cs │ │ │ ├── DngDecoderSample.cs │ │ │ ├── DrawMatrixSample.cs │ │ │ ├── DrawVerticesSample.cs │ │ │ ├── ErodeImageFilterSample.cs │ │ │ ├── FilledHeptagramSample.cs │ │ │ ├── FractalPerlinNoiseShaderSample.cs │ │ │ ├── GradientSample.cs │ │ │ ├── HighContrastColorFilterSample.cs │ │ │ ├── LumaColorFilterSample.cs │ │ │ ├── MagnifierImageFilterSample.cs │ │ │ ├── ManipulatedBitmapShaderSample.cs │ │ │ ├── MeasureTextSample.cs │ │ │ ├── PathBoundsSample.cs │ │ │ ├── PathConicToQuadsSample.cs │ │ │ ├── PathEffect2DPathSample.cs │ │ │ ├── PathEffectsSample.cs │ │ │ ├── PathMeasureSample.cs │ │ │ ├── SkottieSample.cs │ │ │ ├── SweepGradientShaderSample.cs │ │ │ ├── TextOnPathSample.cs │ │ │ ├── TextSample.cs │ │ │ ├── TextShapingSample.cs │ │ │ ├── ThreeDSample.cs │ │ │ ├── ThreeDSamplePerspective.cs │ │ │ ├── TurbulencePerlinNoiseShaderSample.cs │ │ │ ├── UnicodeTextSample.cs │ │ │ ├── XamagonSample.cs │ │ │ ├── XferModeColorFilterSample.cs │ │ │ └── XfermodeSample.cs │ │ └── SamplesManager.cs │ ├── UWP │ │ ├── SkiaSharpSample.Skip.sln │ │ └── SkiaSharpSample │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ ├── LargeTile.scale-100.png │ │ │ ├── LargeTile.scale-125.png │ │ │ ├── LargeTile.scale-150.png │ │ │ ├── LargeTile.scale-200.png │ │ │ ├── LargeTile.scale-400.png │ │ │ ├── SmallTile.scale-100.png │ │ │ ├── SmallTile.scale-125.png │ │ │ ├── SmallTile.scale-150.png │ │ │ ├── SmallTile.scale-200.png │ │ │ ├── SmallTile.scale-400.png │ │ │ ├── SplashScreen.scale-100.png │ │ │ ├── SplashScreen.scale-125.png │ │ │ ├── SplashScreen.scale-150.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── SplashScreen.scale-400.png │ │ │ ├── Square150x150Logo.scale-100.png │ │ │ ├── Square150x150Logo.scale-125.png │ │ │ ├── Square150x150Logo.scale-150.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square150x150Logo.scale-400.png │ │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-24.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ │ ├── Square44x44Logo.scale-100.png │ │ │ ├── Square44x44Logo.scale-125.png │ │ │ ├── Square44x44Logo.scale-150.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-400.png │ │ │ ├── Square44x44Logo.targetsize-16.png │ │ │ ├── Square44x44Logo.targetsize-24.png │ │ │ ├── Square44x44Logo.targetsize-256.png │ │ │ ├── Square44x44Logo.targetsize-32.png │ │ │ ├── Square44x44Logo.targetsize-48.png │ │ │ ├── StoreLogo.scale-100.png │ │ │ ├── StoreLogo.scale-125.png │ │ │ ├── StoreLogo.scale-150.png │ │ │ ├── StoreLogo.scale-200.png │ │ │ ├── StoreLogo.scale-400.png │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ ├── Wide310x150Logo.scale-125.png │ │ │ ├── Wide310x150Logo.scale-150.png │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ └── Wide310x150Logo.scale-400.png │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ │ └── SkiaSharpSample.csproj │ ├── Uno.WinUI │ │ ├── .vsconfig │ │ ├── SkiaSharpSample.Mobile │ │ │ ├── Android │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── Assets │ │ │ │ │ ├── AboutAssets.txt │ │ │ │ │ └── Fonts │ │ │ │ │ │ └── uno-fluentui-assets.ttf │ │ │ │ ├── Main.Android.cs │ │ │ │ ├── MainActivity.Android.cs │ │ │ │ └── Resources │ │ │ │ │ ├── AboutResources.txt │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── icon.png │ │ │ │ │ ├── mipmap-ldpi │ │ │ │ │ └── icon.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── icon.png │ │ │ │ │ ├── mipmap-tvdpi │ │ │ │ │ └── icon.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── icon.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── icon.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── icon.png │ │ │ │ │ └── values │ │ │ │ │ ├── Strings.xml │ │ │ │ │ └── Styles.xml │ │ │ ├── MacCatalyst │ │ │ │ ├── Entitlements.plist │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ ├── Main.maccatalyst.cs │ │ │ │ ├── Media.xcassets │ │ │ │ │ ├── AppIcons.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon1024.png │ │ │ │ │ │ ├── Icon120.png │ │ │ │ │ │ ├── Icon152.png │ │ │ │ │ │ ├── Icon167.png │ │ │ │ │ │ ├── Icon180.png │ │ │ │ │ │ ├── Icon20.png │ │ │ │ │ │ ├── Icon29.png │ │ │ │ │ │ ├── Icon40.png │ │ │ │ │ │ ├── Icon58.png │ │ │ │ │ │ ├── Icon60.png │ │ │ │ │ │ ├── Icon76.png │ │ │ │ │ │ ├── Icon80.png │ │ │ │ │ │ └── Icon87.png │ │ │ │ │ └── LaunchImages.launchimage │ │ │ │ │ │ └── Contents.json │ │ │ │ └── Resources │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Fonts │ │ │ │ │ └── uno-fluentui-assets.ttf │ │ │ │ │ ├── SplashScreen@2x.png │ │ │ │ │ └── SplashScreen@3x.png │ │ │ ├── SkiaSharpSample.Mobile.csproj │ │ │ ├── iOS │ │ │ │ ├── Entitlements.plist │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ ├── Main.iOS.cs │ │ │ │ ├── Media.xcassets │ │ │ │ │ ├── AppIcons.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Icon1024.png │ │ │ │ │ │ ├── Icon120.png │ │ │ │ │ │ ├── Icon152.png │ │ │ │ │ │ ├── Icon167.png │ │ │ │ │ │ ├── Icon180.png │ │ │ │ │ │ ├── Icon20.png │ │ │ │ │ │ ├── Icon29.png │ │ │ │ │ │ ├── Icon40.png │ │ │ │ │ │ ├── Icon58.png │ │ │ │ │ │ ├── Icon60.png │ │ │ │ │ │ ├── Icon76.png │ │ │ │ │ │ ├── Icon80.png │ │ │ │ │ │ └── Icon87.png │ │ │ │ │ └── LaunchImages.launchimage │ │ │ │ │ │ └── Contents.json │ │ │ │ └── Resources │ │ │ │ │ ├── Default-568h@2x.png │ │ │ │ │ ├── Fonts │ │ │ │ │ └── uno-fluentui-assets.ttf │ │ │ │ │ ├── SplashScreen@2x.png │ │ │ │ │ └── SplashScreen@3x.png │ │ │ └── macOS │ │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── AppIcon-128.png │ │ │ │ │ ├── AppIcon-128@2x.png │ │ │ │ │ ├── AppIcon-16.png │ │ │ │ │ ├── AppIcon-16@2x.png │ │ │ │ │ ├── AppIcon-256.png │ │ │ │ │ ├── AppIcon-256@2x.png │ │ │ │ │ ├── AppIcon-32.png │ │ │ │ │ ├── AppIcon-32@2x.png │ │ │ │ │ ├── AppIcon-512.png │ │ │ │ │ ├── AppIcon-512@2x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── unologo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── unoplatform.jpg │ │ │ │ ├── Entitlements.plist │ │ │ │ ├── Info.plist │ │ │ │ ├── Main.cs │ │ │ │ └── Resources │ │ │ │ └── Fonts │ │ │ │ └── uno-fluentui-assets.ttf │ │ ├── SkiaSharpSample.Skia.Gtk │ │ │ ├── Assets │ │ │ │ └── Fonts │ │ │ │ │ └── uno-fluentui-assets.ttf │ │ │ ├── Program.cs │ │ │ └── SkiaSharpSample.Skia.Gtk.csproj │ │ ├── SkiaSharpSample.Skia.WPF.Host │ │ │ ├── App.config │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ │ └── Fonts │ │ │ │ │ └── uno-fluentui-assets.ttf │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ └── SkiaSharpSample.Skia.Wpf.Host.csproj │ │ ├── SkiaSharpSample.Skia.WPF │ │ │ ├── Program.cs │ │ │ └── SkiaSharpSample.Skia.WPF.csproj │ │ ├── SkiaSharpSample.Skip.sln │ │ ├── SkiaSharpSample.Wasm │ │ │ ├── Assets │ │ │ │ └── SplashScreen.png │ │ │ ├── LinkerConfig.xml │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── SkiaSharpSample.Wasm.csproj │ │ │ ├── WasmCSS │ │ │ │ └── Fonts.css │ │ │ ├── WasmScripts │ │ │ │ └── AppManifest.js │ │ │ └── wwwroot │ │ │ │ └── web.config │ │ └── SkiaSharpSample.WinUI.Shared │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── SkiaSharpSample.WinUI.Shared.projitems │ │ │ └── SkiaSharpSample.WinUI.Shared.shproj │ ├── Uno │ │ ├── SkiaSharpSample.Android │ │ │ ├── Assets │ │ │ │ └── Fonts │ │ │ │ │ └── winjs-symbols.ttf │ │ │ ├── Main.cs │ │ │ ├── MainActivity.cs │ │ │ ├── Properties │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ │ ├── Strings.xml │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ └── styles.xml │ │ │ └── SkiaSharpSample.Android.csproj │ │ ├── SkiaSharpSample.Gtk │ │ │ ├── Assets │ │ │ │ └── Fonts │ │ │ │ │ └── uno-fluentui-assets.ttf │ │ │ ├── Program.cs │ │ │ └── SkiaSharpSample.Gtk.csproj │ │ ├── SkiaSharpSample.Shared │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── SkiaSharpSample.Shared.projitems │ │ │ └── SkiaSharpSample.Shared.shproj │ │ ├── SkiaSharpSample.Skip.sln │ │ ├── SkiaSharpSample.UWP │ │ │ ├── Assets │ │ │ │ ├── LargeTile.scale-100.png │ │ │ │ ├── LargeTile.scale-125.png │ │ │ │ ├── LargeTile.scale-150.png │ │ │ │ ├── LargeTile.scale-200.png │ │ │ │ ├── LargeTile.scale-400.png │ │ │ │ ├── SmallTile.scale-100.png │ │ │ │ ├── SmallTile.scale-125.png │ │ │ │ ├── SmallTile.scale-150.png │ │ │ │ ├── SmallTile.scale-200.png │ │ │ │ ├── SmallTile.scale-400.png │ │ │ │ ├── SplashScreen.scale-100.png │ │ │ │ ├── SplashScreen.scale-125.png │ │ │ │ ├── SplashScreen.scale-150.png │ │ │ │ ├── SplashScreen.scale-200.png │ │ │ │ ├── SplashScreen.scale-400.png │ │ │ │ ├── Square150x150Logo.scale-100.png │ │ │ │ ├── Square150x150Logo.scale-125.png │ │ │ │ ├── Square150x150Logo.scale-150.png │ │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ │ ├── Square150x150Logo.scale-400.png │ │ │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ │ │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ │ │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ │ │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ │ │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-24.png │ │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ │ │ ├── Square44x44Logo.scale-100.png │ │ │ │ ├── Square44x44Logo.scale-125.png │ │ │ │ ├── Square44x44Logo.scale-150.png │ │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.scale-400.png │ │ │ │ ├── Square44x44Logo.targetsize-16.png │ │ │ │ ├── Square44x44Logo.targetsize-24.png │ │ │ │ ├── Square44x44Logo.targetsize-256.png │ │ │ │ ├── Square44x44Logo.targetsize-32.png │ │ │ │ ├── Square44x44Logo.targetsize-48.png │ │ │ │ ├── StoreLogo.backup.png │ │ │ │ ├── StoreLogo.scale-100.png │ │ │ │ ├── StoreLogo.scale-125.png │ │ │ │ ├── StoreLogo.scale-150.png │ │ │ │ ├── StoreLogo.scale-200.png │ │ │ │ ├── StoreLogo.scale-400.png │ │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ │ ├── Wide310x150Logo.scale-125.png │ │ │ │ ├── Wide310x150Logo.scale-150.png │ │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ │ └── Wide310x150Logo.scale-400.png │ │ │ ├── Package.appxmanifest │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── Default.rd.xml │ │ │ └── SkiaSharpSample.UWP.csproj │ │ ├── SkiaSharpSample.WPF.Host │ │ │ ├── App.config │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ │ └── Fonts │ │ │ │ │ └── uno-fluentui-assets.ttf │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ └── SkiaSharpSample.WPF.Host.csproj │ │ ├── SkiaSharpSample.WPF │ │ │ └── SkiaSharpSample.WPF.csproj │ │ ├── SkiaSharpSample.Wasm │ │ │ ├── Assets │ │ │ │ └── SplashScreen.png │ │ │ ├── LinkerConfig.xml │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── launchSettings.json │ │ │ ├── SkiaSharpSample.Wasm.csproj │ │ │ ├── WasmCSS │ │ │ │ └── Fonts.css │ │ │ ├── WasmScripts │ │ │ │ ├── AppManifest.js │ │ │ │ └── SkiaSharpSample.js │ │ │ └── wwwroot │ │ │ │ └── web.config │ │ ├── SkiaSharpSample.iOS │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon1024.png │ │ │ │ │ ├── Icon120.png │ │ │ │ │ ├── Icon152.png │ │ │ │ │ ├── Icon167.png │ │ │ │ │ ├── Icon180.png │ │ │ │ │ ├── Icon20.png │ │ │ │ │ ├── Icon29.png │ │ │ │ │ ├── Icon40.png │ │ │ │ │ ├── Icon58.png │ │ │ │ │ ├── Icon60.png │ │ │ │ │ ├── Icon76.png │ │ │ │ │ ├── Icon80.png │ │ │ │ │ └── Icon87.png │ │ │ │ └── Contents.json │ │ │ ├── Entitlements.plist │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── Main.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ │ └── Fonts │ │ │ │ │ └── winjs-symbols.ttf │ │ │ └── SkiaSharpSample.iOS.csproj │ │ └── SkiaSharpSample.macOS │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon1024.png │ │ │ │ ├── Icon128.png │ │ │ │ ├── Icon16.png │ │ │ │ ├── Icon256.png │ │ │ │ ├── Icon32.png │ │ │ │ ├── Icon512.png │ │ │ │ └── Icon64.png │ │ │ └── Contents.json │ │ │ ├── Entitlements.plist │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ └── Fonts │ │ │ │ └── winjs-symbols.ttf │ │ │ └── SkiaSharpSample.macOS.csproj │ ├── WPF │ │ ├── SkiaSharpSample.Skip.sln │ │ └── SkiaSharpSample │ │ │ ├── App.config │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── SkiaSharpSample.csproj │ │ │ └── icon.ico │ ├── Xamarin.Forms │ │ ├── Android │ │ │ ├── Android.csproj │ │ │ ├── MainActivity.cs │ │ │ ├── Properties │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── configure.png │ │ │ │ │ ├── more.png │ │ │ │ │ └── slideshow.png │ │ │ │ ├── drawable-ldpi │ │ │ │ │ ├── configure.png │ │ │ │ │ ├── more.png │ │ │ │ │ └── slideshow.png │ │ │ │ ├── drawable-mdpi │ │ │ │ │ ├── configure.png │ │ │ │ │ ├── more.png │ │ │ │ │ └── slideshow.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ ├── configure.png │ │ │ │ │ ├── more.png │ │ │ │ │ └── slideshow.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ ├── configure.png │ │ │ │ │ ├── more.png │ │ │ │ │ └── slideshow.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ ├── configure.png │ │ │ │ │ ├── more.png │ │ │ │ │ └── slideshow.png │ │ │ │ ├── drawable │ │ │ │ │ ├── configure.png │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ ├── more.png │ │ │ │ │ ├── skia.png │ │ │ │ │ ├── slideshow.png │ │ │ │ │ └── splash.xml │ │ │ │ ├── layout │ │ │ │ │ ├── tabbar.xml │ │ │ │ │ └── toolbar.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ └── SplashActivity.cs │ │ ├── Core │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Core.csproj │ │ │ ├── DetailContentsPage.xaml │ │ │ ├── DetailContentsPage.xaml.cs │ │ │ ├── DetailsPage.xaml │ │ │ ├── DetailsPage.xaml.cs │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── MasterPage.xaml │ │ │ └── MasterPage.xaml.cs │ │ ├── Mac │ │ │ ├── AppDelegate.cs │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Icon1024.png │ │ │ │ │ ├── Icon128.png │ │ │ │ │ ├── Icon16.png │ │ │ │ │ ├── Icon256.png │ │ │ │ │ ├── Icon32.png │ │ │ │ │ ├── Icon512.png │ │ │ │ │ └── Icon64.png │ │ │ │ └── Contents.json │ │ │ ├── Entitlements.plist │ │ │ ├── Info.plist │ │ │ ├── Mac.csproj │ │ │ ├── Main.cs │ │ │ ├── Main.storyboard │ │ │ └── Resources │ │ │ │ ├── configure.png │ │ │ │ ├── configure@2x.png │ │ │ │ ├── configure@3x.png │ │ │ │ ├── hamburger.png │ │ │ │ ├── hamburger@2x.png │ │ │ │ ├── hamburger@3x.png │ │ │ │ ├── more.png │ │ │ │ ├── more@2x.png │ │ │ │ ├── more@3x.png │ │ │ │ ├── slideshow.png │ │ │ │ ├── slideshow@2x.png │ │ │ │ └── slideshow@3x.png │ │ ├── Tizen │ │ │ ├── Program.cs │ │ │ ├── TizenOS.csproj │ │ │ ├── res │ │ │ │ ├── configure.png │ │ │ │ ├── hamburger.png │ │ │ │ ├── more.png │ │ │ │ └── slideshow.png │ │ │ ├── shared │ │ │ │ └── res │ │ │ │ │ └── TizenOS.png │ │ │ └── tizen-manifest.xml │ │ ├── UWP │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ │ ├── LargeTile.scale-100.png │ │ │ │ ├── LargeTile.scale-125.png │ │ │ │ ├── LargeTile.scale-150.png │ │ │ │ ├── LargeTile.scale-200.png │ │ │ │ ├── LargeTile.scale-400.png │ │ │ │ ├── SmallTile.scale-100.png │ │ │ │ ├── SmallTile.scale-125.png │ │ │ │ ├── SmallTile.scale-150.png │ │ │ │ ├── SmallTile.scale-200.png │ │ │ │ ├── SmallTile.scale-400.png │ │ │ │ ├── SplashScreen.scale-100.png │ │ │ │ ├── SplashScreen.scale-125.png │ │ │ │ ├── SplashScreen.scale-150.png │ │ │ │ ├── SplashScreen.scale-200.png │ │ │ │ ├── SplashScreen.scale-400.png │ │ │ │ ├── Square150x150Logo.scale-100.png │ │ │ │ ├── Square150x150Logo.scale-125.png │ │ │ │ ├── Square150x150Logo.scale-150.png │ │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ │ ├── Square150x150Logo.scale-400.png │ │ │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ │ │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ │ │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ │ │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ │ │ │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-24.png │ │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ │ │ ├── Square44x44Logo.scale-100.png │ │ │ │ ├── Square44x44Logo.scale-125.png │ │ │ │ ├── Square44x44Logo.scale-150.png │ │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.scale-400.png │ │ │ │ ├── Square44x44Logo.targetsize-16.png │ │ │ │ ├── Square44x44Logo.targetsize-24.png │ │ │ │ ├── Square44x44Logo.targetsize-256.png │ │ │ │ ├── Square44x44Logo.targetsize-32.png │ │ │ │ ├── Square44x44Logo.targetsize-48.png │ │ │ │ ├── StoreLogo.scale-100.png │ │ │ │ ├── StoreLogo.scale-125.png │ │ │ │ ├── StoreLogo.scale-150.png │ │ │ │ ├── StoreLogo.scale-200.png │ │ │ │ ├── StoreLogo.scale-400.png │ │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ │ ├── Wide310x150Logo.scale-125.png │ │ │ │ ├── Wide310x150Logo.scale-150.png │ │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ │ ├── Wide310x150Logo.scale-400.png │ │ │ │ ├── configure.png │ │ │ │ ├── more.png │ │ │ │ └── slideshow.png │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Package.StoreAssociation.xml │ │ │ ├── Package.appxmanifest │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── Default.rd.xml │ │ │ └── UWP.csproj │ │ ├── WPF │ │ │ ├── App.config │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ │ ├── configure.png │ │ │ │ ├── more.png │ │ │ │ └── slideshow.png │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── WPF.csproj │ │ │ └── icon.ico │ │ └── iOS │ │ │ ├── AppDelegate.cs │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon1024.png │ │ │ │ ├── Icon120.png │ │ │ │ ├── Icon152.png │ │ │ │ ├── Icon167.png │ │ │ │ ├── Icon180.png │ │ │ │ ├── Icon20.png │ │ │ │ ├── Icon29.png │ │ │ │ ├── Icon40.png │ │ │ │ ├── Icon58.png │ │ │ │ ├── Icon60.png │ │ │ │ ├── Icon76.png │ │ │ │ ├── Icon80.png │ │ │ │ └── Icon87.png │ │ │ └── Contents.json │ │ │ ├── Entitlements.plist │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── configure.png │ │ │ ├── configure@2x.png │ │ │ ├── configure@3x.png │ │ │ ├── hamburger.png │ │ │ ├── hamburger@2x.png │ │ │ ├── hamburger@3x.png │ │ │ ├── ic_launcher.png │ │ │ ├── more.png │ │ │ ├── more@2x.png │ │ │ ├── more@3x.png │ │ │ ├── slideshow.png │ │ │ ├── slideshow@2x.png │ │ │ ├── slideshow@3x.png │ │ │ └── splash.png │ │ │ ├── iOS.csproj │ │ │ ├── iTunesArtwork │ │ │ └── iTunesArtwork@2x │ ├── macOS │ │ ├── SkiaSharpSample.Skip.sln │ │ └── SkiaSharpSample │ │ │ ├── AppDelegate.cs │ │ │ ├── AppDelegate.designer.cs │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon1024.png │ │ │ │ ├── Icon128.png │ │ │ │ ├── Icon16.png │ │ │ │ ├── Icon256.png │ │ │ │ ├── Icon32.png │ │ │ │ ├── Icon512.png │ │ │ │ └── Icon64.png │ │ │ └── Contents.json │ │ │ ├── Entitlements.plist │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Main.storyboard │ │ │ ├── MainViewController.cs │ │ │ ├── MainViewController.designer.cs │ │ │ └── SkiaSharpSample.csproj │ └── tvOS │ │ ├── SkiaSharpSample.Skip.sln │ │ └── SkiaSharpSample │ │ ├── AppDelegate.cs │ │ ├── Assets.xcassets │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - Large.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon - Small.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Top Shelf Image Wide.imageset │ │ │ │ └── Contents.json │ │ │ └── Top Shelf Image.imageset │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── LaunchImages.launchimage │ │ │ └── Contents.json │ │ ├── Entitlements.plist │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Main.storyboard │ │ ├── SkiaSharpSample.csproj │ │ ├── ViewController.cs │ │ └── ViewController.designer.cs ├── README.md ├── README.zip.md └── _UnoPlatformSamples.targets ├── scripts ├── Docker │ ├── _clang-cross-common.sh │ ├── alpine │ │ ├── amd64 │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ └── build-local.sh │ │ ├── arm64v8 │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ └── build-local.sh │ │ └── clang-cross │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ ├── build-local.sh │ │ │ └── startup.sh │ ├── debian │ │ ├── amd64 │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ └── build-local.sh │ │ ├── arm64v8 │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ └── build-local.sh │ │ └── clang-cross │ │ │ ├── 10 │ │ │ ├── Dockerfile │ │ │ └── startup.sh │ │ │ ├── 12 │ │ │ ├── Dockerfile │ │ │ └── startup.sh │ │ │ ├── 13 │ │ │ ├── Dockerfile │ │ │ └── startup.sh │ │ │ ├── .dockerignore │ │ │ └── build-local.sh │ └── wasm │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── build-local.ps1 │ │ ├── build-local.sh │ │ └── startup.sh ├── SignList.xml ├── VERSIONS.txt ├── azure-pipelines-complete-internal.yml ├── azure-pipelines-complete.yml ├── azure-pipelines-native.yml ├── azure-pipelines-package.yml ├── azure-pipelines-tests.yml ├── azure-template-fake-1es.yml ├── azure-templates-jobs-bootstrapper.yml ├── azure-templates-jobs-linux-matrix.yml ├── azure-templates-jobs-merger.yml ├── azure-templates-jobs-wasm-matrix.yml ├── azure-templates-stages-native-linux.yml ├── azure-templates-stages-native-macos.yml ├── azure-templates-stages-native-merge.yml ├── azure-templates-stages-native-wasm.yml ├── azure-templates-stages-native-windows.yml ├── azure-templates-stages-native.yml ├── azure-templates-stages-package.yml ├── azure-templates-stages-prepare.yml ├── azure-templates-stages-test.yml ├── azure-templates-stages.yml ├── azure-templates-steps-download-artifacts.yml ├── azure-templates-steps-provisioning-profiles.yml ├── azure-templates-variables.yml ├── build-debug-app.ps1 ├── build-debug-app.sh ├── build-linux.sh ├── cake │ ├── UpdateDocs.cake │ ├── UtilsManaged.cake │ ├── externals.cake │ ├── msbuild.cake │ ├── native-shared.cake │ ├── samples.cake │ ├── shared.cake │ ├── xcode.cake │ ├── xharness-android.cake │ └── xharness-apple.cake ├── checkout-skia.ps1 ├── download-artifact.ps1 ├── download-externals.ps1 ├── download-file.ps1 ├── get-artifact-names.ps1 ├── get-build-type.ps1 ├── get-dotnet-framework-version.ps1 ├── get-free-space.ps1 ├── get-largest-folders.ps1 ├── guardian │ ├── APIScanSurrogates.in.xml │ ├── CredScanSuppressions.json │ ├── PoliCheckExclusions.xml │ ├── cve-triage.json │ ├── source.gdnsuppress │ └── tsaoptions-v2.json ├── install-7zip.ps1 ├── install-android-ndk.ps1 ├── install-android-package.ps1 ├── install-android-platform.ps1 ├── install-android-sdk.ps1 ├── install-dotnet-workloads.ps1 ├── install-dotnet.ps1 ├── install-emsdk.sh ├── install-gtk.ps1 ├── install-llvm.ps1 ├── install-maui.ps1 ├── install-mono.sh ├── install-ninja.ps1 ├── install-nuget.ps1 ├── install-openjdk.ps1 ├── install-python.ps1 ├── install-requirements.ps1 ├── install-tizen.ps1 ├── install-vs.ps1 ├── install-winsdk.ps1 ├── merge-files.ps1 ├── mono.pub ├── mono.snk ├── nuget │ ├── NuGet.csproj │ ├── README.md │ ├── _NativeAssets.nuspec │ ├── _NuGets.nuspec │ ├── _NuGetsPreview.nuspec │ ├── _Symbols.nuspec │ └── _SymbolsPreview.nuspec ├── patch-dotnet.ps1 ├── patch-msbuild.ps1 ├── provisionator.csx ├── retry-command.ps1 ├── retry-command.sh ├── select-vs.ps1 ├── select-xamarin.sh ├── select-xcode.sh ├── set-build-variables.ps1 ├── split-file.ps1 └── vcvarsall.bat ├── source ├── Common │ └── NullableAttributes.generated.cs ├── Directory.Build.props ├── Directory.Build.targets ├── SkiaSharp.Build.Override.in.props ├── SkiaSharp.Build.props ├── SkiaSharp.Build.targets ├── SkiaSharp.Direct3D │ └── SkiaSharp.Direct3D.Vortice │ │ ├── GRVorticeD3DBackendContext.cs │ │ ├── GRVorticeD3DTextureResourceInfo.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── SkiaSharp.Direct3D.Vortice.csproj ├── SkiaSharp.DotNet.Interactive │ ├── ColorRenderer.cs │ ├── Properties │ │ └── SkiaSharpDotNetInteractiveAssemblyInfo.cs │ ├── RasterRenderer.cs │ ├── SkiaSharp.DotNet.Interactive.csproj │ └── SkiaSharpKernelExtension.cs ├── SkiaSharp.HarfBuzz │ └── SkiaSharp.HarfBuzz │ │ ├── BlobExtensions.cs │ │ ├── CanvasExtensions.cs │ │ ├── FontExtensions.cs │ │ ├── Properties │ │ └── SkiaSharpHarfBuzzAssemblyInfo.cs │ │ ├── SKShaper.cs │ │ └── SkiaSharp.HarfBuzz.csproj ├── SkiaSharp.NuGet.props ├── SkiaSharp.NuGet.targets ├── SkiaSharp.Views.Maui │ ├── Directory.Build.targets │ ├── SkiaSharp.Views.Maui.Controls │ │ ├── AppHostBuilderExtensions.cs │ │ ├── RendererTypes.cs │ │ ├── SKCanvasView.cs │ │ ├── SKGLView.cs │ │ ├── SKImageSource.cs │ │ └── SkiaSharp.Views.Maui.Controls.csproj │ └── SkiaSharp.Views.Maui.Core │ │ ├── Extensions.cs │ │ ├── Handlers │ │ ├── SKCanvasView │ │ │ ├── SKCanvasViewHandler.Android.cs │ │ │ ├── SKCanvasViewHandler.Apple.cs │ │ │ ├── SKCanvasViewHandler.Ref.cs │ │ │ ├── SKCanvasViewHandler.Tizen.cs │ │ │ ├── SKCanvasViewHandler.Windows.cs │ │ │ └── SKCanvasViewHandler.cs │ │ ├── SKGLView │ │ │ ├── SKGLViewHandler.Android.cs │ │ │ ├── SKGLViewHandler.MacCatalyst.cs │ │ │ ├── SKGLViewHandler.Ref.cs │ │ │ ├── SKGLViewHandler.Tizen.cs │ │ │ ├── SKGLViewHandler.Windows.cs │ │ │ ├── SKGLViewHandler.cs │ │ │ └── SKGLViewHandler.iOS.cs │ │ └── SKImageSourceService │ │ │ ├── SKImageSourceService.Android.cs │ │ │ ├── SKImageSourceService.Apple.cs │ │ │ ├── SKImageSourceService.Tizen.cs │ │ │ ├── SKImageSourceService.Windows.cs │ │ │ └── SKImageSourceService.cs │ │ ├── ISKCanvasView.cs │ │ ├── ISKGLView.cs │ │ ├── ISKImageSource.cs │ │ ├── Platform │ │ ├── Android │ │ │ └── SKTouchHandler.cs │ │ ├── Apple │ │ │ ├── SKEventProxy.cs │ │ │ ├── SKTouchHandler.cs │ │ │ └── SKTouchHandlerProxy.cs │ │ ├── Tizen │ │ │ └── SKTouchHandler.cs │ │ └── Windows │ │ │ └── SKTouchHandler.cs │ │ ├── Properties │ │ └── SkiaSharpViewsMauiAssemblyInfo.cs │ │ ├── SKPaintGLSurfaceEventArgs.cs │ │ ├── SKPaintSurfaceEventArgs.cs │ │ ├── SKTouchEventArgs.cs │ │ └── SkiaSharp.Views.Maui.Core.csproj ├── SkiaSharp.Views.Uno │ ├── SkiaSharp.Views.Uno.WinUI.Shared │ │ ├── SKSwapChainPanel.cs │ │ └── SKXamlCanvas.cs │ ├── SkiaSharp.Views.Uno.WinUI.Skia │ │ ├── SKSwapChainPanel.Skia.cs │ │ ├── SKXamlCanvas.Skia.cs │ │ └── SkiaSharp.Views.Uno.WinUI.Skia.csproj │ ├── SkiaSharp.Views.Uno.WinUI.Wasm │ │ ├── LinkerDefinition.Wasm.xml │ │ ├── SKSwapChainPanel.Wasm.cs │ │ ├── SKXamlCanvas.Wasm.cs │ │ ├── SkiaSharp.Views.Uno.WinUI.Wasm.csproj │ │ ├── WasmScripts │ │ │ └── SkiaSharp.Views.Uno.Wasm.js │ │ └── nuget │ │ │ └── build │ │ │ ├── net7.0 │ │ │ └── SkiaSharp.Views.Uno.WinUI.targets │ │ │ └── netstandard2.0 │ │ │ └── SkiaSharp.Views.Uno.WinUI.targets │ └── SkiaSharp.Views.Uno.WinUI │ │ ├── SKSwapChainPanel.Android.cs │ │ ├── SKSwapChainPanel.MacCatalyst.cs │ │ ├── SKSwapChainPanel.Reference.cs │ │ ├── SKSwapChainPanel.iOS.cs │ │ ├── SKSwapChainPanel.macOS.cs │ │ ├── SKXamlCanvas.Android.cs │ │ ├── SKXamlCanvas.AppleiOS.cs │ │ ├── SKXamlCanvas.Reference.cs │ │ ├── SKXamlCanvas.macOS.cs │ │ ├── SkiaSharp.Views.Uno.WinUI.csproj │ │ └── nuget │ │ └── buildTransitive │ │ └── SkiaSharp.Views.Uno.WinUI.targets ├── SkiaSharp.Views │ ├── Directory.Build.targets │ ├── SkiaSharp.Views.Blazor │ │ ├── Internal │ │ │ ├── ActionHelper.cs │ │ │ ├── DpiWatcherInterop.cs │ │ │ ├── FloatFloatActionHelper.cs │ │ │ ├── JSModuleInterop.cs │ │ │ ├── SKHtmlCanvasInterop.cs │ │ │ ├── SizeWatcherInterop.cs │ │ │ └── ValueStopwatch.cs │ │ ├── SKCanvasView.razor │ │ ├── SKCanvasView.razor.cs │ │ ├── SKGLView.razor │ │ ├── SKGLView.razor.cs │ │ ├── SkiaSharp.Views.Blazor.csproj │ │ ├── _Imports.razor │ │ ├── nuget │ │ │ └── buildTransitive │ │ │ │ ├── SkiaSharp.Views.Blazor.Local.props │ │ │ │ ├── SkiaSharp.Views.Blazor.props │ │ │ │ └── SkiaSharpInterop.js │ │ └── wwwroot │ │ │ ├── DpiWatcher.js │ │ │ ├── DpiWatcher.js.map │ │ │ ├── DpiWatcher.ts │ │ │ ├── SKHtmlCanvas.js │ │ │ ├── SKHtmlCanvas.js.map │ │ │ ├── SKHtmlCanvas.ts │ │ │ ├── SizeWatcher.js │ │ │ ├── SizeWatcher.js.map │ │ │ ├── SizeWatcher.ts │ │ │ └── types │ │ │ ├── dotnet │ │ │ ├── extras.d.ts │ │ │ └── index.d.ts │ │ │ └── emscripten │ │ │ └── index.d.ts │ ├── SkiaSharp.Views.Desktop.Common │ │ └── SkiaSharp.Views.Desktop.Common.csproj │ ├── SkiaSharp.Views.Gtk3 │ │ ├── GTKExtensions.cs │ │ ├── SKDrawingArea.cs │ │ └── SkiaSharp.Views.Gtk3.csproj │ ├── SkiaSharp.Views.Shared │ │ ├── Extensions.cs │ │ ├── GlesInterop │ │ │ └── Gles.cs │ │ ├── Properties │ │ │ └── SkiaSharpViewsAssemblyInfo.cs │ │ ├── SKPaintGLSurfaceEventArgs.cs │ │ └── SKPaintSurfaceEventArgs.cs │ ├── SkiaSharp.Views.WPF │ │ ├── SKElement.cs │ │ ├── SKGLElement.cs │ │ ├── SkiaSharp.Views.WPF.csproj │ │ └── WPFExtensions.cs │ ├── SkiaSharp.Views.WinUI │ │ ├── AngleSwapChainPanel.cs │ │ ├── GlesInterop │ │ │ ├── Egl.cs │ │ │ └── GlesContext.cs │ │ ├── SKSwapChainPanel.cs │ │ ├── SKXamlCanvas.cs │ │ ├── SkiaSharp.Views.WinUI.csproj │ │ └── UWPExtensions.cs │ ├── SkiaSharp.Views.WindowsForms │ │ ├── Extensions.Desktop.cs │ │ ├── SKControl.cs │ │ ├── SKGLControl.cs │ │ └── SkiaSharp.Views.WindowsForms.csproj │ └── SkiaSharp.Views │ │ ├── Platform │ │ ├── Android │ │ │ ├── AndroidExtensions.cs │ │ │ ├── GLTextureView.cs │ │ │ ├── Resources │ │ │ │ └── values │ │ │ │ │ └── attrs.xml │ │ │ ├── SKCanvasView.cs │ │ │ ├── SKGLSurfaceView.cs │ │ │ ├── SKGLSurfaceViewRenderer.cs │ │ │ ├── SKGLTextureView.cs │ │ │ ├── SKGLTextureViewRenderer.cs │ │ │ ├── SKLockedSurface.cs │ │ │ ├── SKSurfaceView.cs │ │ │ └── SurfaceFactory.cs │ │ ├── Apple │ │ │ ├── AppleExtensions.cs │ │ │ ├── SKCGSurfaceFactory.cs │ │ │ ├── SKCanvasLayer.cs │ │ │ ├── SKMetalView.cs │ │ │ └── SKPaintMetalSurfaceEventArgs.cs │ │ ├── Tizen │ │ │ ├── CustomRenderingView.cs │ │ │ ├── CustomRenderingView.nui.cs │ │ │ ├── Interop │ │ │ │ ├── Elementary.cs │ │ │ │ ├── Evas.cs │ │ │ │ └── Libraries.cs │ │ │ ├── RenderingMode.cs │ │ │ ├── SKCanvasView.cs │ │ │ ├── SKCanvasView.nui.cs │ │ │ ├── SKGLSurfaceView.cs │ │ │ ├── SKGLSurfaceView.nui.cs │ │ │ ├── ScalingInfo.cs │ │ │ └── TizenExtensions.cs │ │ ├── iOS │ │ │ ├── SKCanvasView.cs │ │ │ ├── SKGLLayer.cs │ │ │ ├── SKGLView.cs │ │ │ └── iOSExtensions.cs │ │ └── macOS │ │ │ ├── MacExtensions.cs │ │ │ ├── SKCanvasView.cs │ │ │ ├── SKGLLayer.cs │ │ │ └── SKGLView.cs │ │ ├── SkiaSharp.Views.csproj │ │ └── nuget │ │ └── buildTransitive │ │ ├── net4 │ │ └── SkiaSharp.Views.targets │ │ └── windows │ │ └── SkiaSharp.Views.targets ├── SkiaSharp.Vulkan │ └── SkiaSharp.Vulkan.SharpVk │ │ ├── GRSharpVkBackendContext.cs │ │ ├── GRVkExtensionsSharpVkExtensions.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── SkiaSharp.Vulkan.SharpVk.csproj │ │ └── Utils.cs ├── SkiaSharpSource.Linux.slnf ├── SkiaSharpSource.Mac.slnf ├── SkiaSharpSource.Windows.slnf └── SkiaSharpSource.sln ├── tests ├── Content │ ├── fonts │ │ ├── CourierNew.ttf │ │ ├── Distortable.ttf │ │ ├── Em.ttf │ │ ├── Funkster.ttf │ │ ├── HangingS.ttf │ │ ├── ReallyBigA.ttf │ │ ├── Roboto.woff2 │ │ ├── Roboto2-Regular_NoEmbed.ttf │ │ ├── RobotoMono.woff2 │ │ ├── SpiderSymbol.ttf │ │ ├── content-font.ttf │ │ ├── segoeui.ttf │ │ ├── test.ttc │ │ └── 上田雅美.ttf │ └── images │ │ ├── AdobeRGB1998.icc │ │ ├── CMYK.jpg │ │ ├── LottieLogo1.json │ │ ├── LottieLogo1_bom.json │ │ ├── P8211052.JPG │ │ ├── PA010741.JPG │ │ ├── USWebCoatedSWOP.icc │ │ ├── animated-heart.gif │ │ ├── baboon-reencoded.jpg │ │ ├── baboon.jpg │ │ ├── baboon.png │ │ ├── blue-shirt.jpg │ │ ├── color-wheel.png │ │ ├── index8.png │ │ ├── logos.svg │ │ ├── lottie-base64_dotnet-bot.json │ │ ├── lottie-base64_women-thinking.json │ │ ├── map.png │ │ ├── osm-liberty.png │ │ ├── testimage.png │ │ ├── tomato.bmp │ │ ├── vimeo_icon_dark.png │ │ └── 上田雅美.jpg ├── Directory.Build.props ├── Directory.Build.targets ├── SkiaSharp.Direct3D.Tests.Console │ ├── Direct3DContexts │ │ ├── Direct3DContext.cs │ │ └── Vortice │ │ │ └── VorticeDirect3DContext.cs │ ├── Direct3DTest.cs │ ├── GRContextTest.cs │ ├── SKSurfaceTest.cs │ └── SkiaSharp.Direct3D.Tests.Console.csproj ├── SkiaSharp.Tests.Console.sln ├── SkiaSharp.Tests.Console │ ├── DefaultTestConfig.Console.cs │ ├── Properties │ │ └── launchSettings.json │ ├── SkiaSharp.Tests.Console.csproj │ └── SkiaSharp │ │ ├── SKBitmapThreadingTest.cs │ │ ├── SKObjectDelayedTest.cs │ │ └── SystemDrawingTest.cs ├── SkiaSharp.Tests.Devices.Mac.sln ├── SkiaSharp.Tests.Devices.sln ├── SkiaSharp.Tests.Devices │ ├── AssetCopier.cs │ ├── DevicesTestConfig.cs │ ├── MauiProgram.cs │ ├── Platforms │ │ ├── Android │ │ │ ├── AndroidManifest.xml │ │ │ ├── MainActivity.cs │ │ │ └── MainApplication.cs │ │ ├── MacCatalyst │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ └── Program.cs │ │ ├── Tizen │ │ │ ├── Main.cs │ │ │ └── tizen-manifest.xml │ │ ├── Windows │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ └── app.manifest │ │ └── iOS │ │ │ ├── AppDelegate.cs │ │ │ ├── Info.plist │ │ │ └── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Resources │ │ ├── AppIcon │ │ │ └── appicon.png │ │ └── Splash │ │ │ └── skiasharplogo.png │ ├── SkiaSharp.Tests.Devices.csproj │ └── Tests │ │ ├── Android │ │ ├── AndroidExtensionsTests.cs │ │ └── AndroidTests.cs │ │ ├── Maui │ │ ├── MauiExtensions.cs │ │ ├── MemoryLeakTests.cs │ │ └── SKUITests.cs │ │ └── iOS │ │ ├── TestExtensions.cs │ │ ├── iOSExtensionsTests.cs │ │ └── iOSTests.cs ├── SkiaSharp.Tests.Wasm.sln ├── SkiaSharp.Tests.Wasm │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── launchSettings.json │ ├── SkiaSharp.Tests.Wasm.csproj │ ├── Tests.cs │ ├── Xunit │ │ └── ThreadlessXunitTestRunner.cs │ ├── runtimeconfig.template.json │ └── wwwroot │ │ ├── index.html │ │ ├── main.css │ │ └── main.js ├── SkiaSharp.Tests │ └── SkiaSharp.Tests.csproj ├── SkiaSharp.Vulkan.Tests.Console │ └── SkiaSharp.Vulkan.Tests.Console.csproj ├── Tests │ ├── ApiTests.cs │ ├── BaseTest.cs │ ├── DefaultTestConfig.cs │ ├── GarbageCleanupFixture.cs │ ├── HarfBuzzSharp │ │ ├── HBBlobTest.cs │ │ ├── HBBufferTest.cs │ │ ├── HBCommonTest.cs │ │ ├── HBFaceTest.cs │ │ ├── HBFeatureTest.cs │ │ ├── HBFontFuncsTest.cs │ │ ├── HBFontTest.cs │ │ ├── HBScriptTest.cs │ │ ├── HBTest.cs │ │ └── HBUnicodeFuncsTest.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ └── ResourceProviderTest.cs │ ├── SkiaSharp │ │ ├── EnumMappingsTest.cs │ │ ├── GRContextTest.cs │ │ ├── GRGlInterfaceTest.cs │ │ ├── GlContexts │ │ │ ├── Cgl │ │ │ │ ├── CGLError.cs │ │ │ │ ├── CGLOpenGLProfile.cs │ │ │ │ ├── CGLPixelFormatAttribute.cs │ │ │ │ ├── Cgl.cs │ │ │ │ └── CglContext.cs │ │ │ ├── GlContext.cs │ │ │ ├── Glx │ │ │ │ ├── Glx.cs │ │ │ │ └── GlxContext.cs │ │ │ └── Wgl │ │ │ │ ├── Wgl.cs │ │ │ │ └── WglContext.cs │ │ ├── ManagedStream.cs │ │ ├── SKBasicTypesTest.cs │ │ ├── SKBitmapTest.cs │ │ ├── SKBlenderTest.cs │ │ ├── SKCanvasTest.cs │ │ ├── SKCodecTest.cs │ │ ├── SKColorFTest.cs │ │ ├── SKColorFilterTest.cs │ │ ├── SKColorSpaceStructsTest.cs │ │ ├── SKColorSpaceTest.cs │ │ ├── SKColorTest.cs │ │ ├── SKDataTest.cs │ │ ├── SKDocumentTest.cs │ │ ├── SKDrawableTest.cs │ │ ├── SKFontManagerTest.cs │ │ ├── SKFontStyleSetTest.cs │ │ ├── SKFontTest.cs │ │ ├── SKFrontBufferedManagedStreamTest.cs │ │ ├── SKFrontBufferedStreamTest.cs │ │ ├── SKGraphicsTest.cs │ │ ├── SKImageFilterTest.cs │ │ ├── SKImageTest.cs │ │ ├── SKManagedStreamTest.cs │ │ ├── SKManagedWStreamTest.cs │ │ ├── SKMatrix44Tests.cs │ │ ├── SKMatrixTests.cs │ │ ├── SKObjectTest.cs │ │ ├── SKPaintTest.cs │ │ ├── SKPathMeasureTest.cs │ │ ├── SKPathTest.cs │ │ ├── SKPictureRecorderTest.cs │ │ ├── SKPictureTest.cs │ │ ├── SKPixmapTest.cs │ │ ├── SKRegionTest.cs │ │ ├── SKRotationScaleMatrixTests.cs │ │ ├── SKRoundRectTest.cs │ │ ├── SKRuntimeEffectTest.cs │ │ ├── SKShaderTest.cs │ │ ├── SKShaperTest.cs │ │ ├── SKStreamTest.cs │ │ ├── SKStringTest.cs │ │ ├── SKSurfaceTest.cs │ │ ├── SKTest.cs │ │ ├── SKTextBlobTest.cs │ │ └── SKTypefaceTest.cs │ ├── Skottie │ │ ├── AnimationBuilderTest.cs │ │ └── AnimationTest.cs │ ├── TestConfig.cs │ ├── Traits.cs │ ├── Utils │ │ ├── Extensions.cs │ │ ├── NonSeekableReadOnlyStream.cs │ │ ├── SKPixelComparer.cs │ │ ├── Win32 │ │ │ ├── Gdi32.cs │ │ │ ├── Kernel32.cs │ │ │ ├── PIXELFORMATDESCRIPTOR.cs │ │ │ ├── RECT.cs │ │ │ ├── User32.cs │ │ │ ├── WNDCLASS.cs │ │ │ ├── Win32Window.cs │ │ │ └── WindowStyles.cs │ │ └── X11 │ │ │ ├── XVisualClass.cs │ │ │ ├── XVisualInfo.cs │ │ │ └── Xlib.cs │ └── Xunit │ │ ├── AssemblyFixtureAttribute.cs │ │ ├── AssertEx.cs │ │ └── CustomTestFramework.cs └── VulkanTests │ ├── GRContextTest.cs │ ├── GRSharpVkBackendContext.cs │ ├── SKSurfaceTest.cs │ ├── VKTest.cs │ └── VkContexts │ ├── VkContext.cs │ └── Win32 │ └── Win32VkContext.cs └── utils ├── NativeLibraryMiniTest ├── docker │ ├── .gitignore │ ├── Dockerfile │ ├── NativeLibraryMiniTest.csproj │ └── build.sh ├── linux │ └── build.sh ├── source │ └── Program.cs └── wasm │ ├── NativeLibraryMiniTest.csproj │ ├── assets │ ├── bootstrap.js │ └── index.html │ └── build.sh ├── README.md ├── SkiaSharpGenerator ├── BaseCommand.cs ├── BaseTool.cs ├── ConfigJson │ ├── Config.cs │ ├── Exclude.cs │ ├── FunctionMapping.cs │ ├── Mappings.cs │ ├── NamespaceMapping.cs │ └── TypeMapping.cs ├── ConsoleLogger.cs ├── Cookies │ ├── CookieCommand.cs │ └── CookieDetector.cs ├── Generate │ ├── GenerateCommand.cs │ └── Generator.cs ├── ILogger.cs ├── Program.cs ├── SkiaSharpGenerator.csproj └── Verify │ ├── Verifier.cs │ └── VerifyCommand.cs ├── Utils.sln ├── WasmTestRunner ├── Program.cs └── WasmTestRunner.csproj └── generate.ps1 /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "dotnet.defaultSolution": "tests/SkiaSharp.Tests.Console.sln" 3 | } 4 | -------------------------------------------------------------------------------- /benchmarks/Directory.Build.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /benchmarks/Directory.Build.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /binding/Directory.Build.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /binding/HarfBuzzSharp.NativeAssets.MacCatalyst/buildTransitive/HarfBuzzSharp.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /binding/HarfBuzzSharp.NativeAssets.Tizen/buildTransitive/HarfBuzzSharp.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /binding/HarfBuzzSharp.NativeAssets.iOS/buildTransitive/HarfBuzzSharp.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /binding/HarfBuzzSharp.NativeAssets.macOS/buildTransitive/macos/HarfBuzzSharp.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /binding/HarfBuzzSharp.NativeAssets.tvOS/buildTransitive/HarfBuzzSharp.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /binding/SkiaSharp.NativeAssets.Android/buildTransitive/SkiaSharp.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /binding/SkiaSharp.NativeAssets.Tizen/buildTransitive/SkiaSharp.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /binding/SkiaSharp.NativeAssets.iOS/buildTransitive/SkiaSharp.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /binding/SkiaSharp.NativeAssets.macOS/buildTransitive/macos/SkiaSharp.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /binding/SkiaSharp.NativeAssets.tvOS/buildTransitive/SkiaSharp.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /build.ps1: -------------------------------------------------------------------------------- 1 | dotnet tool restore 2 | dotnet cake $args 3 | 4 | exit $LASTEXITCODE 5 | -------------------------------------------------------------------------------- /build.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -e 3 | 4 | dotnet tool restore 5 | dotnet cake $@ 6 | -------------------------------------------------------------------------------- /changelogs/HarfBuzzSharp/1.4.6.1/HarfBuzzSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: HarfBuzzSharp.dll 2 | 3 | ## HarfBuzzSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/HarfBuzzSharp/1.4.6.2/HarfBuzzSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: HarfBuzzSharp.dll 2 | 3 | ## HarfBuzzSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/HarfBuzzSharp/1.4.6/HarfBuzzSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: HarfBuzzSharp.dll 2 | 3 | ## HarfBuzzSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/HarfBuzzSharp/2.6.1.1/HarfBuzzSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: HarfBuzzSharp.dll 2 | 3 | ## HarfBuzzSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/HarfBuzzSharp/2.6.1.2/HarfBuzzSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: HarfBuzzSharp.dll 2 | 3 | ## HarfBuzzSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/HarfBuzzSharp/2.6.1.3/HarfBuzzSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: HarfBuzzSharp.dll 2 | 3 | ## HarfBuzzSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/HarfBuzzSharp/2.6.1.4/HarfBuzzSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: HarfBuzzSharp.dll 2 | 3 | ## HarfBuzzSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/HarfBuzzSharp/2.6.1.5/HarfBuzzSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: HarfBuzzSharp.dll 2 | 3 | ## HarfBuzzSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/HarfBuzzSharp/2.6.1.6/HarfBuzzSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: HarfBuzzSharp.dll 2 | 3 | ## HarfBuzzSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/HarfBuzzSharp/2.6.1.7/HarfBuzzSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: HarfBuzzSharp.dll 2 | 3 | ## HarfBuzzSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/HarfBuzzSharp/2.6.1.9/HarfBuzzSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: HarfBuzzSharp.dll 2 | 3 | ## HarfBuzzSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/HarfBuzzSharp/2.8.2.1/HarfBuzzSharp.breaking.md: -------------------------------------------------------------------------------- 1 | # API diff: HarfBuzzSharp.dll 2 | 3 | ## HarfBuzzSharp.dll 4 | 5 | ### Namespace HarfBuzzSharp 6 | 7 | #### Removed Type HarfBuzzSharp.Resource 8 | 9 | -------------------------------------------------------------------------------- /changelogs/HarfBuzzSharp/2.8.2.2/HarfBuzzSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: HarfBuzzSharp.dll 2 | 3 | ## HarfBuzzSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/HarfBuzzSharp/2.8.2.3/HarfBuzzSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: HarfBuzzSharp.dll 2 | 3 | ## HarfBuzzSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/HarfBuzzSharp/2.8.2.4/HarfBuzzSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: HarfBuzzSharp.dll 2 | 3 | ## HarfBuzzSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/HarfBuzzSharp/2.8.2.5/HarfBuzzSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: HarfBuzzSharp.dll 2 | 3 | ## HarfBuzzSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/HarfBuzzSharp/2.8.2/HarfBuzzSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: HarfBuzzSharp.dll 2 | 3 | ## HarfBuzzSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/HarfBuzzSharp/7.3.0.1/HarfBuzzSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: HarfBuzzSharp.dll 2 | 3 | ## HarfBuzzSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/HarfBuzzSharp/7.3.0/HarfBuzzSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: HarfBuzzSharp.dll 2 | 3 | ## HarfBuzzSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.HarfBuzz/1.60.1/SkiaSharp.HarfBuzz.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.HarfBuzz.dll 2 | 3 | ## SkiaSharp.HarfBuzz.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.HarfBuzz/1.60.2/SkiaSharp.HarfBuzz.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.HarfBuzz.dll 2 | 3 | ## SkiaSharp.HarfBuzz.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.HarfBuzz/1.60.3/SkiaSharp.HarfBuzz.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.HarfBuzz.dll 2 | 3 | ## SkiaSharp.HarfBuzz.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.HarfBuzz/1.68.0/SkiaSharp.HarfBuzz.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.HarfBuzz.dll 2 | 3 | ## SkiaSharp.HarfBuzz.dll 4 | 5 | > Assembly Version Changed: 1.68.0.0 vs 1.60.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.HarfBuzz/1.68.1.1/SkiaSharp.HarfBuzz.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.HarfBuzz.dll 2 | 3 | ## SkiaSharp.HarfBuzz.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.HarfBuzz/1.68.2.1/SkiaSharp.HarfBuzz.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.HarfBuzz.dll 2 | 3 | ## SkiaSharp.HarfBuzz.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.HarfBuzz/1.68.2/SkiaSharp.HarfBuzz.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.HarfBuzz.dll 2 | 3 | ## SkiaSharp.HarfBuzz.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.HarfBuzz/1.68.3/SkiaSharp.HarfBuzz.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.HarfBuzz.dll 2 | 3 | ## SkiaSharp.HarfBuzz.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.HarfBuzz/2.80.1/SkiaSharp.HarfBuzz.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.HarfBuzz.dll 2 | 3 | ## SkiaSharp.HarfBuzz.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.HarfBuzz/2.80.2/SkiaSharp.HarfBuzz.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.HarfBuzz.dll 2 | 3 | ## SkiaSharp.HarfBuzz.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.HarfBuzz/2.80.3/SkiaSharp.HarfBuzz.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.HarfBuzz.dll 2 | 3 | ## SkiaSharp.HarfBuzz.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.HarfBuzz/2.80.4/SkiaSharp.HarfBuzz.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.HarfBuzz.dll 2 | 3 | ## SkiaSharp.HarfBuzz.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.HarfBuzz/2.88.0/SkiaSharp.HarfBuzz.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.HarfBuzz.dll 2 | 3 | ## SkiaSharp.HarfBuzz.dll 4 | 5 | > Assembly Version Changed: 2.88.0.0 vs 2.80.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.HarfBuzz/2.88.2/SkiaSharp.HarfBuzz.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.HarfBuzz.dll 2 | 3 | ## SkiaSharp.HarfBuzz.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.HarfBuzz/2.88.3/SkiaSharp.HarfBuzz.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.HarfBuzz.dll 2 | 3 | ## SkiaSharp.HarfBuzz.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.HarfBuzz/2.88.4/SkiaSharp.HarfBuzz.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.HarfBuzz.dll 2 | 3 | ## SkiaSharp.HarfBuzz.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.HarfBuzz/2.88.5/SkiaSharp.HarfBuzz.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.HarfBuzz.dll 2 | 3 | ## SkiaSharp.HarfBuzz.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.HarfBuzz/2.88.6/SkiaSharp.HarfBuzz.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.HarfBuzz.dll 2 | 3 | ## SkiaSharp.HarfBuzz.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.HarfBuzz/2.88.7/SkiaSharp.HarfBuzz.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.HarfBuzz.dll 2 | 3 | ## SkiaSharp.HarfBuzz.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Skottie/2.88.2/SkiaSharp.SceneGraph.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.SceneGraph.dll 2 | 3 | ## SkiaSharp.SceneGraph.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Skottie/2.88.2/SkiaSharp.Skottie.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Skottie.dll 2 | 3 | ## SkiaSharp.Skottie.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Skottie/2.88.3/SkiaSharp.SceneGraph.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.SceneGraph.dll 2 | 3 | ## SkiaSharp.SceneGraph.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Skottie/2.88.3/SkiaSharp.Skottie.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Skottie.dll 2 | 3 | ## SkiaSharp.Skottie.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Skottie/2.88.4/SkiaSharp.SceneGraph.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.SceneGraph.dll 2 | 3 | ## SkiaSharp.SceneGraph.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Skottie/2.88.4/SkiaSharp.Skottie.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Skottie.dll 2 | 3 | ## SkiaSharp.Skottie.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Skottie/2.88.5/SkiaSharp.SceneGraph.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.SceneGraph.dll 2 | 3 | ## SkiaSharp.SceneGraph.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Skottie/2.88.5/SkiaSharp.Skottie.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Skottie.dll 2 | 3 | ## SkiaSharp.Skottie.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Skottie/2.88.6/SkiaSharp.SceneGraph.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.SceneGraph.dll 2 | 3 | ## SkiaSharp.SceneGraph.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Skottie/2.88.6/SkiaSharp.Skottie.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Skottie.dll 2 | 3 | ## SkiaSharp.Skottie.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Skottie/2.88.7/SkiaSharp.SceneGraph.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.SceneGraph.dll 2 | 3 | ## SkiaSharp.SceneGraph.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Skottie/2.88.7/SkiaSharp.Skottie.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Skottie.dll 2 | 3 | ## SkiaSharp.Skottie.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Blazor/2.88.1/SkiaSharp.Views.Blazor.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Blazor.dll 2 | 3 | ## SkiaSharp.Views.Blazor.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Blazor/2.88.2/SkiaSharp.Views.Blazor.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Blazor.dll 2 | 3 | ## SkiaSharp.Views.Blazor.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Blazor/2.88.3/SkiaSharp.Views.Blazor.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Blazor.dll 2 | 3 | ## SkiaSharp.Views.Blazor.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Blazor/2.88.4/SkiaSharp.Views.Blazor.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Blazor.dll 2 | 3 | ## SkiaSharp.Views.Blazor.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Blazor/2.88.5/SkiaSharp.Views.Blazor.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Blazor.dll 2 | 3 | ## SkiaSharp.Views.Blazor.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Blazor/2.88.6/SkiaSharp.Views.Blazor.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Blazor.dll 2 | 3 | ## SkiaSharp.Views.Blazor.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Blazor/2.88.7/SkiaSharp.Views.Blazor.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Blazor.dll 2 | 3 | ## SkiaSharp.Views.Blazor.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Desktop.Common/1.68.1.1/SkiaSharp.Views.Desktop.Common.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.Common.dll 2 | 3 | ## SkiaSharp.Views.Desktop.Common.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Desktop.Common/1.68.2.1/SkiaSharp.Views.Desktop.Common.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.Common.dll 2 | 3 | ## SkiaSharp.Views.Desktop.Common.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Desktop.Common/1.68.3/SkiaSharp.Views.Desktop.Common.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.Common.dll 2 | 3 | ## SkiaSharp.Views.Desktop.Common.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Desktop.Common/2.80.1/SkiaSharp.Views.Desktop.Common.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.Common.dll 2 | 3 | ## SkiaSharp.Views.Desktop.Common.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Desktop.Common/2.80.2/SkiaSharp.Views.Desktop.Common.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.Common.dll 2 | 3 | ## SkiaSharp.Views.Desktop.Common.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Desktop.Common/2.80.4/SkiaSharp.Views.Desktop.Common.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.Common.dll 2 | 3 | ## SkiaSharp.Views.Desktop.Common.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Desktop.Common/2.88.1/SkiaSharp.Views.Desktop.Common.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.Common.dll 2 | 3 | ## SkiaSharp.Views.Desktop.Common.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Desktop.Common/2.88.2/SkiaSharp.Views.Desktop.Common.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.Common.dll 2 | 3 | ## SkiaSharp.Views.Desktop.Common.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Desktop.Common/2.88.3/SkiaSharp.Views.Desktop.Common.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.Common.dll 2 | 3 | ## SkiaSharp.Views.Desktop.Common.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Desktop.Common/2.88.4/SkiaSharp.Views.Desktop.Common.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.Common.dll 2 | 3 | ## SkiaSharp.Views.Desktop.Common.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Desktop.Common/2.88.5/SkiaSharp.Views.Desktop.Common.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.Common.dll 2 | 3 | ## SkiaSharp.Views.Desktop.Common.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Desktop.Common/2.88.6/SkiaSharp.Views.Desktop.Common.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.Common.dll 2 | 3 | ## SkiaSharp.Views.Desktop.Common.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Desktop.Common/2.88.7/SkiaSharp.Views.Desktop.Common.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.Common.dll 2 | 3 | ## SkiaSharp.Views.Desktop.Common.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.GTK/1.68.2.1/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.GTK/1.68.3/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.GTK/2.80.0/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > Assembly Version Changed: 2.80.0.0 vs 1.68.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.GTK/2.80.1/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.GTK/2.80.3/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.GTK/2.80.4/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.GTK/2.88.1/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.GTK/2.88.2/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.GTK/2.88.3/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.GTK/2.88.4/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.GTK/2.88.5/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.GTK/2.88.6/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.WPF/1.68.1.1/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.WPF/1.68.2.1/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.WPF/1.68.3/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.WPF/2.80.0/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > Assembly Version Changed: 2.80.0.0 vs 1.68.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.WPF/2.80.1/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.WPF/2.80.3/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.WPF/2.80.4/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.WPF/2.88.1/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.WPF/2.88.2/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.WPF/2.88.3/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.WPF/2.88.4/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.WPF/2.88.5/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms.WPF/2.88.6/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/1.56.0/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > Assembly Version Changed: 1.56.0.0 vs 1.55.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/1.56.1/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/1.57.1/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/1.58.0/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > Assembly Version Changed: 1.58.0.0 vs 1.57.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/1.58.1.1/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/1.59.0/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > Assembly Version Changed: 1.59.0.0 vs 1.58.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/1.59.1.1/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/1.59.1/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/1.59.3/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/1.60.0/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > Assembly Version Changed: 1.60.0.0 vs 1.59.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/1.60.2/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/1.60.3/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/1.68.1.1/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/1.68.2.1/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/1.68.3/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/2.80.0/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > Assembly Version Changed: 2.80.0.0 vs 1.68.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/2.80.1/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/2.80.3/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/2.80.4/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/2.88.1/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/2.88.2/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/2.88.3/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/2.88.4/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/2.88.5/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Forms/2.88.6/SkiaSharp.Views.Forms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Forms.dll 2 | 3 | ## SkiaSharp.Views.Forms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk2/1.68.1.1/SkiaSharp.Views.Gtk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk.dll 2 | 3 | ## SkiaSharp.Views.Gtk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk2/1.68.2.1/SkiaSharp.Views.Gtk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk.dll 2 | 3 | ## SkiaSharp.Views.Gtk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk2/1.68.3/SkiaSharp.Views.Gtk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk.dll 2 | 3 | ## SkiaSharp.Views.Gtk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk2/2.80.0/SkiaSharp.Views.Gtk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk.dll 2 | 3 | ## SkiaSharp.Views.Gtk.dll 4 | 5 | > Assembly Version Changed: 2.80.0.0 vs 1.68.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk2/2.80.1/SkiaSharp.Views.Gtk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk.dll 2 | 3 | ## SkiaSharp.Views.Gtk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk2/2.80.2/SkiaSharp.Views.Gtk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk.dll 2 | 3 | ## SkiaSharp.Views.Gtk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk2/2.80.3/SkiaSharp.Views.Gtk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk.dll 2 | 3 | ## SkiaSharp.Views.Gtk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk2/2.80.4/SkiaSharp.Views.Gtk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk.dll 2 | 3 | ## SkiaSharp.Views.Gtk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk2/2.88.0/SkiaSharp.Views.Gtk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk.dll 2 | 3 | ## SkiaSharp.Views.Gtk.dll 4 | 5 | > Assembly Version Changed: 2.88.0.0 vs 2.80.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk2/2.88.1/SkiaSharp.Views.Gtk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk.dll 2 | 3 | ## SkiaSharp.Views.Gtk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk2/2.88.2/SkiaSharp.Views.Gtk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk.dll 2 | 3 | ## SkiaSharp.Views.Gtk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk2/2.88.3/SkiaSharp.Views.Gtk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk.dll 2 | 3 | ## SkiaSharp.Views.Gtk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk2/2.88.4/SkiaSharp.Views.Gtk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk.dll 2 | 3 | ## SkiaSharp.Views.Gtk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk2/2.88.5/SkiaSharp.Views.Gtk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk.dll 2 | 3 | ## SkiaSharp.Views.Gtk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk2/2.88.6/SkiaSharp.Views.Gtk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk.dll 2 | 3 | ## SkiaSharp.Views.Gtk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk3/1.68.1.1/SkiaSharp.Views.Gtk3.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk3.dll 2 | 3 | ## SkiaSharp.Views.Gtk3.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk3/1.68.2.1/SkiaSharp.Views.Gtk3.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk3.dll 2 | 3 | ## SkiaSharp.Views.Gtk3.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk3/1.68.3/SkiaSharp.Views.Gtk3.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk3.dll 2 | 3 | ## SkiaSharp.Views.Gtk3.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk3/2.80.0/SkiaSharp.Views.Gtk3.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk3.dll 2 | 3 | ## SkiaSharp.Views.Gtk3.dll 4 | 5 | > Assembly Version Changed: 2.80.0.0 vs 1.68.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk3/2.80.1/SkiaSharp.Views.Gtk3.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk3.dll 2 | 3 | ## SkiaSharp.Views.Gtk3.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk3/2.80.2/SkiaSharp.Views.Gtk3.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk3.dll 2 | 3 | ## SkiaSharp.Views.Gtk3.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk3/2.80.3/SkiaSharp.Views.Gtk3.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk3.dll 2 | 3 | ## SkiaSharp.Views.Gtk3.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk3/2.80.4/SkiaSharp.Views.Gtk3.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk3.dll 2 | 3 | ## SkiaSharp.Views.Gtk3.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk3/2.88.0/SkiaSharp.Views.Gtk3.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk3.dll 2 | 3 | ## SkiaSharp.Views.Gtk3.dll 4 | 5 | > Assembly Version Changed: 2.88.0.0 vs 2.80.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk3/2.88.1/SkiaSharp.Views.Gtk3.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk3.dll 2 | 3 | ## SkiaSharp.Views.Gtk3.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk3/2.88.2/SkiaSharp.Views.Gtk3.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk3.dll 2 | 3 | ## SkiaSharp.Views.Gtk3.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk3/2.88.3/SkiaSharp.Views.Gtk3.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk3.dll 2 | 3 | ## SkiaSharp.Views.Gtk3.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk3/2.88.4/SkiaSharp.Views.Gtk3.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk3.dll 2 | 3 | ## SkiaSharp.Views.Gtk3.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk3/2.88.5/SkiaSharp.Views.Gtk3.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk3.dll 2 | 3 | ## SkiaSharp.Views.Gtk3.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk3/2.88.6/SkiaSharp.Views.Gtk3.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk3.dll 2 | 3 | ## SkiaSharp.Views.Gtk3.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk3/2.88.7/SkiaSharp.Views.Gtk3.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk3.dll 2 | 3 | ## SkiaSharp.Views.Gtk3.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Gtk3/3.0.0/SkiaSharp.Views.Gtk3.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk3.dll 2 | 3 | ## SkiaSharp.Views.Gtk3.dll 4 | 5 | > Assembly Version Changed: 3.0.0.0 vs 2.88.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Maui.Controls/2.88.1/SkiaSharp.Views.Maui.Controls.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Maui.Controls.dll 2 | 3 | ## SkiaSharp.Views.Maui.Controls.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Maui.Controls/2.88.2/SkiaSharp.Views.Maui.Controls.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Maui.Controls.dll 2 | 3 | ## SkiaSharp.Views.Maui.Controls.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Maui.Controls/2.88.3/SkiaSharp.Views.Maui.Controls.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Maui.Controls.dll 2 | 3 | ## SkiaSharp.Views.Maui.Controls.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Maui.Controls/2.88.4/SkiaSharp.Views.Maui.Controls.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Maui.Controls.dll 2 | 3 | ## SkiaSharp.Views.Maui.Controls.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Maui.Controls/2.88.5/SkiaSharp.Views.Maui.Controls.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Maui.Controls.dll 2 | 3 | ## SkiaSharp.Views.Maui.Controls.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Maui.Controls/2.88.6/SkiaSharp.Views.Maui.Controls.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Maui.Controls.dll 2 | 3 | ## SkiaSharp.Views.Maui.Controls.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Maui.Controls/2.88.7/SkiaSharp.Views.Maui.Controls.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Maui.Controls.dll 2 | 3 | ## SkiaSharp.Views.Maui.Controls.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Maui.Core/2.88.1/SkiaSharp.Views.Maui.Core.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Maui.Core.dll 2 | 3 | ## SkiaSharp.Views.Maui.Core.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Maui.Core/2.88.2/SkiaSharp.Views.Maui.Core.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Maui.Core.dll 2 | 3 | ## SkiaSharp.Views.Maui.Core.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Maui.Core/2.88.3/SkiaSharp.Views.Maui.Core.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Maui.Core.dll 2 | 3 | ## SkiaSharp.Views.Maui.Core.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Maui.Core/2.88.4/SkiaSharp.Views.Maui.Core.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Maui.Core.dll 2 | 3 | ## SkiaSharp.Views.Maui.Core.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Maui.Core/2.88.5/SkiaSharp.Views.Maui.Core.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Maui.Core.dll 2 | 3 | ## SkiaSharp.Views.Maui.Core.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Maui.Core/2.88.6/SkiaSharp.Views.Maui.Core.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Maui.Core.dll 2 | 3 | ## SkiaSharp.Views.Maui.Core.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Maui.Core/2.88.7/SkiaSharp.Views.Maui.Core.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Maui.Core.dll 2 | 3 | ## SkiaSharp.Views.Maui.Core.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Uno.WinUI/2.88.2/SkiaSharp.Views.Windows.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Windows.dll 2 | 3 | ## SkiaSharp.Views.Windows.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Uno.WinUI/2.88.3/SkiaSharp.Views.Windows.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Windows.dll 2 | 3 | ## SkiaSharp.Views.Windows.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Uno.WinUI/2.88.4/SkiaSharp.Views.Windows.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Windows.dll 2 | 3 | ## SkiaSharp.Views.Windows.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Uno.WinUI/2.88.5/SkiaSharp.Views.Windows.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Windows.dll 2 | 3 | ## SkiaSharp.Views.Windows.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Uno.WinUI/2.88.6/SkiaSharp.Views.Windows.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Windows.dll 2 | 3 | ## SkiaSharp.Views.Windows.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Uno.WinUI/2.88.7/SkiaSharp.Views.Windows.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Windows.dll 2 | 3 | ## SkiaSharp.Views.Windows.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Uno/2.80.4/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Uno/2.88.1/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Uno/2.88.2/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Uno/2.88.3/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Uno/2.88.4/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Uno/2.88.5/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.Uno/2.88.6/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WPF/1.68.1.1/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WPF/1.68.2.1/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WPF/1.68.2/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WPF/1.68.3/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WPF/2.80.0/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > Assembly Version Changed: 2.80.0.0 vs 1.68.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WPF/2.80.1/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WPF/2.80.2/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WPF/2.80.3/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WPF/2.80.4/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WPF/2.88.0/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > Assembly Version Changed: 2.88.0.0 vs 2.80.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WPF/2.88.1/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WPF/2.88.2/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WPF/2.88.3/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WPF/2.88.4/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WPF/2.88.5/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WPF/2.88.6/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WPF/2.88.7/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WinUI/2.80.4/SkiaSharp.Views.Windows.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Windows.dll 2 | 3 | ## SkiaSharp.Views.Windows.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WinUI/2.88.1/SkiaSharp.Views.Windows.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Windows.dll 2 | 3 | ## SkiaSharp.Views.Windows.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WinUI/2.88.2/SkiaSharp.Views.Windows.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Windows.dll 2 | 3 | ## SkiaSharp.Views.Windows.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WinUI/2.88.3/SkiaSharp.Views.Windows.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Windows.dll 2 | 3 | ## SkiaSharp.Views.Windows.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WinUI/2.88.4/SkiaSharp.Views.Windows.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Windows.dll 2 | 3 | ## SkiaSharp.Views.Windows.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WinUI/2.88.5/SkiaSharp.Views.Windows.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Windows.dll 2 | 3 | ## SkiaSharp.Views.Windows.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WinUI/2.88.6/SkiaSharp.Views.Windows.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Windows.dll 2 | 3 | ## SkiaSharp.Views.Windows.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WinUI/2.88.7/SkiaSharp.Views.Windows.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Windows.dll 2 | 3 | ## SkiaSharp.Views.Windows.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WindowsForms/1.68.1.1/SkiaSharp.Views.WindowsForms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WindowsForms.dll 2 | 3 | ## SkiaSharp.Views.WindowsForms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WindowsForms/1.68.2.1/SkiaSharp.Views.WindowsForms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WindowsForms.dll 2 | 3 | ## SkiaSharp.Views.WindowsForms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WindowsForms/1.68.2/SkiaSharp.Views.WindowsForms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WindowsForms.dll 2 | 3 | ## SkiaSharp.Views.WindowsForms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WindowsForms/1.68.3/SkiaSharp.Views.WindowsForms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WindowsForms.dll 2 | 3 | ## SkiaSharp.Views.WindowsForms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WindowsForms/2.80.1/SkiaSharp.Views.WindowsForms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WindowsForms.dll 2 | 3 | ## SkiaSharp.Views.WindowsForms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WindowsForms/2.80.2/SkiaSharp.Views.WindowsForms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WindowsForms.dll 2 | 3 | ## SkiaSharp.Views.WindowsForms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WindowsForms/2.80.3/SkiaSharp.Views.WindowsForms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WindowsForms.dll 2 | 3 | ## SkiaSharp.Views.WindowsForms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WindowsForms/2.80.4/SkiaSharp.Views.WindowsForms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WindowsForms.dll 2 | 3 | ## SkiaSharp.Views.WindowsForms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WindowsForms/2.88.1/SkiaSharp.Views.WindowsForms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WindowsForms.dll 2 | 3 | ## SkiaSharp.Views.WindowsForms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WindowsForms/2.88.2/SkiaSharp.Views.WindowsForms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WindowsForms.dll 2 | 3 | ## SkiaSharp.Views.WindowsForms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WindowsForms/2.88.3/SkiaSharp.Views.WindowsForms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WindowsForms.dll 2 | 3 | ## SkiaSharp.Views.WindowsForms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WindowsForms/2.88.4/SkiaSharp.Views.WindowsForms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WindowsForms.dll 2 | 3 | ## SkiaSharp.Views.WindowsForms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WindowsForms/2.88.5/SkiaSharp.Views.WindowsForms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WindowsForms.dll 2 | 3 | ## SkiaSharp.Views.WindowsForms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WindowsForms/2.88.6/SkiaSharp.Views.WindowsForms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WindowsForms.dll 2 | 3 | ## SkiaSharp.Views.WindowsForms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views.WindowsForms/2.88.7/SkiaSharp.Views.WindowsForms.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WindowsForms.dll 2 | 3 | ## SkiaSharp.Views.WindowsForms.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.55.1/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.56.0/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > Assembly Version Changed: 1.56.0.0 vs 1.55.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.56.0/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > Assembly Version Changed: 1.56.0.0 vs 1.55.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.56.0/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > Assembly Version Changed: 1.56.0.0 vs 1.55.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.56.0/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > Assembly Version Changed: 1.56.0.0 vs 1.55.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.56.1/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.56.1/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.56.1/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.56.1/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.56.1/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.56.1/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.56.1/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.57.0/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > Assembly Version Changed: 1.57.0.0 vs 1.56.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.57.0/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > Assembly Version Changed: 1.57.0.0 vs 1.56.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.57.0/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > Assembly Version Changed: 1.57.0.0 vs 1.56.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.57.0/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > Assembly Version Changed: 1.57.0.0 vs 1.56.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.57.0/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > Assembly Version Changed: 1.57.0.0 vs 1.56.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.57.0/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > Assembly Version Changed: 1.57.0.0 vs 1.56.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.57.0/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > Assembly Version Changed: 1.57.0.0 vs 1.56.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.57.1/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.57.1/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.57.1/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.57.1/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.57.1/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.57.1/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.57.1/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.58.0/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > Assembly Version Changed: 1.58.0.0 vs 1.57.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.58.0/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > Assembly Version Changed: 1.58.0.0 vs 1.57.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.58.0/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > Assembly Version Changed: 1.58.0.0 vs 1.57.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.58.0/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > Assembly Version Changed: 1.58.0.0 vs 1.57.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.58.0/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > Assembly Version Changed: 1.58.0.0 vs 1.57.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.58.0/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > Assembly Version Changed: 1.58.0.0 vs 1.57.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.58.0/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > Assembly Version Changed: 1.58.0.0 vs 1.57.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.58.1.1/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.58.1.1/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.58.1.1/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.58.1.1/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.58.1.1/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.58.1.1/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.58.1.1/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.58.1/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.58.1/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.58.1/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.58.1/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.58.1/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.58.1/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.0/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > Assembly Version Changed: 1.59.0.0 vs 1.58.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.0/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > Assembly Version Changed: 1.59.0.0 vs 1.58.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.0/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > Assembly Version Changed: 1.59.0.0 vs 1.58.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.0/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > Assembly Version Changed: 1.59.0.0 vs 1.58.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.0/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > Assembly Version Changed: 1.59.0.0 vs 1.58.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.0/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > Assembly Version Changed: 1.59.0.0 vs 1.58.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.0/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > Assembly Version Changed: 1.59.0.0 vs 1.58.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.1.1/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.1.1/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.1.1/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.1.1/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.1.1/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.1.1/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.1.1/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.1/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.1/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.1/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.1/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.1/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.1/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.1/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.2/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.3/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.3/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.3/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.3/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.3/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.3/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.59.3/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.0/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > Assembly Version Changed: 1.60.0.0 vs 1.59.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.0/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > Assembly Version Changed: 1.60.0.0 vs 1.59.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.0/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > Assembly Version Changed: 1.60.0.0 vs 1.59.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.1/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.1/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.1/SkiaSharp.Views.Gtk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk.dll 2 | 3 | ## SkiaSharp.Views.Gtk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.1/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.1/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.1/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.1/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.1/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.1/SkiaSharp.Views.watchOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.watchOS.dll 2 | 3 | ## SkiaSharp.Views.watchOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.2/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.2/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.2/SkiaSharp.Views.Gtk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk.dll 2 | 3 | ## SkiaSharp.Views.Gtk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.2/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.2/SkiaSharp.Views.Tizen.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Tizen.dll 2 | 3 | ## SkiaSharp.Views.Tizen.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.2/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.2/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.2/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.2/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.2/SkiaSharp.Views.watchOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.watchOS.dll 2 | 3 | ## SkiaSharp.Views.watchOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.3/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.3/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.3/SkiaSharp.Views.Gtk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk.dll 2 | 3 | ## SkiaSharp.Views.Gtk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.3/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.3/SkiaSharp.Views.Tizen.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Tizen.dll 2 | 3 | ## SkiaSharp.Views.Tizen.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.3/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.3/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.3/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.3/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.60.3/SkiaSharp.Views.watchOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.watchOS.dll 2 | 3 | ## SkiaSharp.Views.watchOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.Gtk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk.dll 2 | 3 | ## SkiaSharp.Views.Gtk.dll 4 | 5 | > Assembly Version Changed: 1.68.0.0 vs 1.60.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > Assembly Version Changed: 1.68.0.0 vs 1.60.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.watchOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.watchOS.dll 2 | 3 | ## SkiaSharp.Views.watchOS.dll 4 | 5 | > Assembly Version Changed: 1.68.0.0 vs 1.60.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.1.1/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.1.1/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.1.1/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.1.1/SkiaSharp.Views.Tizen.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Tizen.dll 2 | 3 | ## SkiaSharp.Views.Tizen.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.1.1/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.1.1/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.1.1/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.1.1/SkiaSharp.Views.watchOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.watchOS.dll 2 | 3 | ## SkiaSharp.Views.watchOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.1/SkiaSharp.Views.Gtk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Gtk.dll 2 | 3 | ## SkiaSharp.Views.Gtk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.1/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.1/SkiaSharp.Views.Tizen.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Tizen.dll 2 | 3 | ## SkiaSharp.Views.Tizen.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.1/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.1/SkiaSharp.Views.WPF.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.WPF.dll 2 | 3 | ## SkiaSharp.Views.WPF.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.1/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.1/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.1/SkiaSharp.Views.watchOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.watchOS.dll 2 | 3 | ## SkiaSharp.Views.watchOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.2.1/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.2.1/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.2.1/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.2.1/SkiaSharp.Views.Tizen.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Tizen.dll 2 | 3 | ## SkiaSharp.Views.Tizen.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.2.1/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.2.1/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.2.1/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.2.1/SkiaSharp.Views.watchOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.watchOS.dll 2 | 3 | ## SkiaSharp.Views.watchOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.2/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.2/SkiaSharp.Views.watchOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.watchOS.dll 2 | 3 | ## SkiaSharp.Views.watchOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.3/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.3/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.3/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.3/SkiaSharp.Views.Tizen.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Tizen.dll 2 | 3 | ## SkiaSharp.Views.Tizen.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.3/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.3/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.3/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/1.68.3/SkiaSharp.Views.watchOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.watchOS.dll 2 | 3 | ## SkiaSharp.Views.watchOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.0/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > Assembly Version Changed: 2.80.0.0 vs 1.68.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.0/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > Assembly Version Changed: 2.80.0.0 vs 1.68.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.0/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > Assembly Version Changed: 2.80.0.0 vs 1.68.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.0/SkiaSharp.Views.Tizen.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Tizen.dll 2 | 3 | ## SkiaSharp.Views.Tizen.dll 4 | 5 | > Assembly Version Changed: 2.80.0.0 vs 1.68.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.0/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > Assembly Version Changed: 2.80.0.0 vs 1.68.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.0/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > Assembly Version Changed: 2.80.0.0 vs 1.68.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.0/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > Assembly Version Changed: 2.80.0.0 vs 1.68.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.0/SkiaSharp.Views.watchOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.watchOS.dll 2 | 3 | ## SkiaSharp.Views.watchOS.dll 4 | 5 | > Assembly Version Changed: 2.80.0.0 vs 1.68.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.1/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.1/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.1/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.1/SkiaSharp.Views.Tizen.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Tizen.dll 2 | 3 | ## SkiaSharp.Views.Tizen.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.1/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.1/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.1/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.1/SkiaSharp.Views.watchOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.watchOS.dll 2 | 3 | ## SkiaSharp.Views.watchOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.2/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.2/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.2/SkiaSharp.Views.Tizen.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Tizen.dll 2 | 3 | ## SkiaSharp.Views.Tizen.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.2/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.3/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.3/SkiaSharp.Views.Tizen.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Tizen.dll 2 | 3 | ## SkiaSharp.Views.Tizen.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.3/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.3/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.3/SkiaSharp.Views.watchOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.watchOS.dll 2 | 3 | ## SkiaSharp.Views.watchOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.4/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.4/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.4/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.4/SkiaSharp.Views.Tizen.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Tizen.dll 2 | 3 | ## SkiaSharp.Views.Tizen.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.4/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.80.4/SkiaSharp.Views.watchOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.watchOS.dll 2 | 3 | ## SkiaSharp.Views.watchOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.0/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > Assembly Version Changed: 2.88.0.0 vs 2.80.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.1/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.1/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.1/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.1/SkiaSharp.Views.Tizen.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Tizen.dll 2 | 3 | ## SkiaSharp.Views.Tizen.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.1/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.1/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.1/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.1/SkiaSharp.Views.watchOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.watchOS.dll 2 | 3 | ## SkiaSharp.Views.watchOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.2/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.2/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.2/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.2/SkiaSharp.Views.Tizen.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Tizen.dll 2 | 3 | ## SkiaSharp.Views.Tizen.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.2/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.2/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.2/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.2/SkiaSharp.Views.watchOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.watchOS.dll 2 | 3 | ## SkiaSharp.Views.watchOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.3/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.3/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.3/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.3/SkiaSharp.Views.Tizen.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Tizen.dll 2 | 3 | ## SkiaSharp.Views.Tizen.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.3/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.3/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.3/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.3/SkiaSharp.Views.watchOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.watchOS.dll 2 | 3 | ## SkiaSharp.Views.watchOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.4/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.4/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.4/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.4/SkiaSharp.Views.Tizen.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Tizen.dll 2 | 3 | ## SkiaSharp.Views.Tizen.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.4/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.4/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.4/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.4/SkiaSharp.Views.watchOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.watchOS.dll 2 | 3 | ## SkiaSharp.Views.watchOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.5/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.5/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.5/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.5/SkiaSharp.Views.Tizen.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Tizen.dll 2 | 3 | ## SkiaSharp.Views.Tizen.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.5/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.5/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.5/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.5/SkiaSharp.Views.watchOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.watchOS.dll 2 | 3 | ## SkiaSharp.Views.watchOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.6/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.6/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.6/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.6/SkiaSharp.Views.Tizen.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Tizen.dll 2 | 3 | ## SkiaSharp.Views.Tizen.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.6/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.6/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.6/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.6/SkiaSharp.Views.watchOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.watchOS.dll 2 | 3 | ## SkiaSharp.Views.watchOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.7/SkiaSharp.Views.Android.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Android.dll 2 | 3 | ## SkiaSharp.Views.Android.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.7/SkiaSharp.Views.Desktop.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Desktop.dll 2 | 3 | ## SkiaSharp.Views.Desktop.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.7/SkiaSharp.Views.Mac.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Mac.dll 2 | 3 | ## SkiaSharp.Views.Mac.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.7/SkiaSharp.Views.Tizen.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.Tizen.dll 2 | 3 | ## SkiaSharp.Views.Tizen.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.7/SkiaSharp.Views.UWP.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.UWP.dll 2 | 3 | ## SkiaSharp.Views.UWP.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.7/SkiaSharp.Views.iOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.iOS.dll 2 | 3 | ## SkiaSharp.Views.iOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.7/SkiaSharp.Views.tvOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.tvOS.dll 2 | 3 | ## SkiaSharp.Views.tvOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Views/2.88.7/SkiaSharp.Views.watchOS.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Views.watchOS.dll 2 | 3 | ## SkiaSharp.Views.watchOS.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Vulkan.SharpVk/2.80.1/SkiaSharp.Vulkan.SharpVk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Vulkan.SharpVk.dll 2 | 3 | ## SkiaSharp.Vulkan.SharpVk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Vulkan.SharpVk/2.80.2/SkiaSharp.Vulkan.SharpVk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Vulkan.SharpVk.dll 2 | 3 | ## SkiaSharp.Vulkan.SharpVk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Vulkan.SharpVk/2.80.3/SkiaSharp.Vulkan.SharpVk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Vulkan.SharpVk.dll 2 | 3 | ## SkiaSharp.Vulkan.SharpVk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Vulkan.SharpVk/2.80.4/SkiaSharp.Vulkan.SharpVk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Vulkan.SharpVk.dll 2 | 3 | ## SkiaSharp.Vulkan.SharpVk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Vulkan.SharpVk/2.88.0/SkiaSharp.Vulkan.SharpVk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Vulkan.SharpVk.dll 2 | 3 | ## SkiaSharp.Vulkan.SharpVk.dll 4 | 5 | > Assembly Version Changed: 2.88.0.0 vs 2.80.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Vulkan.SharpVk/2.88.1/SkiaSharp.Vulkan.SharpVk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Vulkan.SharpVk.dll 2 | 3 | ## SkiaSharp.Vulkan.SharpVk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Vulkan.SharpVk/2.88.2/SkiaSharp.Vulkan.SharpVk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Vulkan.SharpVk.dll 2 | 3 | ## SkiaSharp.Vulkan.SharpVk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Vulkan.SharpVk/2.88.3/SkiaSharp.Vulkan.SharpVk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Vulkan.SharpVk.dll 2 | 3 | ## SkiaSharp.Vulkan.SharpVk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Vulkan.SharpVk/2.88.4/SkiaSharp.Vulkan.SharpVk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Vulkan.SharpVk.dll 2 | 3 | ## SkiaSharp.Vulkan.SharpVk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Vulkan.SharpVk/2.88.5/SkiaSharp.Vulkan.SharpVk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Vulkan.SharpVk.dll 2 | 3 | ## SkiaSharp.Vulkan.SharpVk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Vulkan.SharpVk/2.88.6/SkiaSharp.Vulkan.SharpVk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Vulkan.SharpVk.dll 2 | 3 | ## SkiaSharp.Vulkan.SharpVk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Vulkan.SharpVk/2.88.7/SkiaSharp.Vulkan.SharpVk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Vulkan.SharpVk.dll 2 | 3 | ## SkiaSharp.Vulkan.SharpVk.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp.Vulkan.SharpVk/3.0.0/SkiaSharp.Vulkan.SharpVk.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.Vulkan.SharpVk.dll 2 | 3 | ## SkiaSharp.Vulkan.SharpVk.dll 4 | 5 | > Assembly Version Changed: 3.0.0.0 vs 2.88.0.0 6 | 7 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp/1.59.1/SkiaSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.dll 2 | 3 | ## SkiaSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp/1.59.3/SkiaSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.dll 2 | 3 | ## SkiaSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp/1.60.3/SkiaSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.dll 2 | 3 | ## SkiaSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp/1.68.1.1/SkiaSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.dll 2 | 3 | ## SkiaSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp/1.68.2.1/SkiaSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.dll 2 | 3 | ## SkiaSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp/1.68.3/SkiaSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.dll 2 | 3 | ## SkiaSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp/2.80.1/SkiaSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.dll 2 | 3 | ## SkiaSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp/2.80.4/SkiaSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.dll 2 | 3 | ## SkiaSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp/2.88.1/SkiaSharp.breaking.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.dll 2 | 3 | ## SkiaSharp.dll 4 | 5 | ### Namespace SkiaSharp 6 | 7 | #### Removed Type SkiaSharp.Resource 8 | 9 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp/2.88.2/SkiaSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.dll 2 | 3 | ## SkiaSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp/2.88.3/SkiaSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.dll 2 | 3 | ## SkiaSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp/2.88.4/SkiaSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.dll 2 | 3 | ## SkiaSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp/2.88.5/SkiaSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.dll 2 | 3 | ## SkiaSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp/2.88.6/SkiaSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.dll 2 | 3 | ## SkiaSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /changelogs/SkiaSharp/2.88.7/SkiaSharp.md: -------------------------------------------------------------------------------- 1 | # API diff: SkiaSharp.dll 2 | 3 | ## SkiaSharp.dll 4 | 5 | > No changes. 6 | -------------------------------------------------------------------------------- /externals/.gitignore: -------------------------------------------------------------------------------- 1 | angle/ 2 | package_cache/ 3 | vcpkg/ 4 | winappsdk/ 5 | -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "allowPrerelease": false 4 | } 5 | } -------------------------------------------------------------------------------- /images/forground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/images/forground.png -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/images/icon.png -------------------------------------------------------------------------------- /images/icon_1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/images/icon_1024x1024.png -------------------------------------------------------------------------------- /images/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/images/icon_128x128.png -------------------------------------------------------------------------------- /images/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/images/icon_256x256.png -------------------------------------------------------------------------------- /images/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/images/icon_512x512.png -------------------------------------------------------------------------------- /images/nuget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/images/nuget.png -------------------------------------------------------------------------------- /images/nuget_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/images/nuget_1024.png -------------------------------------------------------------------------------- /images/nuget_2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/images/nuget_2048.png -------------------------------------------------------------------------------- /images/nuget_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/images/nuget_old.png -------------------------------------------------------------------------------- /images/nuget_wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/images/nuget_wide.png -------------------------------------------------------------------------------- /images/nuget_wide_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/images/nuget_wide_old.png -------------------------------------------------------------------------------- /images/skia_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/images/skia_1024.png -------------------------------------------------------------------------------- /images/skia_1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/images/skia_1024x1024.png -------------------------------------------------------------------------------- /images/skia_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/images/skia_128.png -------------------------------------------------------------------------------- /images/skia_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/images/skia_128x128.png -------------------------------------------------------------------------------- /images/skia_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/images/skia_16x16.png -------------------------------------------------------------------------------- /images/skia_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/images/skia_256.png -------------------------------------------------------------------------------- /images/skia_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/images/skia_256x256.png -------------------------------------------------------------------------------- /images/skia_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/images/skia_32x32.png -------------------------------------------------------------------------------- /images/skia_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/images/skia_512.png -------------------------------------------------------------------------------- /images/skia_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/images/skia_512x512.png -------------------------------------------------------------------------------- /images/skia_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/images/skia_64x64.png -------------------------------------------------------------------------------- /native/.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata/ 2 | project.xcworkspace/ 3 | uwp/ANGLE/triplets 4 | Generated Files/ 5 | -------------------------------------------------------------------------------- /native/android/libHarfBuzzSharp/.gitignore: -------------------------------------------------------------------------------- 1 | libs 2 | -------------------------------------------------------------------------------- /native/android/libHarfBuzzSharp/jni/Android.mk: -------------------------------------------------------------------------------- 1 | LOCAL_PATH:= $(call my-dir) 2 | 3 | include jni/HarfBuzzSharp.mk 4 | -------------------------------------------------------------------------------- /native/ios/libHarfBuzzSharp/libHarfBuzzSharp/libHarfBuzzSharp.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /native/ios/libSkiaSharp/libSkiaSharp/libSkiaSharp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/native/ios/libSkiaSharp/libSkiaSharp/libSkiaSharp.h -------------------------------------------------------------------------------- /native/linux/libHarfBuzzSharp/libHarfBuzzSharp.map: -------------------------------------------------------------------------------- 1 | libHarfBuzzSharp { 2 | global: 3 | hb_*; 4 | local: 5 | *; 6 | }; 7 | -------------------------------------------------------------------------------- /native/tvos/libHarfBuzzSharp/libHarfBuzzSharp/libHarfBuzzSharp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/native/tvos/libHarfBuzzSharp/libHarfBuzzSharp/libHarfBuzzSharp.h -------------------------------------------------------------------------------- /native/tvos/libSkiaSharp/libSkiaSharp/libSkiaSharp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/native/tvos/libSkiaSharp/libSkiaSharp/libSkiaSharp.h -------------------------------------------------------------------------------- /native/winui/SkiaSharp.Views.WinUI.Native/SkiaSharp.Views.WinUI.Native/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /samples/.gitignore: -------------------------------------------------------------------------------- 1 | !*.pfx 2 | -------------------------------------------------------------------------------- /samples/AppStoreCertificates/SkiaSharp.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/AppStoreCertificates/SkiaSharp.keystore -------------------------------------------------------------------------------- /samples/AppStoreCertificates/SkiaSharpSample_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/AppStoreCertificates/SkiaSharpSample_TemporaryKey.pfx -------------------------------------------------------------------------------- /samples/Basic/Android/SkiaSharpSample/Resources/values/Strings.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | SkiaSharp 4 | 5 | -------------------------------------------------------------------------------- /samples/Basic/BlazorWebAssembly/SkiaSharpSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Basic/BlazorWebAssembly/SkiaSharpSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /samples/Basic/Docker/Console/.dockerignore: -------------------------------------------------------------------------------- 1 | .dockerignore 2 | bin 3 | obj 4 | -------------------------------------------------------------------------------- /samples/Basic/Docker/Console/run.ps1: -------------------------------------------------------------------------------- 1 | docker build --tag skiasharpsample/console . 2 | docker run --rm skiasharpsample/console 3 | -------------------------------------------------------------------------------- /samples/Basic/Docker/WebApi/.dockerignore: -------------------------------------------------------------------------------- 1 | *.Dockerfile 2 | .dockerignore 3 | .env 4 | .git 5 | .gitignore 6 | .vs 7 | .vscode 8 | */bin 9 | */obj 10 | **/.toolstarget -------------------------------------------------------------------------------- /samples/Basic/Docker/WebApi/SkiaSharpSample/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Warning" 5 | } 6 | }, 7 | "AllowedHosts": "*" 8 | } 9 | -------------------------------------------------------------------------------- /samples/Basic/Maui/SkiaSharpSample/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Windows Machine": { 4 | "commandName": "MsixPackage", 5 | "nativeDebugging": true 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /samples/Basic/Maui/SkiaSharpSample/Resources/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Basic/Maui/SkiaSharpSample/Resources/appicon.png -------------------------------------------------------------------------------- /samples/Basic/Maui/SkiaSharpSample/Resources/skiasharplogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Basic/Maui/SkiaSharpSample/Resources/skiasharplogo.png -------------------------------------------------------------------------------- /samples/Basic/Tizen/SkiaSharpSample/shared/res/SkiaSharpSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Basic/Tizen/SkiaSharpSample/shared/res/SkiaSharpSample.png -------------------------------------------------------------------------------- /samples/Basic/UnoPlatform/SkiaSharpSample/Platforms/WebAssembly/WasmScripts/AppManifest.js: -------------------------------------------------------------------------------- 1 | var UnoAppManifest = { 2 | displayName: "SkiaSharpSample" 3 | } 4 | -------------------------------------------------------------------------------- /samples/Basic/WPF/SkiaSharpSample/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace SkiaSharpSample 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /samples/Basic/WPF/SkiaSharpSample/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Basic/WPF/SkiaSharpSample/icon.ico -------------------------------------------------------------------------------- /samples/Basic/Web/SkiaSharpSample/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using SkiaSharpSample 2 | @namespace SkiaSharpSample.Pages 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /samples/Basic/Web/SkiaSharpSample/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /samples/Basic/Web/SkiaSharpSample/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Basic/Web/SkiaSharpSample/wwwroot/favicon.ico -------------------------------------------------------------------------------- /samples/Basic/WinUI/SkiaSharpSample/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Basic/WinUI/SkiaSharpSample/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/Basic/WinUI/SkiaSharpSample/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Basic/WinUI/SkiaSharpSample/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/Basic/WinUI/SkiaSharpSample/Images/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Basic/WinUI/SkiaSharpSample/Images/StoreLogo.png -------------------------------------------------------------------------------- /samples/Basic/WinUI/SkiaSharpSample/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Windows Machine": { 4 | "commandName": "MsixPackage", 5 | "nativeDebugging": true 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /samples/Basic/WindowsForms/SkiaSharpSample/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Basic/WindowsForms/SkiaSharpSample/icon.ico -------------------------------------------------------------------------------- /samples/Basic/iOS/SkiaSharpSample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /samples/Basic/macOS/SkiaSharpSample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /samples/Basic/tvOS/SkiaSharpSample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /samples/Directory.Build.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /samples/Gallery/Desktop/SkiaSharpSample/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Desktop/SkiaSharpSample/icon.ico -------------------------------------------------------------------------------- /samples/Gallery/Shared/Media/adobe-dng.dng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Shared/Media/adobe-dng.dng -------------------------------------------------------------------------------- /samples/Gallery/Shared/Media/animated-heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Shared/Media/animated-heart.gif -------------------------------------------------------------------------------- /samples/Gallery/Shared/Media/baboon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Shared/Media/baboon.png -------------------------------------------------------------------------------- /samples/Gallery/Shared/Media/baby_tux.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Shared/Media/baby_tux.webp -------------------------------------------------------------------------------- /samples/Gallery/Shared/Media/color-wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Shared/Media/color-wheel.png -------------------------------------------------------------------------------- /samples/Gallery/Shared/Media/content-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Shared/Media/content-font.ttf -------------------------------------------------------------------------------- /samples/Gallery/Shared/Media/embedded-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Shared/Media/embedded-font.ttf -------------------------------------------------------------------------------- /samples/Gallery/Shared/Media/nine-patch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Shared/Media/nine-patch.png -------------------------------------------------------------------------------- /samples/Gallery/UWP/SkiaSharpSample/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/UWP/SkiaSharpSample/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /samples/Gallery/UWP/SkiaSharpSample/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/UWP/SkiaSharpSample/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /samples/Gallery/UWP/SkiaSharpSample/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/UWP/SkiaSharpSample/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /samples/Gallery/UWP/SkiaSharpSample/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/UWP/SkiaSharpSample/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /samples/Gallery/UWP/SkiaSharpSample/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/UWP/SkiaSharpSample/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /samples/Gallery/UWP/SkiaSharpSample/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/UWP/SkiaSharpSample/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /samples/Gallery/UWP/SkiaSharpSample/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/UWP/SkiaSharpSample/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /samples/Gallery/UWP/SkiaSharpSample/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/UWP/SkiaSharpSample/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /samples/Gallery/UWP/SkiaSharpSample/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/UWP/SkiaSharpSample/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /samples/Gallery/UWP/SkiaSharpSample/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/UWP/SkiaSharpSample/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /samples/Gallery/UWP/SkiaSharpSample/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/UWP/SkiaSharpSample/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /samples/Gallery/UWP/SkiaSharpSample/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/UWP/SkiaSharpSample/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /samples/Gallery/UWP/SkiaSharpSample/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/UWP/SkiaSharpSample/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /samples/Gallery/UWP/SkiaSharpSample/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/UWP/SkiaSharpSample/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/Gallery/UWP/SkiaSharpSample/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/UWP/SkiaSharpSample/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /samples/Gallery/UWP/SkiaSharpSample/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/UWP/SkiaSharpSample/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /samples/Gallery/UWP/SkiaSharpSample/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/UWP/SkiaSharpSample/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /samples/Gallery/UWP/SkiaSharpSample/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/UWP/SkiaSharpSample/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /samples/Gallery/UWP/SkiaSharpSample/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/UWP/SkiaSharpSample/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /samples/Gallery/Uno.WinUI/SkiaSharpSample.Mobile/macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /samples/Gallery/Uno.WinUI/SkiaSharpSample.Skia.WPF/Program.cs: -------------------------------------------------------------------------------- 1 | namespace SkiaSharpSample.Skia.Gtk 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /samples/Gallery/Uno/SkiaSharpSample.Android/Resources/values/Strings.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | SkiaSharp 4 | 5 | -------------------------------------------------------------------------------- /samples/Gallery/Uno/SkiaSharpSample.UWP/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Uno/SkiaSharpSample.UWP/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /samples/Gallery/Uno/SkiaSharpSample.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Uno/SkiaSharpSample.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /samples/Gallery/Uno/SkiaSharpSample.iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /samples/Gallery/Uno/SkiaSharpSample.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /samples/Gallery/WPF/SkiaSharpSample/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/WPF/SkiaSharpSample/icon.ico -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/Android/Resources/drawable/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/Android/Resources/drawable/more.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/Android/Resources/drawable/skia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/Android/Resources/drawable/skia.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/Android/Resources/values/strings.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | SkiaSharp 4 | 5 | -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/Mac/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/Mac/Resources/configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/Mac/Resources/configure.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/Mac/Resources/configure@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/Mac/Resources/configure@2x.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/Mac/Resources/configure@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/Mac/Resources/configure@3x.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/Mac/Resources/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/Mac/Resources/hamburger.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/Mac/Resources/hamburger@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/Mac/Resources/hamburger@2x.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/Mac/Resources/hamburger@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/Mac/Resources/hamburger@3x.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/Mac/Resources/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/Mac/Resources/more.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/Mac/Resources/more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/Mac/Resources/more@2x.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/Mac/Resources/more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/Mac/Resources/more@3x.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/Mac/Resources/slideshow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/Mac/Resources/slideshow.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/Mac/Resources/slideshow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/Mac/Resources/slideshow@2x.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/Mac/Resources/slideshow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/Mac/Resources/slideshow@3x.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/Tizen/res/configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/Tizen/res/configure.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/Tizen/res/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/Tizen/res/hamburger.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/Tizen/res/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/Tizen/res/more.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/Tizen/res/slideshow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/Tizen/res/slideshow.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/Tizen/shared/res/TizenOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/Tizen/shared/res/TizenOS.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/UWP/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/UWP/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/UWP/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/UWP/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/UWP/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/UWP/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/UWP/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/UWP/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/UWP/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/UWP/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/UWP/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/UWP/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/UWP/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/UWP/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/UWP/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/UWP/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/UWP/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/UWP/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/UWP/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/UWP/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/UWP/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/UWP/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/UWP/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/UWP/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/UWP/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/UWP/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/UWP/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/UWP/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/UWP/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/UWP/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/UWP/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/UWP/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/UWP/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/UWP/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/UWP/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/UWP/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/UWP/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/UWP/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/UWP/Assets/configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/UWP/Assets/configure.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/UWP/Assets/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/UWP/Assets/more.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/UWP/Assets/slideshow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/UWP/Assets/slideshow.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/WPF/Assets/configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/WPF/Assets/configure.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/WPF/Assets/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/WPF/Assets/more.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/WPF/Assets/slideshow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/WPF/Assets/slideshow.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/WPF/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/WPF/icon.ico -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/iOS/Resources/configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/iOS/Resources/configure.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/iOS/Resources/configure@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/iOS/Resources/configure@2x.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/iOS/Resources/configure@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/iOS/Resources/configure@3x.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/iOS/Resources/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/iOS/Resources/hamburger.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/iOS/Resources/hamburger@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/iOS/Resources/hamburger@2x.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/iOS/Resources/hamburger@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/iOS/Resources/hamburger@3x.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/iOS/Resources/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/iOS/Resources/ic_launcher.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/iOS/Resources/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/iOS/Resources/more.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/iOS/Resources/more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/iOS/Resources/more@2x.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/iOS/Resources/more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/iOS/Resources/more@3x.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/iOS/Resources/slideshow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/iOS/Resources/slideshow.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/iOS/Resources/slideshow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/iOS/Resources/slideshow@2x.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/iOS/Resources/slideshow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/iOS/Resources/slideshow@3x.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/iOS/Resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/iOS/Resources/splash.png -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/iOS/iTunesArtwork -------------------------------------------------------------------------------- /samples/Gallery/Xamarin.Forms/iOS/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/samples/Gallery/Xamarin.Forms/iOS/iTunesArtwork@2x -------------------------------------------------------------------------------- /samples/Gallery/macOS/SkiaSharpSample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /samples/Gallery/tvOS/SkiaSharpSample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /scripts/Docker/alpine/amd64/.dockerignore: -------------------------------------------------------------------------------- 1 | build-local.sh 2 | -------------------------------------------------------------------------------- /scripts/Docker/alpine/arm64v8/.dockerignore: -------------------------------------------------------------------------------- 1 | build-local.sh 2 | -------------------------------------------------------------------------------- /scripts/Docker/alpine/clang-cross/.dockerignore: -------------------------------------------------------------------------------- 1 | build-local.sh 2 | -------------------------------------------------------------------------------- /scripts/Docker/alpine/clang-cross/startup.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -e 3 | 4 | source /etc/skia-env 5 | 6 | exec "$@" 7 | -------------------------------------------------------------------------------- /scripts/Docker/debian/amd64/.dockerignore: -------------------------------------------------------------------------------- 1 | build-local.sh 2 | -------------------------------------------------------------------------------- /scripts/Docker/debian/arm64v8/.dockerignore: -------------------------------------------------------------------------------- 1 | build-local.sh 2 | -------------------------------------------------------------------------------- /scripts/Docker/debian/clang-cross/.dockerignore: -------------------------------------------------------------------------------- 1 | build-local.sh 2 | -------------------------------------------------------------------------------- /scripts/Docker/debian/clang-cross/10/startup.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -e 3 | 4 | source /etc/skia-env 5 | 6 | exec "$@" 7 | -------------------------------------------------------------------------------- /scripts/Docker/debian/clang-cross/12/startup.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -e 3 | 4 | source /etc/skia-env 5 | 6 | exec "$@" 7 | -------------------------------------------------------------------------------- /scripts/Docker/debian/clang-cross/13/startup.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -e 3 | 4 | source /etc/skia-env 5 | 6 | exec "$@" 7 | -------------------------------------------------------------------------------- /scripts/Docker/wasm/.dockerignore: -------------------------------------------------------------------------------- 1 | build-local.sh 2 | -------------------------------------------------------------------------------- /scripts/Docker/wasm/startup.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -e 3 | 4 | source ~/emsdk/emsdk_env.sh 5 | 6 | exec "$@" 7 | -------------------------------------------------------------------------------- /scripts/get-free-space.ps1: -------------------------------------------------------------------------------- 1 | $ErrorActionPreference = 'Stop' 2 | 3 | if ($IsLinux -or $IsMacOS) { 4 | df -h 5 | } else { 6 | Get-Volume 7 | } 8 | -------------------------------------------------------------------------------- /scripts/install-emsdk.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -e 3 | 4 | git clone --branch $@ https://github.com/emscripten-core/emsdk ~/emsdk 5 | ~/emsdk/emsdk install $@ 6 | ~/emsdk/emsdk activate $@ 7 | -------------------------------------------------------------------------------- /scripts/mono.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/scripts/mono.pub -------------------------------------------------------------------------------- /scripts/mono.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/scripts/mono.snk -------------------------------------------------------------------------------- /scripts/nuget/NuGet.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | netstandard2.0 4 | 5 | 6 | -------------------------------------------------------------------------------- /scripts/nuget/README.md: -------------------------------------------------------------------------------- 1 | Designed for internal use. 2 | -------------------------------------------------------------------------------- /scripts/provisionator.csx: -------------------------------------------------------------------------------- 1 | XamarinChannel("Stable"); 2 | -------------------------------------------------------------------------------- /source/Directory.Build.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /source/Directory.Build.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /source/SkiaSharp.Views.Uno/SkiaSharp.Views.Uno.WinUI.Wasm/LinkerDefinition.Wasm.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /source/SkiaSharp.Views/SkiaSharp.Views.Blazor/SKCanvasView.razor: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /source/SkiaSharp.Views/SkiaSharp.Views.Blazor/SKGLView.razor: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /source/SkiaSharp.Views/SkiaSharp.Views.Blazor/_Imports.razor: -------------------------------------------------------------------------------- 1 | @using Microsoft.AspNetCore.Components.Web 2 | -------------------------------------------------------------------------------- /source/SkiaSharp.Views/SkiaSharp.Views/Platform/Tizen/RenderingMode.cs: -------------------------------------------------------------------------------- 1 | namespace SkiaSharp.Views.Tizen 2 | { 3 | public enum RenderingMode 4 | { 5 | Continuously, 6 | WhenDirty, 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /source/SkiaSharp.Views/SkiaSharp.Views/nuget/buildTransitive/net4/SkiaSharp.Views.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /tests/Content/fonts/CourierNew.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/fonts/CourierNew.ttf -------------------------------------------------------------------------------- /tests/Content/fonts/Distortable.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/fonts/Distortable.ttf -------------------------------------------------------------------------------- /tests/Content/fonts/Em.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/fonts/Em.ttf -------------------------------------------------------------------------------- /tests/Content/fonts/Funkster.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/fonts/Funkster.ttf -------------------------------------------------------------------------------- /tests/Content/fonts/HangingS.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/fonts/HangingS.ttf -------------------------------------------------------------------------------- /tests/Content/fonts/ReallyBigA.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/fonts/ReallyBigA.ttf -------------------------------------------------------------------------------- /tests/Content/fonts/Roboto.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/fonts/Roboto.woff2 -------------------------------------------------------------------------------- /tests/Content/fonts/Roboto2-Regular_NoEmbed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/fonts/Roboto2-Regular_NoEmbed.ttf -------------------------------------------------------------------------------- /tests/Content/fonts/RobotoMono.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/fonts/RobotoMono.woff2 -------------------------------------------------------------------------------- /tests/Content/fonts/SpiderSymbol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/fonts/SpiderSymbol.ttf -------------------------------------------------------------------------------- /tests/Content/fonts/content-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/fonts/content-font.ttf -------------------------------------------------------------------------------- /tests/Content/fonts/segoeui.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/fonts/segoeui.ttf -------------------------------------------------------------------------------- /tests/Content/fonts/test.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/fonts/test.ttc -------------------------------------------------------------------------------- /tests/Content/fonts/上田雅美.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/fonts/上田雅美.ttf -------------------------------------------------------------------------------- /tests/Content/images/AdobeRGB1998.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/images/AdobeRGB1998.icc -------------------------------------------------------------------------------- /tests/Content/images/CMYK.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/images/CMYK.jpg -------------------------------------------------------------------------------- /tests/Content/images/P8211052.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/images/P8211052.JPG -------------------------------------------------------------------------------- /tests/Content/images/PA010741.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/images/PA010741.JPG -------------------------------------------------------------------------------- /tests/Content/images/USWebCoatedSWOP.icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/images/USWebCoatedSWOP.icc -------------------------------------------------------------------------------- /tests/Content/images/animated-heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/images/animated-heart.gif -------------------------------------------------------------------------------- /tests/Content/images/baboon-reencoded.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/images/baboon-reencoded.jpg -------------------------------------------------------------------------------- /tests/Content/images/baboon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/images/baboon.jpg -------------------------------------------------------------------------------- /tests/Content/images/baboon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/images/baboon.png -------------------------------------------------------------------------------- /tests/Content/images/blue-shirt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/images/blue-shirt.jpg -------------------------------------------------------------------------------- /tests/Content/images/color-wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/images/color-wheel.png -------------------------------------------------------------------------------- /tests/Content/images/index8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/images/index8.png -------------------------------------------------------------------------------- /tests/Content/images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/images/map.png -------------------------------------------------------------------------------- /tests/Content/images/osm-liberty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/images/osm-liberty.png -------------------------------------------------------------------------------- /tests/Content/images/testimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/images/testimage.png -------------------------------------------------------------------------------- /tests/Content/images/tomato.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/images/tomato.bmp -------------------------------------------------------------------------------- /tests/Content/images/vimeo_icon_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/images/vimeo_icon_dark.png -------------------------------------------------------------------------------- /tests/Content/images/上田雅美.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/Content/images/上田雅美.jpg -------------------------------------------------------------------------------- /tests/Directory.Build.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tests/Directory.Build.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /tests/SkiaSharp.Tests.Console/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "SkiaSharp.Tests": { 4 | "commandName": "Project", 5 | "nativeDebugging": true 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /tests/SkiaSharp.Tests.Devices/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "Windows Machine": { 4 | "commandName": "MsixPackage", 5 | "nativeDebugging": true 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /tests/SkiaSharp.Tests.Devices/Resources/AppIcon/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/SkiaSharp.Tests.Devices/Resources/AppIcon/appicon.png -------------------------------------------------------------------------------- /tests/SkiaSharp.Tests.Devices/Resources/Splash/skiasharplogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mono/SkiaSharp/2b3f5bf292e1c95dd5a8647ff3a49ebb59d4d770/tests/SkiaSharp.Tests.Devices/Resources/Splash/skiasharplogo.png -------------------------------------------------------------------------------- /tests/SkiaSharp.Tests.Wasm/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.Versioning; 2 | 3 | [assembly:SupportedOSPlatform("browser")] 4 | -------------------------------------------------------------------------------- /tests/Tests/DefaultTestConfig.cs: -------------------------------------------------------------------------------- 1 | using System.IO; 2 | 3 | namespace SkiaSharp.Tests 4 | { 5 | public partial class DefaultTestConfig : TestConfig 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /tests/Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using SkiaSharp.Tests; 2 | using Xunit; 3 | 4 | [assembly: TestFramework("SkiaSharp.Tests." + nameof(CustomTestFramework), "SkiaSharp.Tests")] 5 | -------------------------------------------------------------------------------- /utils/NativeLibraryMiniTest/docker/.gitignore: -------------------------------------------------------------------------------- 1 | source/ 2 | -------------------------------------------------------------------------------- /utils/NativeLibraryMiniTest/wasm/build.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" 4 | 5 | msbuild /r /bl $DIR 6 | (cd $DIR/bin/publish && python3 server.py) 7 | --------------------------------------------------------------------------------