gitextract_afg3oks5/ ├── .github/ │ └── workflows/ │ └── build-nuget.yml ├── .gitignore ├── ISSUE_VALIDATION_SUMMARY.md ├── LICENSE ├── NUGET_PACKAGE_BUILD.md ├── Nuget/ │ ├── WriteableBitmapEx.nuspec │ ├── pack.cmd │ └── push.cmd ├── README.md ├── Solution/ │ ├── WriteableBitmapExBlitSample.sln │ ├── WriteableBitmapExCurveSample.sln │ ├── WriteableBitmapExFillSample.sln │ ├── WriteableBitmapExLibrary.sln │ ├── WriteableBitmapExShapeSample.sln │ ├── WriteableBitmapExWinPhoneLibrary.sln │ ├── WriteableBitmapExWinPhonePerformanceSample.sln │ └── WriteableBitmapEx_All.sln ├── Source/ │ ├── Common/ │ │ └── GlobalAssemblyInfo.cs │ ├── WriteableBitmapEx/ │ │ ├── BitmapContext.cs │ │ ├── BitmapFactory.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── WBX_key.snk │ │ ├── WriteableBitmapAntialiasingExtensions.cs │ │ ├── WriteableBitmapBaseExtensions.cs │ │ ├── WriteableBitmapBlitExtensions.cs │ │ ├── WriteableBitmapContextExtensions.cs │ │ ├── WriteableBitmapConvertExtensions.cs │ │ ├── WriteableBitmapEx.csproj │ │ ├── WriteableBitmapExWinPhone.csproj │ │ ├── WriteableBitmapExWinPhone8.csproj │ │ ├── WriteableBitmapFillExtensions.cs │ │ ├── WriteableBitmapFilterExtensions.cs │ │ ├── WriteableBitmapLineExtensions.cs │ │ ├── WriteableBitmapShapeExtensions.cs │ │ ├── WriteableBitmapSplineExtensions.cs │ │ ├── WriteableBitmapTextExtensions.cs │ │ └── WriteableBitmapTransformationExtensions.cs │ ├── WriteableBitmapEx.Uwp/ │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── WriteableBitmapEx.Uwp.rd.xml │ │ ├── WBX_key.snk │ │ └── WriteableBitmapEx.Uwp.csproj │ ├── WriteableBitmapEx.WinRT/ │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── WBX_key.snk │ │ └── WriteableBitmapEx.WinRT.csproj │ ├── WriteableBitmapEx.Wpf/ │ │ ├── NativeMethods.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── WBX_key.snk │ │ └── WriteableBitmapEx.Wpf.csproj │ ├── WriteableBitmapExBlitAlphaRepro.WinPhone8/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties/ │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── Resources/ │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ └── WriteableBitmapExBlitAlphaRepro.WinPhone8.csproj │ ├── WriteableBitmapExBlitAlphaRepro.WinRT/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Common/ │ │ │ └── StandardStyles.xaml │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── WriteableBitmapExBlitAlphaRepro.WinRT.csproj │ ├── WriteableBitmapExBlitAlphaRepro.Wpf/ │ │ ├── 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 │ │ └── WriteableBitmapExBlitAlphaRepro.Wpf.csproj │ ├── WriteableBitmapExBlitSample/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── HslColor.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Particle.cs │ │ ├── ParticleEmitter.cs │ │ ├── Properties/ │ │ │ ├── AppManifest.xml │ │ │ └── AssemblyInfo.cs │ │ └── WriteableBitmapExBlitSample.csproj │ ├── WriteableBitmapExBlitSample.Uwp/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ └── WriteableBitmapExBlitSample.Uwp.csproj │ ├── WriteableBitmapExBlitSample.WinRT/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Common/ │ │ │ └── StandardStyles.xaml │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── WriteableBitmapExBlitSample.WinRT.csproj │ ├── WriteableBitmapExBlitSample.Wpf/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── WriteableBitmapExBlitSample.Wpf.csproj │ │ └── app.config │ ├── WriteableBitmapExCurveSample/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── ControlPoint.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Plant/ │ │ │ ├── Branch.cs │ │ │ ├── BranchPoint.cs │ │ │ ├── Plant.cs │ │ │ └── Vector.cs │ │ ├── Properties/ │ │ │ ├── AppManifest.xml │ │ │ └── AssemblyInfo.cs │ │ └── WriteableBitmapExCurveSample.csproj │ ├── WriteableBitmapExCurveSample.Web/ │ │ ├── Default.aspx │ │ ├── Default.aspx.cs │ │ ├── Default.aspx.designer.cs │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── Silverlight.js │ │ ├── Web.config │ │ ├── WriteableBitmapExCurveSample.Web.csproj │ │ ├── WriteableBitmapExCurveSampleTestPage.aspx │ │ └── WriteableBitmapExCurveSampleTestPage.html │ ├── WriteableBitmapExCurveSample.WinRT/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Common/ │ │ │ └── StandardStyles.xaml │ │ ├── Package.appxmanifest │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ └── WriteableBitmapExCurveSample.WinRT.csproj │ ├── WriteableBitmapExCurveSample.Wpf/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── WriteableBitmapExCurveSample.Wpf.csproj │ │ └── app.config │ ├── WriteableBitmapExEllipseAlphaRepro.Wpf/ │ │ ├── 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 │ │ └── WriteableBitmapExEllipseAlphaRepro.Wpf.csproj │ ├── WriteableBitmapExFillSample/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties/ │ │ │ ├── AppManifest.xml │ │ │ └── AssemblyInfo.cs │ │ └── WriteableBitmapExFillSample.csproj │ ├── WriteableBitmapExFillSample.Web/ │ │ ├── Properties/ │ │ │ └── AssemblyInfo.cs │ │ ├── Silverlight.js │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── WriteableBitmapExFillSample.Web.csproj │ │ └── WriteableBitmapExFillSampleTestPage.html │ ├── WriteableBitmapExFillSample.Wpf/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── WriteableBitmapExFillSample.Wpf.csproj │ ├── WriteableBitmapExShapeSample/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties/ │ │ │ ├── AppManifest.xml │ │ │ └── AssemblyInfo.cs │ │ └── WriteableBitmapExShapeSample.csproj │ ├── WriteableBitmapExShapeSample.Wpf/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Properties/ │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── WriteableBitmapExShapeSample.Wpf.csproj │ │ └── app.config │ ├── WriteableBitmapExTextExample.Wpf/ │ │ ├── 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 │ │ └── WriteableBitmapEx.TextExample.csproj │ ├── WriteableBitmapExWinPhone8CurveSample/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── LocalizedStrings.cs │ │ ├── Properties/ │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── Resources/ │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ └── WriteableBitmapExWinPhone8CurveSample.csproj │ ├── WriteableBitmapExWinPhoneCurveSample/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties/ │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── WriteableBitmapExWin8PhoneCurveSample.csproj │ │ └── WriteableBitmapExWinPhoneCurveSample.csproj │ ├── WriteableBitmapExWinPhonePerformanceSample/ │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties/ │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ └── WriteableBitmapExWinPhonePerformanceSample.csproj │ └── WriteableBitmapExWinPhoneXnaDependant/ │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── WriteableBitmapExWinPhone8XnaDependant.csproj │ ├── WriteableBitmapExWinPhoneXnaDependant.csproj │ └── WriteableBitmapWindowsPhoneXnaExtensions.cs └── VALIDATION_REPORT.md