From d55128a55f0f148e2ed460a977265b4f5ba76a6f Mon Sep 17 00:00:00 2001 From: Matthew Leibowitz Date: Sat, 23 Jun 2018 10:38:16 +0200 Subject: [PATCH 1/9] Update the legal files --- LICENSE-CODE | 17 ----------------- ThirdPartyNotices | 15 --------------- LICENSE => docs/LICENSE.txt | 0 3 files changed, 32 deletions(-) delete mode 100644 LICENSE-CODE delete mode 100644 ThirdPartyNotices rename LICENSE => docs/LICENSE.txt (100%) diff --git a/LICENSE-CODE b/LICENSE-CODE deleted file mode 100644 index b17b032a43..0000000000 --- a/LICENSE-CODE +++ /dev/null @@ -1,17 +0,0 @@ -The MIT License (MIT) -Copyright (c) Microsoft Corporation - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and -associated documentation files (the "Software"), to deal in the Software without restriction, -including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial -portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT -NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/ThirdPartyNotices b/ThirdPartyNotices deleted file mode 100644 index a0bd09d68f..0000000000 --- a/ThirdPartyNotices +++ /dev/null @@ -1,15 +0,0 @@ -##Legal Notices -Microsoft and any contributors grant you a license to the Microsoft documentation and other content -in this repository under the [Creative Commons Attribution 4.0 International Public License](https://creativecommons.org/licenses/by/4.0/legalcode), -see the [LICENSE](LICENSE) file, and grant you a license to any code in the repository under the [MIT License](https://opensource.org/licenses/MIT), see the -[LICENSE-CODE](LICENSE-CODE) file. - -Microsoft, Windows, Microsoft Azure and/or other Microsoft products and services referenced in the documentation -may be either trademarks or registered trademarks of Microsoft in the United States and/or other countries. -The licenses for this project do not grant you rights to use any Microsoft names, logos, or trademarks. -Microsoft's general trademark guidelines can be found at http://go.microsoft.com/fwlink/?LinkID=254653. - -Privacy information can be found at https://privacy.microsoft.com/en-us/ - -Microsoft and any contributors reserve all others rights, whether under their respective copyrights, patents, -or trademarks, whether by implication, estoppel or otherwise. \ No newline at end of file diff --git a/LICENSE b/docs/LICENSE.txt similarity index 100% rename from LICENSE rename to docs/LICENSE.txt From 8332c99ec1dd3c9fef2f49f2cf1b1c94a69b47bf Mon Sep 17 00:00:00 2001 From: Matthew Leibowitz Date: Thu, 27 Sep 2018 15:13:25 +0200 Subject: [PATCH 2/9] Correctly marshal the inner struct --- binding/Binding/Definitions.cs | 18 +----------- binding/Binding/SKCodec.cs | 50 ++++++++++++++++++++++++++++++---- 2 files changed, 45 insertions(+), 23 deletions(-) diff --git a/binding/Binding/Definitions.cs b/binding/Binding/Definitions.cs index 91d3e394a3..b4ed597d41 100644 --- a/binding/Binding/Definitions.cs +++ b/binding/Binding/Definitions.cs @@ -330,29 +330,13 @@ public enum SKTransferFunctionBehavior { } - [StructLayout(LayoutKind.Sequential)] + [StructLayout (LayoutKind.Sequential)] internal unsafe struct SKCodecOptionsInternal { public SKZeroInitialized fZeroInitialized; public SKRectI* fSubset; public int fFrameIndex; public int fPriorFrame; public SKTransferFunctionBehavior fPremulBehavior; - - public static unsafe SKCodecOptionsInternal FromManaged (ref SKCodecOptions managed) - { - var nativeOptions = new SKCodecOptionsInternal { - fZeroInitialized = managed.ZeroInitialized, - fSubset = null, - fFrameIndex = managed.FrameIndex, - fPriorFrame = managed.PriorFrame, - fPremulBehavior = managed.PremulBehavior, - }; - if (managed.HasSubset) { - var subset = managed.Subset.Value; - nativeOptions.fSubset = ⊂ - } - return nativeOptions; - } } public struct SKCodecOptions { diff --git a/binding/Binding/SKCodec.cs b/binding/Binding/SKCodec.cs index 54aaede69b..088fb0f2cc 100644 --- a/binding/Binding/SKCodec.cs +++ b/binding/Binding/SKCodec.cs @@ -113,10 +113,22 @@ public SKCodecResult GetPixels (SKImageInfo info, IntPtr pixels, int rowBytes, S if (pixels == IntPtr.Zero) throw new ArgumentNullException (nameof (pixels)); - var nOptions = SKCodecOptionsInternal.FromManaged (ref options); var nInfo = SKImageInfoNative.FromManaged (ref info); - return SkiaApi.sk_codec_get_pixels (Handle, ref nInfo, pixels, (IntPtr)rowBytes, ref nOptions); + unsafe { + var nOptions = new SKCodecOptionsInternal { + fZeroInitialized = options.ZeroInitialized, + fSubset = null, + fFrameIndex = options.FrameIndex, + fPriorFrame = options.PriorFrame, + fPremulBehavior = options.PremulBehavior, + }; + if (options.HasSubset) { + var subset = options.Subset.Value; + nOptions.fSubset = ⊂ + } + return SkiaApi.sk_codec_get_pixels (Handle, ref nInfo, pixels, (IntPtr)rowBytes, ref nOptions); + } } [Obsolete ("The Index8 color type and color table is no longer supported. Use GetPixels(SKImageInfo, IntPtr, int, SKCodecOptions) instead.")] @@ -176,10 +188,23 @@ public SKCodecResult StartIncrementalDecode (SKImageInfo info, IntPtr pixels, in if (pixels == IntPtr.Zero) throw new ArgumentNullException (nameof (pixels)); - var nOptions = SKCodecOptionsInternal.FromManaged (ref options); var nInfo = SKImageInfoNative.FromManaged (ref info); - return SkiaApi.sk_codec_start_incremental_decode (Handle, ref nInfo, pixels, (IntPtr)rowBytes, ref nOptions); + unsafe { + var nOptions = new SKCodecOptionsInternal { + fZeroInitialized = options.ZeroInitialized, + fSubset = null, + fFrameIndex = options.FrameIndex, + fPriorFrame = options.PriorFrame, + fPremulBehavior = options.PremulBehavior, + }; + if (options.HasSubset) { + var subset = options.Subset.Value; + nOptions.fSubset = ⊂ + } + + return SkiaApi.sk_codec_start_incremental_decode (Handle, ref nInfo, pixels, (IntPtr)rowBytes, ref nOptions); + } } public SKCodecResult StartIncrementalDecode (SKImageInfo info, IntPtr pixels, int rowBytes) @@ -212,10 +237,23 @@ public SKCodecResult StartScanlineDecode (SKImageInfo info, SKCodecOptions optio public SKCodecResult StartScanlineDecode (SKImageInfo info, SKCodecOptions options) { - var nOptions = SKCodecOptionsInternal.FromManaged (ref options); var nInfo = SKImageInfoNative.FromManaged (ref info); - return SkiaApi.sk_codec_start_scanline_decode (Handle, ref nInfo, ref nOptions); + unsafe { + var nOptions = new SKCodecOptionsInternal { + fZeroInitialized = options.ZeroInitialized, + fSubset = null, + fFrameIndex = options.FrameIndex, + fPriorFrame = options.PriorFrame, + fPremulBehavior = options.PremulBehavior, + }; + if (options.HasSubset) { + var subset = options.Subset.Value; + nOptions.fSubset = ⊂ + } + + return SkiaApi.sk_codec_start_scanline_decode (Handle, ref nInfo, ref nOptions); + } } public SKCodecResult StartScanlineDecode (SKImageInfo info) From 7c0bfd1e7817bb2b3189a761c5a84a8ec03cbf54 Mon Sep 17 00:00:00 2001 From: Matthew Leibowitz Date: Thu, 27 Sep 2018 15:15:15 +0200 Subject: [PATCH 3/9] Updated the changelogs --- .../HarfBuzzSharp/1.4.6.2/HarfBuzzSharp.md | 5 + .../1.68.0/SkiaSharp.Views.Forms.md | 35 +++++ .../1.68.0/SkiaSharp.Views.Android.md | 141 ++++++++++++++++++ .../1.68.0/SkiaSharp.Views.Desktop.md | 35 +++++ .../1.68.0/SkiaSharp.Views.Mac.md | 113 ++++++++++++++ .../1.68.0/SkiaSharp.Views.Tizen.md | 47 ++++++ .../1.68.0/SkiaSharp.Views.UWP.breaking.md | 34 +++++ .../1.68.0/SkiaSharp.Views.UWP.md | 91 +++++++++++ .../1.68.0/SkiaSharp.Views.iOS.md | 113 ++++++++++++++ .../1.68.0/SkiaSharp.Views.tvOS.md | 113 ++++++++++++++ changelogs/SkiaSharp/1.68.0/SkiaSharp.md | 22 +++ 11 files changed, 749 insertions(+) create mode 100644 changelogs/HarfBuzzSharp/1.4.6.2/HarfBuzzSharp.md create mode 100644 changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.UWP.breaking.md diff --git a/changelogs/HarfBuzzSharp/1.4.6.2/HarfBuzzSharp.md b/changelogs/HarfBuzzSharp/1.4.6.2/HarfBuzzSharp.md new file mode 100644 index 0000000000..c043585d33 --- /dev/null +++ b/changelogs/HarfBuzzSharp/1.4.6.2/HarfBuzzSharp.md @@ -0,0 +1,5 @@ +# API diff: HarfBuzzSharp.dll + +## HarfBuzzSharp.dll + +> No changes. diff --git a/changelogs/SkiaSharp.Views.Forms/1.68.0/SkiaSharp.Views.Forms.md b/changelogs/SkiaSharp.Views.Forms/1.68.0/SkiaSharp.Views.Forms.md index 0fc5f2e637..ecae915cbb 100644 --- a/changelogs/SkiaSharp.Views.Forms/1.68.0/SkiaSharp.Views.Forms.md +++ b/changelogs/SkiaSharp.Views.Forms/1.68.0/SkiaSharp.Views.Forms.md @@ -4,3 +4,38 @@ > Assembly Version Changed: 1.68.0.0 vs 1.60.0.0 +### Namespace SkiaSharp.Views.Forms + +#### Type Changed: SkiaSharp.Views.Forms.SKPaintGLSurfaceEventArgs + +Obsoleted constructors: + +```diff + [Obsolete ("Use SKPaintGLSurfaceEventArgs(SKSurface, GRBackendRenderTarget, SKColorType, GRSurfaceOrigin) instead.")] + public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTargetDesc renderTarget); +``` + +Added constructors: + +```csharp +public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTarget renderTarget); +public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTarget renderTarget, SkiaSharp.GRSurfaceOrigin origin, SkiaSharp.SKColorType colorType); +``` + +Obsoleted properties: + +```diff + [Obsolete ("Use BackendRenderTarget instead.")] + public SkiaSharp.GRBackendRenderTargetDesc RenderTarget { get; } +``` + +Added properties: + +```csharp +public SkiaSharp.GRBackendRenderTarget BackendRenderTarget { get; } +public SkiaSharp.SKColorType ColorType { get; } +public SkiaSharp.GRSurfaceOrigin Origin { get; } +``` + + + diff --git a/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.Android.md b/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.Android.md index 048bf99ff9..02561412f2 100644 --- a/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.Android.md +++ b/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.Android.md @@ -4,3 +4,144 @@ > Assembly Version Changed: 1.68.0.0 vs 1.60.0.0 +### Namespace SkiaSharp.Views.Android + +#### Type Changed: SkiaSharp.Views.Android.SKCanvasView + +Obsoleted methods: + +```diff + [Obsolete ("Use OnPaintSurface(SKPaintSurfaceEventArgs) instead.")] + protected virtual void OnDraw (SkiaSharp.SKSurface surface, SkiaSharp.SKImageInfo info); +``` + +Added method: + +```csharp +protected virtual void OnPaintSurface (SKPaintSurfaceEventArgs e); +``` + + +#### Type Changed: SkiaSharp.Views.Android.SKGLSurfaceView + +Added event: + +```csharp +public event System.EventHandler PaintSurface; +``` + +Obsoleted methods: + +```diff + [Obsolete ("Use PaintSurface instead.")] + public virtual void SetRenderer (SKGLSurfaceView.ISKRenderer renderer); +``` + +Added method: + +```csharp +protected virtual void OnPaintSurface (SKPaintGLSurfaceEventArgs e); +``` + + +#### Type Changed: SkiaSharp.Views.Android.SKGLSurfaceViewRenderer + +Obsoleted methods: + +```diff + [Obsolete ("Use OnPaintSurface(SKPaintGLSurfaceEventArgs) instead.")] + protected virtual void OnDrawFrame (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTargetDesc renderTarget); +``` + +Modified methods: + +```diff +-protected abstract void OnDrawFrame (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTargetDesc renderTarget) ++protected virtual void OnDrawFrame (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTargetDesc renderTarget) +``` + +Added method: + +```csharp +protected virtual void OnPaintSurface (SKPaintGLSurfaceEventArgs e); +``` + + +#### Type Changed: SkiaSharp.Views.Android.SKGLTextureView + +Added event: + +```csharp +public event System.EventHandler PaintSurface; +``` + +Obsoleted methods: + +```diff + [Obsolete ("Use PaintSurface instead.")] + public virtual void SetRenderer (SKGLTextureView.ISKRenderer renderer); +``` + +Added method: + +```csharp +protected virtual void OnPaintSurface (SKPaintGLSurfaceEventArgs e); +``` + + +#### Type Changed: SkiaSharp.Views.Android.SKGLTextureViewRenderer + +Obsoleted methods: + +```diff + [Obsolete ("Use OnPaintSurface(SKPaintGLSurfaceEventArgs) instead.")] + protected virtual void OnDrawFrame (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTargetDesc renderTarget); +``` + +Modified methods: + +```diff +-protected abstract void OnDrawFrame (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTargetDesc renderTarget) ++protected virtual void OnDrawFrame (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTargetDesc renderTarget) +``` + +Added method: + +```csharp +protected virtual void OnPaintSurface (SKPaintGLSurfaceEventArgs e); +``` + + +#### Type Changed: SkiaSharp.Views.Android.SKPaintGLSurfaceEventArgs + +Obsoleted constructors: + +```diff + [Obsolete ("Use SKPaintGLSurfaceEventArgs(SKSurface, GRBackendRenderTarget, SKColorType, GRSurfaceOrigin) instead.")] + public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTargetDesc renderTarget); +``` + +Added constructors: + +```csharp +public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTarget renderTarget); +public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTarget renderTarget, SkiaSharp.GRSurfaceOrigin origin, SkiaSharp.SKColorType colorType); +``` + +Obsoleted properties: + +```diff + [Obsolete ("Use BackendRenderTarget instead.")] + public SkiaSharp.GRBackendRenderTargetDesc RenderTarget { get; } +``` + +Added properties: + +```csharp +public SkiaSharp.GRBackendRenderTarget BackendRenderTarget { get; } +public SkiaSharp.SKColorType ColorType { get; } +public SkiaSharp.GRSurfaceOrigin Origin { get; } +``` + + + diff --git a/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.Desktop.md b/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.Desktop.md index 1909c73c4c..8604e318cc 100644 --- a/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.Desktop.md +++ b/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.Desktop.md @@ -4,3 +4,38 @@ > Assembly Version Changed: 1.68.0.0 vs 1.60.0.0 +### Namespace SkiaSharp.Views.Desktop + +#### Type Changed: SkiaSharp.Views.Desktop.SKPaintGLSurfaceEventArgs + +Obsoleted constructors: + +```diff + [Obsolete ("Use SKPaintGLSurfaceEventArgs(SKSurface, GRBackendRenderTarget, SKColorType, GRSurfaceOrigin) instead.")] + public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTargetDesc renderTarget); +``` + +Added constructors: + +```csharp +public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTarget renderTarget); +public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTarget renderTarget, SkiaSharp.GRSurfaceOrigin origin, SkiaSharp.SKColorType colorType); +``` + +Obsoleted properties: + +```diff + [Obsolete ("Use BackendRenderTarget instead.")] + public SkiaSharp.GRBackendRenderTargetDesc RenderTarget { get; } +``` + +Added properties: + +```csharp +public SkiaSharp.GRBackendRenderTarget BackendRenderTarget { get; } +public SkiaSharp.SKColorType ColorType { get; } +public SkiaSharp.GRSurfaceOrigin Origin { get; } +``` + + + diff --git a/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.Mac.md b/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.Mac.md index 812368f8f1..153b1c9ce5 100644 --- a/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.Mac.md +++ b/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.Mac.md @@ -4,3 +4,116 @@ > Assembly Version Changed: 1.68.0.0 vs 1.60.0.0 +### Namespace SkiaSharp.Views.Mac + +#### Type Changed: SkiaSharp.Views.Mac.SKCanvasLayer + +Obsoleted properties: + +```diff + [Obsolete ("Use PaintSurface instead.")] + public ISKCanvasLayerDelegate SKDelegate { get; set; } +``` + +Obsoleted methods: + +```diff + [Obsolete ("Use OnPaintSurface(SKPaintSurfaceEventArgs) instead.")] + public virtual void DrawInSurface (SkiaSharp.SKSurface surface, SkiaSharp.SKImageInfo info); +``` + +Added method: + +```csharp +protected virtual void OnPaintSurface (SKPaintSurfaceEventArgs e); +``` + + +#### Type Changed: SkiaSharp.Views.Mac.SKCanvasView + +Obsoleted methods: + +```diff + [Obsolete ("Use OnPaintSurface(SKPaintSurfaceEventArgs) instead.")] + public virtual void DrawInSurface (SkiaSharp.SKSurface surface, SkiaSharp.SKImageInfo info); +``` + +Added method: + +```csharp +protected virtual void OnPaintSurface (SKPaintSurfaceEventArgs e); +``` + + +#### Type Changed: SkiaSharp.Views.Mac.SKGLLayer + +Obsoleted properties: + +```diff + [Obsolete ("Use PaintSurface instead.")] + public ISKGLLayerDelegate SKDelegate { get; set; } +``` + +Obsoleted methods: + +```diff + [Obsolete ("Use OnPaintSurface(SKPaintGLSurfaceEventArgs) instead.")] + public virtual void DrawInSurface (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTargetDesc renderTarget); +``` + +Added method: + +```csharp +protected virtual void OnPaintSurface (SKPaintGLSurfaceEventArgs e); +``` + + +#### Type Changed: SkiaSharp.Views.Mac.SKGLView + +Obsoleted methods: + +```diff + [Obsolete ("Use OnPaintSurface(SKPaintGLSurfaceEventArgs) instead.")] + public virtual void DrawInSurface (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTargetDesc renderTarget); +``` + +Added method: + +```csharp +protected virtual void OnPaintSurface (SKPaintGLSurfaceEventArgs e); +``` + + +#### Type Changed: SkiaSharp.Views.Mac.SKPaintGLSurfaceEventArgs + +Obsoleted constructors: + +```diff + [Obsolete ("Use SKPaintGLSurfaceEventArgs(SKSurface, GRBackendRenderTarget, SKColorType, GRSurfaceOrigin) instead.")] + public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTargetDesc renderTarget); +``` + +Added constructors: + +```csharp +public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTarget renderTarget); +public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTarget renderTarget, SkiaSharp.GRSurfaceOrigin origin, SkiaSharp.SKColorType colorType); +``` + +Obsoleted properties: + +```diff + [Obsolete ("Use BackendRenderTarget instead.")] + public SkiaSharp.GRBackendRenderTargetDesc RenderTarget { get; } +``` + +Added properties: + +```csharp +public SkiaSharp.GRBackendRenderTarget BackendRenderTarget { get; } +public SkiaSharp.SKColorType ColorType { get; } +public SkiaSharp.GRSurfaceOrigin Origin { get; } +``` + + + diff --git a/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.Tizen.md b/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.Tizen.md index 43a670b6b8..aa884c3e3e 100644 --- a/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.Tizen.md +++ b/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.Tizen.md @@ -4,3 +4,50 @@ > Assembly Version Changed: 1.68.0.0 vs 1.60.0.0 +### Namespace SkiaSharp.Views.Tizen + +#### Type Changed: SkiaSharp.Views.Tizen.SKPaintGLSurfaceEventArgs + +Obsoleted constructors: + +```diff + [Obsolete ("Use SKPaintGLSurfaceEventArgs(SKSurface, GRBackendRenderTarget, SKColorType, GRSurfaceOrigin) instead.")] + public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTargetDesc renderTarget); +``` + +Added constructors: + +```csharp +public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTarget renderTarget); +public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTarget renderTarget, SkiaSharp.GRSurfaceOrigin origin, SkiaSharp.SKColorType colorType); +``` + +Obsoleted properties: + +```diff + [Obsolete ("Use BackendRenderTarget instead.")] + public SkiaSharp.GRBackendRenderTargetDesc RenderTarget { get; } +``` + +Added properties: + +```csharp +public SkiaSharp.GRBackendRenderTarget BackendRenderTarget { get; } +public SkiaSharp.SKColorType ColorType { get; } +public SkiaSharp.GRSurfaceOrigin Origin { get; } +``` + + +#### Type Changed: SkiaSharp.Views.Tizen.TizenExtensions + +Added methods: + +```csharp +public static SkiaSharp.SKSize ToSKSize (this ElmSharp.Size size); +public static SkiaSharp.SKSizeI ToSKSizeI (this ElmSharp.Size size); +public static ElmSharp.Size ToSize (this SkiaSharp.SKSize size); +public static ElmSharp.Size ToSize (this SkiaSharp.SKSizeI size); +``` + + + diff --git a/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.UWP.breaking.md b/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.UWP.breaking.md new file mode 100644 index 0000000000..d8257f05be --- /dev/null +++ b/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.UWP.breaking.md @@ -0,0 +1,34 @@ +# API diff: SkiaSharp.Views.UWP.dll + +## SkiaSharp.Views.UWP.dll + +> Assembly Version Changed: 1.68.0.0 vs 1.60.0.0 + +### Namespace SkiaSharp.Views.UWP + +#### Type Changed: SkiaSharp.Views.UWP.AngleSwapChainPanel + +Removed properties: + +```csharp +public GlesBackingOption BackingOption { get; set; } +public GlesContext Context { get; set; } +public GlesDepthFormat DepthFormat { get; set; } +public GlesMultisampling Multisampling { get; set; } +public GlesStencilFormat StencilFormat { get; set; } +``` + +Modified properties: + +```diff + public double ContentsScale { get; ---set;--- } +``` + + +#### Removed Type SkiaSharp.Views.UWP.GlesBackingOption +#### Removed Type SkiaSharp.Views.UWP.GlesContext +#### Removed Type SkiaSharp.Views.UWP.GlesDepthFormat +#### Removed Type SkiaSharp.Views.UWP.GlesMultisampling +#### Removed Type SkiaSharp.Views.UWP.GlesRenderTarget +#### Removed Type SkiaSharp.Views.UWP.GlesStencilFormat + diff --git a/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.UWP.md b/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.UWP.md index c9690a6483..7acb2c2b92 100644 --- a/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.UWP.md +++ b/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.UWP.md @@ -4,3 +4,94 @@ > Assembly Version Changed: 1.68.0.0 vs 1.60.0.0 +### Namespace SkiaSharp.Views.UWP + +#### Type Changed: SkiaSharp.Views.UWP.AngleSwapChainPanel + +Removed properties: + +```csharp +public GlesBackingOption BackingOption { get; set; } +public GlesContext Context { get; set; } +public GlesDepthFormat DepthFormat { get; set; } +public GlesMultisampling Multisampling { get; set; } +public GlesStencilFormat StencilFormat { get; set; } +``` + +Modified properties: + +```diff + public double ContentsScale { get; ---set;--- } +``` + + +#### Type Changed: SkiaSharp.Views.UWP.SKPaintGLSurfaceEventArgs + +Obsoleted constructors: + +```diff + [Obsolete ("Use SKPaintGLSurfaceEventArgs(SKSurface, GRBackendRenderTarget, SKColorType, GRSurfaceOrigin) instead.")] + public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTargetDesc renderTarget); +``` + +Added constructors: + +```csharp +public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTarget renderTarget); +public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTarget renderTarget, SkiaSharp.GRSurfaceOrigin origin, SkiaSharp.SKColorType colorType); +``` + +Obsoleted properties: + +```diff + [Obsolete ("Use BackendRenderTarget instead.")] + public SkiaSharp.GRBackendRenderTargetDesc RenderTarget { get; } +``` + +Added properties: + +```csharp +public SkiaSharp.GRBackendRenderTarget BackendRenderTarget { get; } +public SkiaSharp.SKColorType ColorType { get; } +public SkiaSharp.GRSurfaceOrigin Origin { get; } +``` + + +#### Type Changed: SkiaSharp.Views.UWP.SKSwapChainPanel + +Removed method: + +```csharp +protected override Windows.Foundation.Size ArrangeOverride (Windows.Foundation.Size finalSize); +``` + + +#### Removed Type SkiaSharp.Views.UWP.GlesBackingOption +#### Removed Type SkiaSharp.Views.UWP.GlesContext +#### Removed Type SkiaSharp.Views.UWP.GlesDepthFormat +#### Removed Type SkiaSharp.Views.UWP.GlesMultisampling +#### Removed Type SkiaSharp.Views.UWP.GlesRenderTarget +#### Removed Type SkiaSharp.Views.UWP.GlesStencilFormat + +### New Namespace SkiaSharp.Views.GlesInterop + +#### New Type: SkiaSharp.Views.GlesInterop.GlesContext + +```csharp +public class GlesContext : System.IDisposable { + // constructors + public GlesContext (); + // properties + public bool HasSurface { get; } + // methods + public void CreateSurface (Windows.UI.Xaml.Controls.SwapChainPanel panel, Windows.Foundation.Size? renderSurfaceSize, float? resolutionScale); + public void DestroySurface (); + public virtual void Dispose (); + public void GetSurfaceDimensions (out int width, out int height); + public void MakeCurrent (); + public void Reset (); + public void SetViewportSize (int width, int height); + public bool SwapBuffers (); +} +``` + diff --git a/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.iOS.md b/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.iOS.md index 69e97a2773..796db18325 100644 --- a/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.iOS.md +++ b/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.iOS.md @@ -4,3 +4,116 @@ > Assembly Version Changed: 1.68.0.0 vs 1.60.0.0 +### Namespace SkiaSharp.Views.iOS + +#### Type Changed: SkiaSharp.Views.iOS.SKCanvasLayer + +Obsoleted properties: + +```diff + [Obsolete ("Use PaintSurface instead.")] + public ISKCanvasLayerDelegate SKDelegate { get; set; } +``` + +Obsoleted methods: + +```diff + [Obsolete ("Use OnPaintSurface(SKPaintSurfaceEventArgs) instead.")] + public virtual void DrawInSurface (SkiaSharp.SKSurface surface, SkiaSharp.SKImageInfo info); +``` + +Added method: + +```csharp +protected virtual void OnPaintSurface (SKPaintSurfaceEventArgs e); +``` + + +#### Type Changed: SkiaSharp.Views.iOS.SKCanvasView + +Obsoleted methods: + +```diff + [Obsolete ("Use OnPaintSurface(SKPaintSurfaceEventArgs) instead.")] + public virtual void DrawInSurface (SkiaSharp.SKSurface surface, SkiaSharp.SKImageInfo info); +``` + +Added method: + +```csharp +protected virtual void OnPaintSurface (SKPaintSurfaceEventArgs e); +``` + + +#### Type Changed: SkiaSharp.Views.iOS.SKGLLayer + +Obsoleted properties: + +```diff + [Obsolete ("Use PaintSurface instead.")] + public ISKGLLayerDelegate SKDelegate { get; set; } +``` + +Obsoleted methods: + +```diff + [Obsolete ("Use OnPaintSurface(SKPaintGLSurfaceEventArgs) instead.")] + public virtual void DrawInSurface (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTargetDesc renderTarget); +``` + +Added method: + +```csharp +protected virtual void OnPaintSurface (SKPaintGLSurfaceEventArgs e); +``` + + +#### Type Changed: SkiaSharp.Views.iOS.SKGLView + +Obsoleted methods: + +```diff + [Obsolete ("Use OnPaintSurface(SKPaintGLSurfaceEventArgs) instead.")] + public virtual void DrawInSurface (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTargetDesc renderTarget); +``` + +Added method: + +```csharp +protected virtual void OnPaintSurface (SKPaintGLSurfaceEventArgs e); +``` + + +#### Type Changed: SkiaSharp.Views.iOS.SKPaintGLSurfaceEventArgs + +Obsoleted constructors: + +```diff + [Obsolete ("Use SKPaintGLSurfaceEventArgs(SKSurface, GRBackendRenderTarget, SKColorType, GRSurfaceOrigin) instead.")] + public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTargetDesc renderTarget); +``` + +Added constructors: + +```csharp +public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTarget renderTarget); +public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTarget renderTarget, SkiaSharp.GRSurfaceOrigin origin, SkiaSharp.SKColorType colorType); +``` + +Obsoleted properties: + +```diff + [Obsolete ("Use BackendRenderTarget instead.")] + public SkiaSharp.GRBackendRenderTargetDesc RenderTarget { get; } +``` + +Added properties: + +```csharp +public SkiaSharp.GRBackendRenderTarget BackendRenderTarget { get; } +public SkiaSharp.SKColorType ColorType { get; } +public SkiaSharp.GRSurfaceOrigin Origin { get; } +``` + + + diff --git a/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.tvOS.md b/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.tvOS.md index 7066972eb9..5461568fbf 100644 --- a/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.tvOS.md +++ b/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.tvOS.md @@ -4,3 +4,116 @@ > Assembly Version Changed: 1.68.0.0 vs 1.60.0.0 +### Namespace SkiaSharp.Views.tvOS + +#### Type Changed: SkiaSharp.Views.tvOS.SKCanvasLayer + +Obsoleted properties: + +```diff + [Obsolete ("Use PaintSurface instead.")] + public ISKCanvasLayerDelegate SKDelegate { get; set; } +``` + +Obsoleted methods: + +```diff + [Obsolete ("Use OnPaintSurface(SKPaintSurfaceEventArgs) instead.")] + public virtual void DrawInSurface (SkiaSharp.SKSurface surface, SkiaSharp.SKImageInfo info); +``` + +Added method: + +```csharp +protected virtual void OnPaintSurface (SKPaintSurfaceEventArgs e); +``` + + +#### Type Changed: SkiaSharp.Views.tvOS.SKCanvasView + +Obsoleted methods: + +```diff + [Obsolete ("Use OnPaintSurface(SKPaintSurfaceEventArgs) instead.")] + public virtual void DrawInSurface (SkiaSharp.SKSurface surface, SkiaSharp.SKImageInfo info); +``` + +Added method: + +```csharp +protected virtual void OnPaintSurface (SKPaintSurfaceEventArgs e); +``` + + +#### Type Changed: SkiaSharp.Views.tvOS.SKGLLayer + +Obsoleted properties: + +```diff + [Obsolete ("Use PaintSurface instead.")] + public ISKGLLayerDelegate SKDelegate { get; set; } +``` + +Obsoleted methods: + +```diff + [Obsolete ("Use OnPaintSurface(SKPaintGLSurfaceEventArgs) instead.")] + public virtual void DrawInSurface (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTargetDesc renderTarget); +``` + +Added method: + +```csharp +protected virtual void OnPaintSurface (SKPaintGLSurfaceEventArgs e); +``` + + +#### Type Changed: SkiaSharp.Views.tvOS.SKGLView + +Obsoleted methods: + +```diff + [Obsolete ("Use OnPaintSurface(SKPaintGLSurfaceEventArgs) instead.")] + public virtual void DrawInSurface (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTargetDesc renderTarget); +``` + +Added method: + +```csharp +protected virtual void OnPaintSurface (SKPaintGLSurfaceEventArgs e); +``` + + +#### Type Changed: SkiaSharp.Views.tvOS.SKPaintGLSurfaceEventArgs + +Obsoleted constructors: + +```diff + [Obsolete ("Use SKPaintGLSurfaceEventArgs(SKSurface, GRBackendRenderTarget, SKColorType, GRSurfaceOrigin) instead.")] + public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTargetDesc renderTarget); +``` + +Added constructors: + +```csharp +public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTarget renderTarget); +public SKPaintGLSurfaceEventArgs (SkiaSharp.SKSurface surface, SkiaSharp.GRBackendRenderTarget renderTarget, SkiaSharp.GRSurfaceOrigin origin, SkiaSharp.SKColorType colorType); +``` + +Obsoleted properties: + +```diff + [Obsolete ("Use BackendRenderTarget instead.")] + public SkiaSharp.GRBackendRenderTargetDesc RenderTarget { get; } +``` + +Added properties: + +```csharp +public SkiaSharp.GRBackendRenderTarget BackendRenderTarget { get; } +public SkiaSharp.SKColorType ColorType { get; } +public SkiaSharp.GRSurfaceOrigin Origin { get; } +``` + + + diff --git a/changelogs/SkiaSharp/1.68.0/SkiaSharp.md b/changelogs/SkiaSharp/1.68.0/SkiaSharp.md index e4d25e4a4d..1b223f2b4c 100644 --- a/changelogs/SkiaSharp/1.68.0/SkiaSharp.md +++ b/changelogs/SkiaSharp/1.68.0/SkiaSharp.md @@ -155,6 +155,8 @@ Obsoleted properties: Obsoleted methods: ```diff + [Obsolete ("The Index8 color type and color table is no longer supported. Use GetPixel(int, int) instead.")] + public SKPMColor GetIndex8Color (int x, int y); [Obsolete ("The Index8 color type and color table is no longer supported. Use InstallPixels(SKImageInfo, IntPtr, int) instead.")] public bool InstallPixels (SKImageInfo info, IntPtr pixels, int rowBytes, SKColorTable ctable); [Obsolete ("The Index8 color type and color table is no longer supported. Use InstallPixels(SKImageInfo, IntPtr, int, SKBitmapReleaseDelegate, object) instead.")] @@ -656,6 +658,22 @@ public bool ScalePixels (SKPixmap destination, SKFilterQuality quality); ``` +#### Type Changed: SkiaSharp.SKStream + +Added methods: + +```csharp +public bool ReadBool (); +public bool ReadBool (out bool buffer); +public bool ReadByte (out byte buffer); +public bool ReadInt16 (out short buffer); +public bool ReadInt32 (out int buffer); +public bool ReadSByte (out sbyte buffer); +public bool ReadUInt16 (out ushort buffer); +public bool ReadUInt32 (out uint buffer); +``` + + #### Type Changed: SkiaSharp.SKSurface Obsoleted methods: @@ -777,7 +795,9 @@ public static SKColorType ToColorType (this GRPixelConfig config); [Obsolete] public static SKFilterQuality ToFilterQuality (this SKBitmapResizeMethod method); +public static GRPixelConfig ToPixelConfig (this SKColorType colorType); public static uint ToSizedFormat (this GRPixelConfig config); +public static uint ToSizedFormat (this SKColorType colorType); ``` @@ -801,7 +821,9 @@ public GRBackendRenderTarget (GRBackend backend, GRBackendRenderTargetDesc desc) public GRBackend Backend { get; } public int Height { get; } public bool IsValid { get; } + public SKRectI Rect { get; } public int SampleCount { get; } + public SKSizeI Size { get; } public int StencilBits { get; } public int Width { get; } // methods From 9bfa766acaa5109215c17128dca6a032b1c5dcf1 Mon Sep 17 00:00:00 2001 From: Matthew Leibowitz Date: Thu, 27 Sep 2018 19:14:06 +0200 Subject: [PATCH 4/9] Download ANGLE from the v3 source as v2 is having issues --- cake/BuildExternals.cake | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cake/BuildExternals.cake b/cake/BuildExternals.cake index 4fb259c8a0..a0d9e6a249 100644 --- a/cake/BuildExternals.cake +++ b/cake/BuildExternals.cake @@ -699,8 +699,9 @@ Task ("externals-angle-uwp") .WithCriteria (!FileExists (ANGLE_PATH.CombineWithFilePath ("uwp/ANGLE.WindowsStore.nuspec"))) .Does (() => { - var version = GetVersion ("ANGLE.WindowsStore", "release"); - var angleUrl = $"https://www.nuget.org/api/v2/package/ANGLE.WindowsStore/{version}"; + var id = "ANGLE.WindowsStore"; + var version = GetVersion (id, "release"); + var angleUrl = $"https://api.nuget.org/v3-flatcontainer/{id.ToLower ()}/{version}/{id.ToLower ()}.{version}.nupkg"; var angleRoot = ANGLE_PATH.Combine ("uwp"); var angleNupkg = angleRoot.CombineWithFilePath ($"angle_{version}.nupkg"); From 9562aa4a8d083fe30f3334f49b4e5e765f85fdd3 Mon Sep 17 00:00:00 2001 From: Matthew Leibowitz Date: Thu, 27 Sep 2018 22:19:03 +0200 Subject: [PATCH 5/9] Improved the docs script for new packages --- cake/UpdateDocs.cake | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/cake/UpdateDocs.cake b/cake/UpdateDocs.cake index 6cb3e0ab6f..30e9f3e13a 100644 --- a/cake/UpdateDocs.cake +++ b/cake/UpdateDocs.cake @@ -49,12 +49,14 @@ Task ("docs-api-diff") Information ($"Comparing the assemblies in '{id}'..."); var version = GetVersion (id); - var latestVersion = (await NuGetVersions.GetLatestAsync (id)).ToNormalizedString (); + var latestVersion = (await NuGetVersions.GetLatestAsync (id))?.ToNormalizedString (); Debug ($"Version '{latestVersion}' is the latest version of '{id}'..."); // pre-cache so we can have better logs - Debug ($"Caching version '{latestVersion}' of '{id}'..."); - await comparer.ExtractCachedPackageAsync (id, latestVersion); + if (!string.IsNullOrEmpty (latestVersion)) { + Debug ($"Caching version '{latestVersion}' of '{id}'..."); + await comparer.ExtractCachedPackageAsync (id, latestVersion); + } // generate the diff and copy to the changelogs Debug ($"Running a diff on '{latestVersion}' vs '{version}' of '{id}'..."); From 015625fe57e5e0a00b42358a19c756a30570035b Mon Sep 17 00:00:00 2001 From: Matthew Leibowitz Date: Fri, 28 Sep 2018 04:10:42 +0200 Subject: [PATCH 6/9] Generated the new docs --- .../1.55.0/SkiaSharp.Views.iOS.md | 4 +- .../1.55.0/SkiaSharp.Views.tvOS.md | 4 +- .../1.68.0/SkiaSharp.Views.UWP.md | 22 - .../FrameworksIndex/harfbuzzsharp-1.4.6.2.xml | 72 + docs/xml/FrameworksIndex/skiasharp-1.68.0.xml | 2414 +++++++++++++++++ .../skiasharp-harfbuzz-1.68.0.xml | 28 + .../skiasharp-views-android-1.68.0.xml | 182 ++ .../skiasharp-views-forms-1.68.0.xml | 143 + .../skiasharp-views-ios-1.68.0.xml | 135 + .../skiasharp-views-macos-1.68.0.xml | 126 + .../skiasharp-views-net-1.68.0.xml | 102 + .../skiasharp-views-tizen-1.68.0.xml | 86 + .../skiasharp-views-tvos-1.68.0.xml | 135 + .../skiasharp-views-uwp-1.68.0.xml | 62 + .../skiasharp-views-watchos-1.68.0.xml | 59 + .../xml/SkiaSharp.HarfBuzz/BlobExtensions.xml | 2 + .../SkiaSharp.HarfBuzz/CanvasExtensions.xml | 2 + .../xml/SkiaSharp.HarfBuzz/FontExtensions.xml | 3 + .../SkiaSharp.HarfBuzz/SKShaper+Result.xml | 6 + docs/xml/SkiaSharp.HarfBuzz/SKShaper.xml | 6 + .../AndroidExtensions.xml | 20 + .../SkiaSharp.Views.Android/Extensions.xml | 15 + .../GLTextureView+IEGLConfigChooser.xml | 2 + .../GLTextureView+IEGLContextFactory.xml | 3 + ...GLTextureView+IEGLWindowSurfaceFactory.xml | 3 + .../GLTextureView+IGLWrapper.xml | 2 + .../GLTextureView+IRenderer.xml | 5 + .../SkiaSharp.Views.Android/GLTextureView.xml | 27 + .../SkiaSharp.Views.Android/SKCanvasView.xml | 38 + .../SKGLSurfaceView+ISKRenderer.xml | 7 + .../SKGLSurfaceView.xml | 49 + .../SKGLSurfaceViewRenderer.xml | 37 +- .../SKGLTextureView+ISKRenderer.xml | 7 + .../SKGLTextureView.xml | 49 + .../SKGLTextureViewRenderer.xml | 38 +- .../SKLockedSurface.xml | 4 + .../SKPaintGLSurfaceEventArgs.xml | 112 + .../SKPaintSurfaceEventArgs.xml | 4 + .../SkiaSharp.Views.Android/SKSurfaceView.xml | 11 + .../SkiaSharp.Views.Desktop/Extensions.xml | 22 + .../xml/SkiaSharp.Views.Desktop/SKControl.xml | 21 +- .../SkiaSharp.Views.Desktop/SKGLControl.xml | 32 +- .../SKPaintGLSurfaceEventArgs.xml | 112 + .../SKPaintSurfaceEventArgs.xml | 4 + docs/xml/SkiaSharp.Views.Forms/Extensions.xml | 12 + .../GetPropertyValueEventArgs`1.xml | 3 + .../ISKCanvasViewController.xml | 5 + .../SKBitmapImageSource.xml | 8 + .../SkiaSharp.Views.Forms/SKCanvasView.xml | 19 +- docs/xml/SkiaSharp.Views.Forms/SKGLView.xml | 16 +- .../SKImageImageSource.xml | 8 + .../SkiaSharp.Views.Forms/SKMouseButton.xml | 5 + .../SKPaintGLSurfaceEventArgs.xml | 112 + .../SKPaintSurfaceEventArgs.xml | 4 + .../SKPictureImageSource.xml | 9 + .../SKPixmapImageSource.xml | 8 + .../SkiaSharp.Views.Forms/SKTouchAction.xml | 7 + .../SKTouchDeviceType.xml | 4 + .../SKTouchEventArgs.xml | 11 + docs/xml/SkiaSharp.Views.Gtk/SKWidget.xml | 14 +- .../SkiaSharp.Views.Mac/AppleExtensions.xml | 27 + docs/xml/SkiaSharp.Views.Mac/Extensions.xml | 13 + .../ISKCanvasLayerDelegate.xml | 7 + .../ISKGLLayerDelegate.xml | 7 + .../xml/SkiaSharp.Views.Mac/MacExtensions.xml | 10 + .../xml/SkiaSharp.Views.Mac/SKCanvasLayer.xml | 40 + docs/xml/SkiaSharp.Views.Mac/SKCanvasView.xml | 41 +- docs/xml/SkiaSharp.Views.Mac/SKGLLayer.xml | 40 + docs/xml/SkiaSharp.Views.Mac/SKGLView.xml | 41 +- .../SKPaintGLSurfaceEventArgs.xml | 112 + .../SKPaintSurfaceEventArgs.xml | 4 + .../CustomRenderingView.xml | 16 + docs/xml/SkiaSharp.Views.Tizen/Extensions.xml | 1 + .../SkiaSharp.Views.Tizen/RenderingMode.xml | 3 + .../SkiaSharp.Views.Tizen/SKCanvasView.xml | 8 + .../SkiaSharp.Views.Tizen/SKGLSurfaceView.xml | 12 + .../SKPaintGLSurfaceEventArgs.xml | 112 + .../SKPaintSurfaceEventArgs.xml | 4 + .../xml/SkiaSharp.Views.Tizen/ScalingInfo.xml | 6 + .../SkiaSharp.Views.Tizen/TizenExtensions.xml | 99 + .../AngleSwapChainPanel.xml | 9 +- docs/xml/SkiaSharp.Views.UWP/Extensions.xml | 1 + .../SKPaintGLSurfaceEventArgs.xml | 112 + .../SKPaintSurfaceEventArgs.xml | 4 + .../SkiaSharp.Views.UWP/SKSwapChainPanel.xml | 7 + docs/xml/SkiaSharp.Views.UWP/SKXamlCanvas.xml | 8 + .../xml/SkiaSharp.Views.UWP/UWPExtensions.xml | 16 + docs/xml/SkiaSharp.Views.WPF/SKElement.xml | 22 +- .../xml/SkiaSharp.Views.WPF/WPFExtensions.xml | 16 + .../SkiaSharp.Views.iOS/AppleExtensions.xml | 27 + docs/xml/SkiaSharp.Views.iOS/Extensions.xml | 13 + .../ISKCanvasLayerDelegate.xml | 7 + .../ISKGLLayerDelegate.xml | 7 + .../xml/SkiaSharp.Views.iOS/SKCanvasLayer.xml | 40 + docs/xml/SkiaSharp.Views.iOS/SKCanvasView.xml | 42 +- docs/xml/SkiaSharp.Views.iOS/SKGLLayer.xml | 41 + docs/xml/SkiaSharp.Views.iOS/SKGLView.xml | 41 +- .../SKPaintGLSurfaceEventArgs.xml | 112 + .../SKPaintSurfaceEventArgs.xml | 4 + .../xml/SkiaSharp.Views.iOS/iOSExtensions.xml | 13 + .../SkiaSharp.Views.tvOS/AppleExtensions.xml | 27 + docs/xml/SkiaSharp.Views.tvOS/Extensions.xml | 13 + .../ISKCanvasLayerDelegate.xml | 7 + .../ISKGLLayerDelegate.xml | 7 + .../SkiaSharp.Views.tvOS/SKCanvasLayer.xml | 40 + .../xml/SkiaSharp.Views.tvOS/SKCanvasView.xml | 42 +- docs/xml/SkiaSharp.Views.tvOS/SKGLLayer.xml | 41 + docs/xml/SkiaSharp.Views.tvOS/SKGLView.xml | 41 +- .../SKPaintGLSurfaceEventArgs.xml | 112 + .../SKPaintSurfaceEventArgs.xml | 4 + .../SkiaSharp.Views.tvOS/iOSExtensions.xml | 13 + .../AppleExtensions.xml | 18 + .../SkiaSharp.Views.watchOS/Extensions.xml | 13 + .../ISKCanvasLayerDelegate.xml | 7 + .../SKPaintSurfaceEventArgs.xml | 4 + .../SkiaSharp.Views.watchOS/iOSExtensions.xml | 13 + docs/xml/SkiaSharp/GRBackend.xml | 28 +- docs/xml/SkiaSharp/GRBackendRenderTarget.xml | 276 ++ .../SkiaSharp/GRBackendRenderTargetDesc.xml | 15 + docs/xml/SkiaSharp/GRBackendState.xml | 5 +- docs/xml/SkiaSharp/GRBackendTexture.xml | 241 ++ docs/xml/SkiaSharp/GRBackendTextureDesc.xml | 13 + .../SkiaSharp/GRBackendTextureDescFlags.xml | 8 +- docs/xml/SkiaSharp/GRContext.xml | 105 + docs/xml/SkiaSharp/GRGlBackendState.xml | 17 +- docs/xml/SkiaSharp/GRGlBackendTextureDesc.xml | 13 + docs/xml/SkiaSharp/GRGlFramebufferInfo.xml | 93 + docs/xml/SkiaSharp/GRGlGetProcDelegate.xml | 1 + docs/xml/SkiaSharp/GRGlInterface.xml | 16 + docs/xml/SkiaSharp/GRGlTextureInfo.xml | 43 + docs/xml/SkiaSharp/GRPixelConfig.xml | 76 +- docs/xml/SkiaSharp/GRSurfaceOrigin.xml | 11 +- docs/xml/SkiaSharp/SK3dView.xml | 19 + .../xml/SkiaSharp/SKAbstractManagedStream.xml | 15 + .../SkiaSharp/SKAbstractManagedWStream.xml | 7 + docs/xml/SkiaSharp/SKAlphaType.xml | 5 + docs/xml/SkiaSharp/SKAutoCanvasRestore.xml | 5 + docs/xml/SkiaSharp/SKAutoCoInitialize.xml | 5 + docs/xml/SkiaSharp/SKAutoMaskFreeImage.xml | 3 + docs/xml/SkiaSharp/SKBitmap.xml | 289 +- docs/xml/SkiaSharp/SKBitmapAllocFlags.xml | 5 +- .../xml/SkiaSharp/SKBitmapReleaseDelegate.xml | 1 + docs/xml/SkiaSharp/SKBitmapResizeMethod.xml | 11 + docs/xml/SkiaSharp/SKBlendMode.xml | 30 + docs/xml/SkiaSharp/SKBlurMaskFilterFlags.xml | 10 +- docs/xml/SkiaSharp/SKBlurStyle.xml | 5 + docs/xml/SkiaSharp/SKCanvas.xml | 107 + docs/xml/SkiaSharp/SKClipOperation.xml | 3 + docs/xml/SkiaSharp/SKCodec.xml | 145 +- .../SKCodecAnimationDisposalMethod.xml | 69 + docs/xml/SkiaSharp/SKCodecFrameInfo.xml | 23 + docs/xml/SkiaSharp/SKCodecOptions.xml | 66 + docs/xml/SkiaSharp/SKCodecResult.xml | 67 +- docs/xml/SkiaSharp/SKCodecScanlineOrder.xml | 3 + docs/xml/SkiaSharp/SKColor.xml | 27 + docs/xml/SkiaSharp/SKColorFilter.xml | 30 + docs/xml/SkiaSharp/SKColorSpace.xml | 17 + docs/xml/SkiaSharp/SKColorSpaceFlags.xml | 5 +- docs/xml/SkiaSharp/SKColorSpaceGamut.xml | 5 + docs/xml/SkiaSharp/SKColorSpacePrimaries.xml | 12 + .../SKColorSpaceRenderTargetGamma.xml | 3 + docs/xml/SkiaSharp/SKColorSpaceTransferFn.xml | 10 + docs/xml/SkiaSharp/SKColorTable.xml | 20 + docs/xml/SkiaSharp/SKColorType.xml | 72 +- docs/xml/SkiaSharp/SKColors.xml | 143 + docs/xml/SkiaSharp/SKCropRectFlags.xml | 9 +- docs/xml/SkiaSharp/SKData.xml | 28 + docs/xml/SkiaSharp/SKDataReleaseDelegate.xml | 1 + ...splacementMapEffectChannelSelectorType.xml | 6 + docs/xml/SkiaSharp/SKDocument.xml | 78 +- docs/xml/SkiaSharp/SKDocumentPdfMetadata.xml | 9 + .../SKDropShadowImageFilterShadowMode.xml | 3 + docs/xml/SkiaSharp/SKDynamicMemoryWStream.xml | 11 + docs/xml/SkiaSharp/SKEncodedImageFormat.xml | 12 + docs/xml/SkiaSharp/SKEncodedOrigin.xml | 171 ++ docs/xml/SkiaSharp/SKEncoding.xml | 4 + docs/xml/SkiaSharp/SKFileStream.xml | 5 + docs/xml/SkiaSharp/SKFileWStream.xml | 5 + docs/xml/SkiaSharp/SKFilterQuality.xml | 5 + docs/xml/SkiaSharp/SKFontManager.xml | 255 ++ docs/xml/SkiaSharp/SKFontMetrics.xml | 50 + docs/xml/SkiaSharp/SKFontStyle.xml | 225 ++ docs/xml/SkiaSharp/SKFontStyleSet.xml | 142 + docs/xml/SkiaSharp/SKFontStyleSlant.xml | 4 + docs/xml/SkiaSharp/SKFontStyleWeight.xml | 12 + docs/xml/SkiaSharp/SKFontStyleWidth.xml | 10 + .../SKFrontBufferedManagedStream.xml | 17 + docs/xml/SkiaSharp/SKFrontBufferedStream.xml | 17 + docs/xml/SkiaSharp/SKHighContrastConfig.xml | 7 + .../SKHighContrastConfigInvertStyle.xml | 4 + docs/xml/SkiaSharp/SKImage.xml | 476 ++++ docs/xml/SkiaSharp/SKImageCachingHint.xml | 3 + docs/xml/SkiaSharp/SKImageFilter+CropRect.xml | 6 + docs/xml/SkiaSharp/SKImageFilter.xml | 92 +- docs/xml/SkiaSharp/SKImageInfo.xml | 53 + .../SKImageRasterReleaseDelegate.xml | 1 + .../SKImageTextureReleaseDelegate.xml | 1 + .../SkiaSharp/SKJpegEncoderAlphaOption.xml | 3 + .../xml/SkiaSharp/SKJpegEncoderDownsample.xml | 4 + docs/xml/SkiaSharp/SKJpegEncoderOptions.xml | 8 + docs/xml/SkiaSharp/SKLattice.xml | 40 + docs/xml/SkiaSharp/SKLatticeRectType.xml | 69 + .../SkiaSharp/SKManagedPixelSerializer.xml | 9 +- docs/xml/SkiaSharp/SKManagedStream.xml | 15 + docs/xml/SkiaSharp/SKManagedWStream.xml | 7 + docs/xml/SkiaSharp/SKMask.xml | 28 +- docs/xml/SkiaSharp/SKMaskFilter.xml | 67 + docs/xml/SkiaSharp/SKMaskFormat.xml | 6 + docs/xml/SkiaSharp/SKMatrix.xml | 43 + docs/xml/SkiaSharp/SKMatrix44.xml | 48 + docs/xml/SkiaSharp/SKMatrix44TypeMask.xml | 8 +- .../SkiaSharp/SKMatrixConvolutionTileMode.xml | 4 + docs/xml/SkiaSharp/SKMemoryStream.xml | 7 + docs/xml/SkiaSharp/SKNWayCanvas.xml | 5 + docs/xml/SkiaSharp/SKNativeObject.xml | 5 + docs/xml/SkiaSharp/SKNoDrawCanvas.xml | 2 + docs/xml/SkiaSharp/SKObject.xml | 4 + docs/xml/SkiaSharp/SKOverdrawCanvas.xml | 37 + docs/xml/SkiaSharp/SKPMColor.xml | 19 + docs/xml/SkiaSharp/SKPaint.xml | 59 + docs/xml/SkiaSharp/SKPaintHinting.xml | 5 + docs/xml/SkiaSharp/SKPaintStyle.xml | 4 + docs/xml/SkiaSharp/SKPath+Iterator.xml | 6 + docs/xml/SkiaSharp/SKPath+OpBuilder.xml | 5 + docs/xml/SkiaSharp/SKPath+RawIterator.xml | 5 + docs/xml/SkiaSharp/SKPath.xml | 84 +- .../xml/SkiaSharp/SKPath1DPathEffectStyle.xml | 4 + docs/xml/SkiaSharp/SKPathAddMode.xml | 3 + docs/xml/SkiaSharp/SKPathArcSize.xml | 3 + docs/xml/SkiaSharp/SKPathConvexity.xml | 4 + docs/xml/SkiaSharp/SKPathDirection.xml | 3 + docs/xml/SkiaSharp/SKPathEffect.xml | 10 + docs/xml/SkiaSharp/SKPathFillType.xml | 5 + docs/xml/SkiaSharp/SKPathMeasure.xml | 13 + .../SkiaSharp/SKPathMeasureMatrixFlags.xml | 6 +- docs/xml/SkiaSharp/SKPathOp.xml | 6 + docs/xml/SkiaSharp/SKPathSegmentMask.xml | 7 +- docs/xml/SkiaSharp/SKPathVerb.xml | 8 + docs/xml/SkiaSharp/SKPicture.xml | 4 + docs/xml/SkiaSharp/SKPictureRecorder.xml | 6 + docs/xml/SkiaSharp/SKPixelGeometry.xml | 6 + docs/xml/SkiaSharp/SKPixelSerializer.xml | 103 +- docs/xml/SkiaSharp/SKPixmap.xml | 359 ++- .../xml/SkiaSharp/SKPngEncoderFilterFlags.xml | 10 +- docs/xml/SkiaSharp/SKPngEncoderOptions.xml | 7 + docs/xml/SkiaSharp/SKPoint.xml | 29 + docs/xml/SkiaSharp/SKPoint3.xml | 16 + docs/xml/SkiaSharp/SKPointI.xml | 27 + docs/xml/SkiaSharp/SKPointMode.xml | 4 + docs/xml/SkiaSharp/SKRect.xml | 41 + docs/xml/SkiaSharp/SKRectI.xml | 45 + docs/xml/SkiaSharp/SKRegion.xml | 16 + docs/xml/SkiaSharp/SKRegionOperation.xml | 7 + docs/xml/SkiaSharp/SKRoundRect.xml | 28 + docs/xml/SkiaSharp/SKRoundRectCorner.xml | 5 + docs/xml/SkiaSharp/SKRoundRectType.xml | 7 + docs/xml/SkiaSharp/SKShader.xml | 22 + docs/xml/SkiaSharp/SKShaderTileMode.xml | 4 + docs/xml/SkiaSharp/SKSize.xml | 20 + docs/xml/SkiaSharp/SKSizeI.xml | 18 + docs/xml/SkiaSharp/SKStream.xml | 193 ++ docs/xml/SkiaSharp/SKStreamAsset.xml | 1 + docs/xml/SkiaSharp/SKStreamMemory.xml | 1 + docs/xml/SkiaSharp/SKStreamRewindable.xml | 1 + docs/xml/SkiaSharp/SKStreamSeekable.xml | 1 + docs/xml/SkiaSharp/SKStrokeCap.xml | 4 + docs/xml/SkiaSharp/SKStrokeJoin.xml | 4 + docs/xml/SkiaSharp/SKSurface.xml | 1146 +++++++- docs/xml/SkiaSharp/SKSurfaceProps.xml | 3 + docs/xml/SkiaSharp/SKSurfacePropsFlags.xml | 5 +- .../SkiaSharp/SKSurfaceReleaseDelegate.xml | 25 + docs/xml/SkiaSharp/SKSvgCanvas.xml | 2 + docs/xml/SkiaSharp/SKSwizzle.xml | 3 + docs/xml/SkiaSharp/SKTextAlign.xml | 4 + docs/xml/SkiaSharp/SKTextEncoding.xml | 5 + .../SkiaSharp/SKTransferFunctionBehavior.xml | 3 + docs/xml/SkiaSharp/SKTypeface.xml | 108 +- docs/xml/SkiaSharp/SKTypefaceStyle.xml | 10 +- docs/xml/SkiaSharp/SKVertexMode.xml | 4 + docs/xml/SkiaSharp/SKVertices.xml | 5 + docs/xml/SkiaSharp/SKWStream.xml | 18 + .../SkiaSharp/SKWebpEncoderCompression.xml | 3 + docs/xml/SkiaSharp/SKWebpEncoderOptions.xml | 7 + docs/xml/SkiaSharp/SKXmlStreamWriter.xml | 3 + docs/xml/SkiaSharp/SKXmlWriter.xml | 1 + docs/xml/SkiaSharp/SKZeroInitialized.xml | 3 + docs/xml/SkiaSharp/SkiaExtensions.xml | 120 + docs/xml/SkiaSharp/StringUtilities.xml | 6 + docs/xml/index.xml | 628 +++-- 289 files changed, 13338 insertions(+), 370 deletions(-) create mode 100644 docs/xml/FrameworksIndex/harfbuzzsharp-1.4.6.2.xml create mode 100644 docs/xml/FrameworksIndex/skiasharp-1.68.0.xml create mode 100644 docs/xml/FrameworksIndex/skiasharp-harfbuzz-1.68.0.xml create mode 100644 docs/xml/FrameworksIndex/skiasharp-views-android-1.68.0.xml create mode 100644 docs/xml/FrameworksIndex/skiasharp-views-forms-1.68.0.xml create mode 100644 docs/xml/FrameworksIndex/skiasharp-views-ios-1.68.0.xml create mode 100644 docs/xml/FrameworksIndex/skiasharp-views-macos-1.68.0.xml create mode 100644 docs/xml/FrameworksIndex/skiasharp-views-net-1.68.0.xml create mode 100644 docs/xml/FrameworksIndex/skiasharp-views-tizen-1.68.0.xml create mode 100644 docs/xml/FrameworksIndex/skiasharp-views-tvos-1.68.0.xml create mode 100644 docs/xml/FrameworksIndex/skiasharp-views-uwp-1.68.0.xml create mode 100644 docs/xml/FrameworksIndex/skiasharp-views-watchos-1.68.0.xml create mode 100644 docs/xml/SkiaSharp/GRBackendRenderTarget.xml create mode 100644 docs/xml/SkiaSharp/GRBackendTexture.xml create mode 100644 docs/xml/SkiaSharp/GRGlFramebufferInfo.xml create mode 100644 docs/xml/SkiaSharp/SKCodecAnimationDisposalMethod.xml create mode 100644 docs/xml/SkiaSharp/SKEncodedOrigin.xml create mode 100644 docs/xml/SkiaSharp/SKFontStyle.xml create mode 100644 docs/xml/SkiaSharp/SKFontStyleSet.xml create mode 100644 docs/xml/SkiaSharp/SKLatticeRectType.xml create mode 100644 docs/xml/SkiaSharp/SKOverdrawCanvas.xml create mode 100644 docs/xml/SkiaSharp/SKSurfaceReleaseDelegate.xml diff --git a/changelogs/SkiaSharp.Views/1.55.0/SkiaSharp.Views.iOS.md b/changelogs/SkiaSharp.Views/1.55.0/SkiaSharp.Views.iOS.md index 48ecab1624..f969287caa 100644 --- a/changelogs/SkiaSharp.Views/1.55.0/SkiaSharp.Views.iOS.md +++ b/changelogs/SkiaSharp.Views/1.55.0/SkiaSharp.Views.iOS.md @@ -85,7 +85,7 @@ public class SKCanvasLayer : CoreAnimation.CALayer, CoreAnimation.ICAMediaTiming #### New Type: SkiaSharp.Views.iOS.SKCanvasView ```csharp -public class SKCanvasView : UIKit.UIView, CoreAnimation.ICALayerDelegate, Foundation.INSCoding, Foundation.INSObjectProtocol, ObjCRuntime.INativeObject, System.Collections.IEnumerable, System.ComponentModel.IComponent, System.IDisposable, System.IEquatable, UIKit.IUIAccessibilityIdentification, UIKit.IUIAppearance, UIKit.IUIAppearanceContainer, UIKit.IUICoordinateSpace, UIKit.IUIDynamicItem, UIKit.IUIFocusEnvironment, UIKit.IUIFocusItem, UIKit.IUIPasteConfigurationSupporting, UIKit.IUITraitEnvironment { +public class SKCanvasView : UIKit.UIView, CoreAnimation.ICALayerDelegate, Foundation.INSCoding, Foundation.INSObjectProtocol, ObjCRuntime.INativeObject, System.Collections.IEnumerable, System.ComponentModel.IComponent, System.IDisposable, System.IEquatable, UIKit.IUIAccessibilityIdentification, UIKit.IUIAppearance, UIKit.IUIAppearanceContainer, UIKit.IUICoordinateSpace, UIKit.IUIDynamicItem, UIKit.IUIFocusEnvironment, UIKit.IUIFocusItem, UIKit.IUIFocusItemContainer, UIKit.IUIPasteConfigurationSupporting, UIKit.IUITraitEnvironment, UIKit.IUIUserActivityRestoring { // constructors public SKCanvasView (); public SKCanvasView (CoreGraphics.CGRect frame); @@ -125,7 +125,7 @@ public class SKGLLayer : CoreAnimation.CAEAGLLayer, CoreAnimation.ICAMediaTiming #### New Type: SkiaSharp.Views.iOS.SKGLView ```csharp -public class SKGLView : GLKit.GLKView, CoreAnimation.ICALayerDelegate, Foundation.INSCoding, Foundation.INSObjectProtocol, GLKit.IGLKViewDelegate, ObjCRuntime.INativeObject, System.Collections.IEnumerable, System.ComponentModel.IComponent, System.IDisposable, System.IEquatable, UIKit.IUIAccessibilityIdentification, UIKit.IUIAppearance, UIKit.IUIAppearanceContainer, UIKit.IUICoordinateSpace, UIKit.IUIDynamicItem, UIKit.IUIFocusEnvironment, UIKit.IUIFocusItem, UIKit.IUIPasteConfigurationSupporting, UIKit.IUITraitEnvironment { +public class SKGLView : GLKit.GLKView, CoreAnimation.ICALayerDelegate, Foundation.INSCoding, Foundation.INSObjectProtocol, GLKit.IGLKViewDelegate, ObjCRuntime.INativeObject, System.Collections.IEnumerable, System.ComponentModel.IComponent, System.IDisposable, System.IEquatable, UIKit.IUIAccessibilityIdentification, UIKit.IUIAppearance, UIKit.IUIAppearanceContainer, UIKit.IUICoordinateSpace, UIKit.IUIDynamicItem, UIKit.IUIFocusEnvironment, UIKit.IUIFocusItem, UIKit.IUIFocusItemContainer, UIKit.IUIPasteConfigurationSupporting, UIKit.IUITraitEnvironment, UIKit.IUIUserActivityRestoring { // constructors public SKGLView (); public SKGLView (CoreGraphics.CGRect frame); diff --git a/changelogs/SkiaSharp.Views/1.55.0/SkiaSharp.Views.tvOS.md b/changelogs/SkiaSharp.Views/1.55.0/SkiaSharp.Views.tvOS.md index 252b96a91a..1d12ebac70 100644 --- a/changelogs/SkiaSharp.Views/1.55.0/SkiaSharp.Views.tvOS.md +++ b/changelogs/SkiaSharp.Views/1.55.0/SkiaSharp.Views.tvOS.md @@ -85,7 +85,7 @@ public class SKCanvasLayer : CoreAnimation.CALayer, CoreAnimation.ICAMediaTiming #### New Type: SkiaSharp.Views.tvOS.SKCanvasView ```csharp -public class SKCanvasView : UIKit.UIView, CoreAnimation.ICALayerDelegate, Foundation.INSCoding, Foundation.INSObjectProtocol, ObjCRuntime.INativeObject, System.Collections.IEnumerable, System.ComponentModel.IComponent, System.IDisposable, System.IEquatable, UIKit.IUIAccessibilityIdentification, UIKit.IUIAppearance, UIKit.IUIAppearanceContainer, UIKit.IUICoordinateSpace, UIKit.IUIDynamicItem, UIKit.IUIFocusEnvironment, UIKit.IUIFocusItem, UIKit.IUITraitEnvironment { +public class SKCanvasView : UIKit.UIView, CoreAnimation.ICALayerDelegate, Foundation.INSCoding, Foundation.INSObjectProtocol, ObjCRuntime.INativeObject, System.Collections.IEnumerable, System.ComponentModel.IComponent, System.IDisposable, System.IEquatable, UIKit.IUIAccessibilityIdentification, UIKit.IUIAppearance, UIKit.IUIAppearanceContainer, UIKit.IUICoordinateSpace, UIKit.IUIDynamicItem, UIKit.IUIFocusEnvironment, UIKit.IUIFocusItem, UIKit.IUIFocusItemContainer, UIKit.IUITraitEnvironment, UIKit.IUIUserActivityRestoring { // constructors public SKCanvasView (); public SKCanvasView (CoreGraphics.CGRect frame); @@ -125,7 +125,7 @@ public class SKGLLayer : CoreAnimation.CAEAGLLayer, CoreAnimation.ICAMediaTiming #### New Type: SkiaSharp.Views.tvOS.SKGLView ```csharp -public class SKGLView : GLKit.GLKView, CoreAnimation.ICALayerDelegate, Foundation.INSCoding, Foundation.INSObjectProtocol, GLKit.IGLKViewDelegate, ObjCRuntime.INativeObject, System.Collections.IEnumerable, System.ComponentModel.IComponent, System.IDisposable, System.IEquatable, UIKit.IUIAccessibilityIdentification, UIKit.IUIAppearance, UIKit.IUIAppearanceContainer, UIKit.IUICoordinateSpace, UIKit.IUIDynamicItem, UIKit.IUIFocusEnvironment, UIKit.IUIFocusItem, UIKit.IUITraitEnvironment { +public class SKGLView : GLKit.GLKView, CoreAnimation.ICALayerDelegate, Foundation.INSCoding, Foundation.INSObjectProtocol, GLKit.IGLKViewDelegate, ObjCRuntime.INativeObject, System.Collections.IEnumerable, System.ComponentModel.IComponent, System.IDisposable, System.IEquatable, UIKit.IUIAccessibilityIdentification, UIKit.IUIAppearance, UIKit.IUIAppearanceContainer, UIKit.IUICoordinateSpace, UIKit.IUIDynamicItem, UIKit.IUIFocusEnvironment, UIKit.IUIFocusItem, UIKit.IUIFocusItemContainer, UIKit.IUITraitEnvironment, UIKit.IUIUserActivityRestoring { // constructors public SKGLView (); public SKGLView (CoreGraphics.CGRect frame); diff --git a/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.UWP.md b/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.UWP.md index 7acb2c2b92..d58e104b82 100644 --- a/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.UWP.md +++ b/changelogs/SkiaSharp.Views/1.68.0/SkiaSharp.Views.UWP.md @@ -73,25 +73,3 @@ protected override Windows.Foundation.Size ArrangeOverride (Windows.Foundation.S #### Removed Type SkiaSharp.Views.UWP.GlesRenderTarget #### Removed Type SkiaSharp.Views.UWP.GlesStencilFormat -### New Namespace SkiaSharp.Views.GlesInterop - -#### New Type: SkiaSharp.Views.GlesInterop.GlesContext - -```csharp -public class GlesContext : System.IDisposable { - // constructors - public GlesContext (); - // properties - public bool HasSurface { get; } - // methods - public void CreateSurface (Windows.UI.Xaml.Controls.SwapChainPanel panel, Windows.Foundation.Size? renderSurfaceSize, float? resolutionScale); - public void DestroySurface (); - public virtual void Dispose (); - public void GetSurfaceDimensions (out int width, out int height); - public void MakeCurrent (); - public void Reset (); - public void SetViewportSize (int width, int height); - public bool SwapBuffers (); -} -``` - diff --git a/docs/xml/FrameworksIndex/harfbuzzsharp-1.4.6.2.xml b/docs/xml/FrameworksIndex/harfbuzzsharp-1.4.6.2.xml new file mode 100644 index 0000000000..31191c9f78 --- /dev/null +++ b/docs/xml/FrameworksIndex/harfbuzzsharp-1.4.6.2.xml @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/xml/FrameworksIndex/skiasharp-1.68.0.xml b/docs/xml/FrameworksIndex/skiasharp-1.68.0.xml new file mode 100644 index 0000000000..160b048d76 --- /dev/null +++ b/docs/xml/FrameworksIndex/skiasharp-1.68.0.xml @@ -0,0 +1,2414 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/xml/FrameworksIndex/skiasharp-harfbuzz-1.68.0.xml b/docs/xml/FrameworksIndex/skiasharp-harfbuzz-1.68.0.xml new file mode 100644 index 0000000000..4c47879c27 --- /dev/null +++ b/docs/xml/FrameworksIndex/skiasharp-harfbuzz-1.68.0.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/xml/FrameworksIndex/skiasharp-views-android-1.68.0.xml b/docs/xml/FrameworksIndex/skiasharp-views-android-1.68.0.xml new file mode 100644 index 0000000000..ea80df6015 --- /dev/null +++ b/docs/xml/FrameworksIndex/skiasharp-views-android-1.68.0.xml @@ -0,0 +1,182 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/xml/FrameworksIndex/skiasharp-views-forms-1.68.0.xml b/docs/xml/FrameworksIndex/skiasharp-views-forms-1.68.0.xml new file mode 100644 index 0000000000..ca28ad8674 --- /dev/null +++ b/docs/xml/FrameworksIndex/skiasharp-views-forms-1.68.0.xml @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/xml/FrameworksIndex/skiasharp-views-ios-1.68.0.xml b/docs/xml/FrameworksIndex/skiasharp-views-ios-1.68.0.xml new file mode 100644 index 0000000000..b888dbe171 --- /dev/null +++ b/docs/xml/FrameworksIndex/skiasharp-views-ios-1.68.0.xml @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/xml/FrameworksIndex/skiasharp-views-macos-1.68.0.xml b/docs/xml/FrameworksIndex/skiasharp-views-macos-1.68.0.xml new file mode 100644 index 0000000000..dbd6319bcf --- /dev/null +++ b/docs/xml/FrameworksIndex/skiasharp-views-macos-1.68.0.xml @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/xml/FrameworksIndex/skiasharp-views-net-1.68.0.xml b/docs/xml/FrameworksIndex/skiasharp-views-net-1.68.0.xml new file mode 100644 index 0000000000..44a1e46879 --- /dev/null +++ b/docs/xml/FrameworksIndex/skiasharp-views-net-1.68.0.xml @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/xml/FrameworksIndex/skiasharp-views-tizen-1.68.0.xml b/docs/xml/FrameworksIndex/skiasharp-views-tizen-1.68.0.xml new file mode 100644 index 0000000000..b220d131ed --- /dev/null +++ b/docs/xml/FrameworksIndex/skiasharp-views-tizen-1.68.0.xml @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/xml/FrameworksIndex/skiasharp-views-tvos-1.68.0.xml b/docs/xml/FrameworksIndex/skiasharp-views-tvos-1.68.0.xml new file mode 100644 index 0000000000..77fbf58eae --- /dev/null +++ b/docs/xml/FrameworksIndex/skiasharp-views-tvos-1.68.0.xml @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/xml/FrameworksIndex/skiasharp-views-uwp-1.68.0.xml b/docs/xml/FrameworksIndex/skiasharp-views-uwp-1.68.0.xml new file mode 100644 index 0000000000..7bb9f87276 --- /dev/null +++ b/docs/xml/FrameworksIndex/skiasharp-views-uwp-1.68.0.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/xml/FrameworksIndex/skiasharp-views-watchos-1.68.0.xml b/docs/xml/FrameworksIndex/skiasharp-views-watchos-1.68.0.xml new file mode 100644 index 0000000000..87530969c4 --- /dev/null +++ b/docs/xml/FrameworksIndex/skiasharp-views-watchos-1.68.0.xml @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/xml/SkiaSharp.HarfBuzz/BlobExtensions.xml b/docs/xml/SkiaSharp.HarfBuzz/BlobExtensions.xml index aadbb1ea74..65780a9693 100644 --- a/docs/xml/SkiaSharp.HarfBuzz/BlobExtensions.xml +++ b/docs/xml/SkiaSharp.HarfBuzz/BlobExtensions.xml @@ -5,6 +5,7 @@ SkiaSharp.HarfBuzz 1.60.0.0 + 1.68.0.0 System.Object @@ -23,6 +24,7 @@ SkiaSharp.HarfBuzz 1.60.0.0 + 1.68.0.0 HarfBuzzSharp.Blob diff --git a/docs/xml/SkiaSharp.HarfBuzz/CanvasExtensions.xml b/docs/xml/SkiaSharp.HarfBuzz/CanvasExtensions.xml index faebd38946..8e59272e9f 100644 --- a/docs/xml/SkiaSharp.HarfBuzz/CanvasExtensions.xml +++ b/docs/xml/SkiaSharp.HarfBuzz/CanvasExtensions.xml @@ -5,6 +5,7 @@ SkiaSharp.HarfBuzz 1.60.0.0 + 1.68.0.0 System.Object @@ -23,6 +24,7 @@ SkiaSharp.HarfBuzz 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp.HarfBuzz/FontExtensions.xml b/docs/xml/SkiaSharp.HarfBuzz/FontExtensions.xml index cf8edef954..239b1c44d2 100644 --- a/docs/xml/SkiaSharp.HarfBuzz/FontExtensions.xml +++ b/docs/xml/SkiaSharp.HarfBuzz/FontExtensions.xml @@ -5,6 +5,7 @@ SkiaSharp.HarfBuzz 1.60.0.0 + 1.68.0.0 System.Object @@ -23,6 +24,7 @@ SkiaSharp.HarfBuzz 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSizeI @@ -45,6 +47,7 @@ SkiaSharp.HarfBuzz 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp.HarfBuzz/SKShaper+Result.xml b/docs/xml/SkiaSharp.HarfBuzz/SKShaper+Result.xml index b277f32e13..4b401d9a0e 100644 --- a/docs/xml/SkiaSharp.HarfBuzz/SKShaper+Result.xml +++ b/docs/xml/SkiaSharp.HarfBuzz/SKShaper+Result.xml @@ -5,6 +5,7 @@ SkiaSharp.HarfBuzz 1.60.0.0 + 1.68.0.0 System.Object @@ -23,6 +24,7 @@ SkiaSharp.HarfBuzz 1.60.0.0 + 1.68.0.0 @@ -38,6 +40,7 @@ SkiaSharp.HarfBuzz 1.60.0.0 + 1.68.0.0 @@ -60,6 +63,7 @@ SkiaSharp.HarfBuzz 1.60.0.0 + 1.68.0.0 System.UInt32[] @@ -78,6 +82,7 @@ SkiaSharp.HarfBuzz 1.60.0.0 + 1.68.0.0 System.UInt32[] @@ -96,6 +101,7 @@ SkiaSharp.HarfBuzz 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint[] diff --git a/docs/xml/SkiaSharp.HarfBuzz/SKShaper.xml b/docs/xml/SkiaSharp.HarfBuzz/SKShaper.xml index ab35a3e41a..c6fc4d9d2b 100644 --- a/docs/xml/SkiaSharp.HarfBuzz/SKShaper.xml +++ b/docs/xml/SkiaSharp.HarfBuzz/SKShaper.xml @@ -5,6 +5,7 @@ SkiaSharp.HarfBuzz 1.60.0.0 + 1.68.0.0 System.Object @@ -27,6 +28,7 @@ SkiaSharp.HarfBuzz 1.60.0.0 + 1.68.0.0 @@ -48,6 +50,7 @@ SkiaSharp.HarfBuzz 1.60.0.0 + 1.68.0.0 System.Void @@ -66,6 +69,7 @@ SkiaSharp.HarfBuzz 1.60.0.0 + 1.68.0.0 SkiaSharp.HarfBuzz.SKShaper+Result @@ -90,6 +94,7 @@ SkiaSharp.HarfBuzz 1.60.0.0 + 1.68.0.0 SkiaSharp.HarfBuzz.SKShaper+Result @@ -118,6 +123,7 @@ SkiaSharp.HarfBuzz 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTypeface diff --git a/docs/xml/SkiaSharp.Views.Android/AndroidExtensions.xml b/docs/xml/SkiaSharp.Views.Android/AndroidExtensions.xml index e744f683b9..136333c306 100644 --- a/docs/xml/SkiaSharp.Views.Android/AndroidExtensions.xml +++ b/docs/xml/SkiaSharp.Views.Android/AndroidExtensions.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Object @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Android.Graphics.Bitmap @@ -54,6 +56,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Android.Graphics.Bitmap @@ -79,6 +82,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Android.Graphics.Bitmap @@ -104,6 +108,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Android.Graphics.Bitmap @@ -131,6 +136,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Android.Graphics.Color @@ -156,6 +162,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Android.Graphics.Matrix @@ -181,6 +188,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Android.Graphics.PointF @@ -206,6 +214,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Android.Graphics.Point @@ -231,6 +240,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Android.Graphics.RectF @@ -256,6 +266,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Android.Graphics.Rect @@ -281,6 +292,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -306,6 +318,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -331,6 +344,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -356,6 +370,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix @@ -381,6 +396,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -407,6 +423,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointI @@ -432,6 +449,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -457,6 +475,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -482,6 +501,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect diff --git a/docs/xml/SkiaSharp.Views.Android/Extensions.xml b/docs/xml/SkiaSharp.Views.Android/Extensions.xml index f23c97986b..83e3f491b0 100644 --- a/docs/xml/SkiaSharp.Views.Android/Extensions.xml +++ b/docs/xml/SkiaSharp.Views.Android/Extensions.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Object @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.Color @@ -54,6 +56,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.PointF @@ -79,6 +82,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.Point @@ -104,6 +108,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.RectangleF @@ -129,6 +134,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.Rectangle @@ -154,6 +160,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.SizeF @@ -179,6 +186,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.Size @@ -204,6 +212,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -229,6 +238,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointI @@ -254,6 +264,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -279,6 +290,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -304,6 +316,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -329,6 +342,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSizeI @@ -354,6 +368,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize diff --git a/docs/xml/SkiaSharp.Views.Android/GLTextureView+IEGLConfigChooser.xml b/docs/xml/SkiaSharp.Views.Android/GLTextureView+IEGLConfigChooser.xml index 27aec9258a..d8a328a0e4 100644 --- a/docs/xml/SkiaSharp.Views.Android/GLTextureView+IEGLConfigChooser.xml +++ b/docs/xml/SkiaSharp.Views.Android/GLTextureView+IEGLConfigChooser.xml @@ -5,6 +5,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 @@ -20,6 +21,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 Javax.Microedition.Khronos.Egl.EGLConfig diff --git a/docs/xml/SkiaSharp.Views.Android/GLTextureView+IEGLContextFactory.xml b/docs/xml/SkiaSharp.Views.Android/GLTextureView+IEGLContextFactory.xml index 34dd344250..e5e3cb9f8f 100644 --- a/docs/xml/SkiaSharp.Views.Android/GLTextureView+IEGLContextFactory.xml +++ b/docs/xml/SkiaSharp.Views.Android/GLTextureView+IEGLContextFactory.xml @@ -5,6 +5,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 @@ -20,6 +21,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 Javax.Microedition.Khronos.Egl.EGLContext @@ -46,6 +48,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp.Views.Android/GLTextureView+IEGLWindowSurfaceFactory.xml b/docs/xml/SkiaSharp.Views.Android/GLTextureView+IEGLWindowSurfaceFactory.xml index 2d663af5f0..727dacbc27 100644 --- a/docs/xml/SkiaSharp.Views.Android/GLTextureView+IEGLWindowSurfaceFactory.xml +++ b/docs/xml/SkiaSharp.Views.Android/GLTextureView+IEGLWindowSurfaceFactory.xml @@ -5,6 +5,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 @@ -20,6 +21,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 Javax.Microedition.Khronos.Egl.EGLSurface @@ -48,6 +50,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp.Views.Android/GLTextureView+IGLWrapper.xml b/docs/xml/SkiaSharp.Views.Android/GLTextureView+IGLWrapper.xml index e19952e554..f1785f2194 100644 --- a/docs/xml/SkiaSharp.Views.Android/GLTextureView+IGLWrapper.xml +++ b/docs/xml/SkiaSharp.Views.Android/GLTextureView+IGLWrapper.xml @@ -5,6 +5,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 @@ -20,6 +21,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 Javax.Microedition.Khronos.Opengles.IGL diff --git a/docs/xml/SkiaSharp.Views.Android/GLTextureView+IRenderer.xml b/docs/xml/SkiaSharp.Views.Android/GLTextureView+IRenderer.xml index ba28772467..fd96b381bc 100644 --- a/docs/xml/SkiaSharp.Views.Android/GLTextureView+IRenderer.xml +++ b/docs/xml/SkiaSharp.Views.Android/GLTextureView+IRenderer.xml @@ -5,6 +5,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 @@ -31,6 +32,7 @@ to register the renderer with the . SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -52,6 +54,7 @@ to register the renderer with the . SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -87,6 +90,7 @@ could also set your projection matrix here. SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -110,6 +114,7 @@ could also set your projection matrix here. SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp.Views.Android/GLTextureView.xml b/docs/xml/SkiaSharp.Views.Android/GLTextureView.xml index e32e974c23..bac8a748a2 100644 --- a/docs/xml/SkiaSharp.Views.Android/GLTextureView.xml +++ b/docs/xml/SkiaSharp.Views.Android/GLTextureView.xml @@ -5,6 +5,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 Android.Views.TextureView @@ -33,6 +34,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 @@ -51,6 +53,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 @@ -71,6 +74,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 Android.Opengl.DebugFlags @@ -89,6 +93,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -110,6 +115,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -128,6 +134,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -149,6 +156,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -186,6 +194,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -204,6 +213,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -225,6 +235,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -253,6 +264,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Boolean @@ -278,6 +290,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -306,6 +319,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -327,6 +341,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Boolean @@ -345,6 +360,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -366,6 +382,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -387,6 +404,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 Android.Opengl.Rendermode @@ -405,6 +423,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -423,6 +442,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -454,6 +474,7 @@ If this method is called, it must be called before SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -485,6 +506,7 @@ If this method is called, it must be called before SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -526,6 +548,7 @@ If this method is called, it must be called before SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -547,6 +570,7 @@ If this method is called, it must be called before SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -568,6 +592,7 @@ If this method is called, it must be called before SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -589,6 +614,7 @@ If this method is called, it must be called before SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -610,6 +636,7 @@ If this method is called, it must be called before SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp.Views.Android/SKCanvasView.xml b/docs/xml/SkiaSharp.Views.Android/SKCanvasView.xml index 0cecb59214..d83bd2771b 100644 --- a/docs/xml/SkiaSharp.Views.Android/SKCanvasView.xml +++ b/docs/xml/SkiaSharp.Views.Android/SKCanvasView.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Android.Views.View @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -50,6 +52,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -73,6 +76,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -96,6 +100,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -121,6 +126,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -142,6 +148,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -166,6 +173,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -187,6 +195,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -211,7 +220,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use OnPaintSurface(SKPaintSurfaceEventArgs) instead.") + + System.Void @@ -254,6 +269,27 @@ protected override void OnDraw(SKSurface surface, SKImageInfo info) + + + + + Method + + SkiaSharp.Views.Android + 1.68.0.0 + + + System.Void + + + + + + To be added. + To be added. + To be added. + + @@ -265,6 +301,7 @@ protected override void OnDraw(SKSurface surface, SKImageInfo info) 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -295,6 +332,7 @@ protected override void OnDraw(SKSurface surface, SKImageInfo info) 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventHandler<SkiaSharp.Views.Android.SKPaintSurfaceEventArgs> diff --git a/docs/xml/SkiaSharp.Views.Android/SKGLSurfaceView+ISKRenderer.xml b/docs/xml/SkiaSharp.Views.Android/SKGLSurfaceView+ISKRenderer.xml index 4c59c09899..ef8207d73a 100644 --- a/docs/xml/SkiaSharp.Views.Android/SKGLSurfaceView+ISKRenderer.xml +++ b/docs/xml/SkiaSharp.Views.Android/SKGLSurfaceView+ISKRenderer.xml @@ -8,8 +8,14 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use SKGLSurfaceView.PaintSurface instead.") + + A generic SkiaSharp renderer interface. @@ -26,6 +32,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp.Views.Android/SKGLSurfaceView.xml b/docs/xml/SkiaSharp.Views.Android/SKGLSurfaceView.xml index eff90b2f9f..9f637192cc 100644 --- a/docs/xml/SkiaSharp.Views.Android/SKGLSurfaceView.xml +++ b/docs/xml/SkiaSharp.Views.Android/SKGLSurfaceView.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Android.Opengl.GLSurfaceView @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -50,6 +52,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -73,6 +76,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -92,6 +96,7 @@ SkiaSharp.Views.Android 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRContext @@ -102,6 +107,44 @@ + + + + + Method + + SkiaSharp.Views.Android + 1.68.0.0 + + + System.Void + + + + + + To be added. + To be added. + To be added. + + + + + + + Event + + SkiaSharp.Views.Android + 1.68.0.0 + + + System.EventHandler<SkiaSharp.Views.Android.SKPaintGLSurfaceEventArgs> + + + To be added. + To be added. + + @@ -113,7 +156,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use PaintSurface instead.") + + System.Void diff --git a/docs/xml/SkiaSharp.Views.Android/SKGLSurfaceViewRenderer.xml b/docs/xml/SkiaSharp.Views.Android/SKGLSurfaceViewRenderer.xml index 130f7128d4..492e50bf48 100644 --- a/docs/xml/SkiaSharp.Views.Android/SKGLSurfaceViewRenderer.xml +++ b/docs/xml/SkiaSharp.Views.Android/SKGLSurfaceViewRenderer.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Java.Lang.Object @@ -36,6 +37,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -54,6 +56,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -75,6 +78,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -97,6 +101,7 @@ SkiaSharp.Views.Android 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRContext @@ -121,6 +126,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -135,7 +141,7 @@ - + Method @@ -145,7 +151,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use OnPaintSurface(SKPaintGLSurfaceEventArgs) instead.") + + System.Void @@ -160,6 +172,27 @@ + + + + + Method + + SkiaSharp.Views.Android + 1.68.0.0 + + + System.Void + + + + + + To be added. + To be added. + To be added. + + @@ -174,6 +207,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -205,6 +239,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp.Views.Android/SKGLTextureView+ISKRenderer.xml b/docs/xml/SkiaSharp.Views.Android/SKGLTextureView+ISKRenderer.xml index f1f9fd9184..5fb277d10b 100644 --- a/docs/xml/SkiaSharp.Views.Android/SKGLTextureView+ISKRenderer.xml +++ b/docs/xml/SkiaSharp.Views.Android/SKGLTextureView+ISKRenderer.xml @@ -5,8 +5,14 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use SKGLTextureView.PaintSurface instead.") + + A generic SkiaSharp renderer interface. @@ -20,6 +26,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp.Views.Android/SKGLTextureView.xml b/docs/xml/SkiaSharp.Views.Android/SKGLTextureView.xml index 70d9b5f454..5b1a186d9a 100644 --- a/docs/xml/SkiaSharp.Views.Android/SKGLTextureView.xml +++ b/docs/xml/SkiaSharp.Views.Android/SKGLTextureView.xml @@ -5,6 +5,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Android.GLTextureView @@ -23,6 +24,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 @@ -41,6 +43,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 @@ -61,6 +64,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -79,6 +83,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 SkiaSharp.GRContext @@ -89,6 +94,44 @@ + + + + + Method + + SkiaSharp.Views.Android + 1.68.0.0 + + + System.Void + + + + + + To be added. + To be added. + To be added. + + + + + + + Event + + SkiaSharp.Views.Android + 1.68.0.0 + + + System.EventHandler<SkiaSharp.Views.Android.SKPaintGLSurfaceEventArgs> + + + To be added. + To be added. + + @@ -97,7 +140,13 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use PaintSurface instead.") + + System.Void diff --git a/docs/xml/SkiaSharp.Views.Android/SKGLTextureViewRenderer.xml b/docs/xml/SkiaSharp.Views.Android/SKGLTextureViewRenderer.xml index 05dfb2f1c5..2836417d33 100644 --- a/docs/xml/SkiaSharp.Views.Android/SKGLTextureViewRenderer.xml +++ b/docs/xml/SkiaSharp.Views.Android/SKGLTextureViewRenderer.xml @@ -5,6 +5,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 Java.Lang.Object @@ -27,6 +28,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 @@ -42,6 +44,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -60,6 +63,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -81,6 +85,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 SkiaSharp.GRContext @@ -102,6 +107,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -116,14 +122,20 @@ - + Method SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use OnPaintSurface(SKPaintGLSurfaceEventArgs) instead.") + + System.Void @@ -138,6 +150,27 @@ + + + + + Method + + SkiaSharp.Views.Android + 1.68.0.0 + + + System.Void + + + + + + To be added. + To be added. + To be added. + + @@ -149,6 +182,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -177,6 +211,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void @@ -203,6 +238,7 @@ SkiaSharp.Views.Android 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp.Views.Android/SKLockedSurface.xml b/docs/xml/SkiaSharp.Views.Android/SKLockedSurface.xml index a2faa5c340..87ba3e32a7 100644 --- a/docs/xml/SkiaSharp.Views.Android/SKLockedSurface.xml +++ b/docs/xml/SkiaSharp.Views.Android/SKLockedSurface.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Object @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCanvas @@ -50,6 +52,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageInfo @@ -71,6 +74,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface diff --git a/docs/xml/SkiaSharp.Views.Android/SKPaintGLSurfaceEventArgs.xml b/docs/xml/SkiaSharp.Views.Android/SKPaintGLSurfaceEventArgs.xml index 514c8c148c..c7ecbdd541 100644 --- a/docs/xml/SkiaSharp.Views.Android/SKPaintGLSurfaceEventArgs.xml +++ b/docs/xml/SkiaSharp.Views.Android/SKPaintGLSurfaceEventArgs.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventArgs @@ -18,6 +19,26 @@ The event does not yet exist nor is this type currently in use, but exists for cross-platform compatibility. + + + + + Constructor + + SkiaSharp.Views.Android + 1.68.0.0 + + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -29,7 +50,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use SKPaintGLSurfaceEventArgs(SKSurface, GRBackendRenderTarget, SKColorType, GRSurfaceOrigin) instead.") + + @@ -41,6 +68,84 @@ + + + + + Constructor + + SkiaSharp.Views.Android + 1.68.0.0 + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.Android + 1.68.0.0 + + + SkiaSharp.GRBackendRenderTarget + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.Android + 1.68.0.0 + + + SkiaSharp.SKColorType + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.Android + 1.68.0.0 + + + SkiaSharp.GRSurfaceOrigin + + + To be added. + To be added. + To be added. + + @@ -52,7 +157,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use BackendRenderTarget instead.") + + SkiaSharp.GRBackendRenderTargetDesc @@ -73,6 +184,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface diff --git a/docs/xml/SkiaSharp.Views.Android/SKPaintSurfaceEventArgs.xml b/docs/xml/SkiaSharp.Views.Android/SKPaintSurfaceEventArgs.xml index d81677db4a..3598cb3c64 100644 --- a/docs/xml/SkiaSharp.Views.Android/SKPaintSurfaceEventArgs.xml +++ b/docs/xml/SkiaSharp.Views.Android/SKPaintSurfaceEventArgs.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventArgs @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -52,6 +54,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageInfo @@ -73,6 +76,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface diff --git a/docs/xml/SkiaSharp.Views.Android/SKSurfaceView.xml b/docs/xml/SkiaSharp.Views.Android/SKSurfaceView.xml index 9271f6bcb5..afdff61772 100644 --- a/docs/xml/SkiaSharp.Views.Android/SKSurfaceView.xml +++ b/docs/xml/SkiaSharp.Views.Android/SKSurfaceView.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Android.Views.SurfaceView @@ -36,6 +37,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -57,6 +59,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -80,6 +83,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -105,6 +109,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -126,6 +131,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -150,6 +156,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Android.SKLockedSurface @@ -175,6 +182,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -214,6 +222,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -241,6 +250,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -265,6 +275,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp.Views.Desktop/Extensions.xml b/docs/xml/SkiaSharp.Views.Desktop/Extensions.xml index dddaf2dcef..32b3903e50 100644 --- a/docs/xml/SkiaSharp.Views.Desktop/Extensions.xml +++ b/docs/xml/SkiaSharp.Views.Desktop/Extensions.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Object @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.Bitmap @@ -54,6 +56,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.Bitmap @@ -79,6 +82,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.Bitmap @@ -104,6 +108,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.Bitmap @@ -131,6 +136,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.Color @@ -156,6 +162,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.PointF @@ -181,6 +188,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.Point @@ -206,6 +214,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.RectangleF @@ -231,6 +240,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.Rectangle @@ -256,6 +266,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.SizeF @@ -281,6 +292,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.Size @@ -306,6 +318,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -331,6 +344,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -356,6 +370,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -381,6 +396,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -407,6 +423,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointI @@ -432,6 +449,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -457,6 +475,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -482,6 +501,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -507,6 +527,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSizeI @@ -532,6 +553,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize diff --git a/docs/xml/SkiaSharp.Views.Desktop/SKControl.xml b/docs/xml/SkiaSharp.Views.Desktop/SKControl.xml index 1473253c30..087cbd0015 100644 --- a/docs/xml/SkiaSharp.Views.Desktop/SKControl.xml +++ b/docs/xml/SkiaSharp.Views.Desktop/SKControl.xml @@ -8,16 +8,17 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Windows.Forms.Control - + System.ComponentModel.DefaultEvent("PaintSurface") - + System.ComponentModel.DefaultProperty("Name") @@ -37,6 +38,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -55,18 +57,19 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 - + System.ComponentModel.Bindable(false) - + System.ComponentModel.Browsable(false) - + System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden) - + System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never) @@ -90,6 +93,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -114,6 +118,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -138,6 +143,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -191,9 +197,10 @@ protected override void OnPaintSurface (SKPaintSurfaceEventArgs e) 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 - + System.ComponentModel.Category("Appearance") diff --git a/docs/xml/SkiaSharp.Views.Desktop/SKGLControl.xml b/docs/xml/SkiaSharp.Views.Desktop/SKGLControl.xml index 5694fc9d2c..9fcb4960f7 100644 --- a/docs/xml/SkiaSharp.Views.Desktop/SKGLControl.xml +++ b/docs/xml/SkiaSharp.Views.Desktop/SKGLControl.xml @@ -8,16 +8,17 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 OpenTK.GLControl - + System.ComponentModel.DefaultEvent("PaintSurface") - + System.ComponentModel.DefaultProperty("Name") @@ -37,6 +38,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -52,6 +54,7 @@ SkiaSharp.Views.Desktop 1.60.0.0 + 1.68.0.0 @@ -70,6 +73,7 @@ SkiaSharp.Views.Desktop 1.60.0.0 + 1.68.0.0 @@ -97,18 +101,19 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 - + System.ComponentModel.Bindable(false) - + System.ComponentModel.Browsable(false) - + System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden) - + System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never) @@ -132,6 +137,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -154,18 +160,19 @@ SkiaSharp.Views.Desktop 1.59.0.0 1.60.0.0 + 1.68.0.0 - + System.ComponentModel.Bindable(false) - + System.ComponentModel.Browsable(false) - + System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden) - + System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never) @@ -189,6 +196,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -213,6 +221,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -266,9 +275,10 @@ protected override void OnPaintSurface (SKPaintGLSurfaceEventArgs e) 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 - + System.ComponentModel.Category("Appearance") diff --git a/docs/xml/SkiaSharp.Views.Desktop/SKPaintGLSurfaceEventArgs.xml b/docs/xml/SkiaSharp.Views.Desktop/SKPaintGLSurfaceEventArgs.xml index 7c8f5ebe8a..56331a066e 100644 --- a/docs/xml/SkiaSharp.Views.Desktop/SKPaintGLSurfaceEventArgs.xml +++ b/docs/xml/SkiaSharp.Views.Desktop/SKPaintGLSurfaceEventArgs.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventArgs @@ -18,6 +19,26 @@ + + + + + Constructor + + SkiaSharp.Views.Desktop + 1.68.0.0 + + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -29,7 +50,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use SKPaintGLSurfaceEventArgs(SKSurface, GRBackendRenderTarget, SKColorType, GRSurfaceOrigin) instead.") + + @@ -41,6 +68,84 @@ + + + + + Constructor + + SkiaSharp.Views.Desktop + 1.68.0.0 + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.Desktop + 1.68.0.0 + + + SkiaSharp.GRBackendRenderTarget + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.Desktop + 1.68.0.0 + + + SkiaSharp.SKColorType + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.Desktop + 1.68.0.0 + + + SkiaSharp.GRSurfaceOrigin + + + To be added. + To be added. + To be added. + + @@ -52,7 +157,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use BackendRenderTarget instead.") + + SkiaSharp.GRBackendRenderTargetDesc @@ -73,6 +184,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface diff --git a/docs/xml/SkiaSharp.Views.Desktop/SKPaintSurfaceEventArgs.xml b/docs/xml/SkiaSharp.Views.Desktop/SKPaintSurfaceEventArgs.xml index ffc857e2b4..5b975054bc 100644 --- a/docs/xml/SkiaSharp.Views.Desktop/SKPaintSurfaceEventArgs.xml +++ b/docs/xml/SkiaSharp.Views.Desktop/SKPaintSurfaceEventArgs.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventArgs @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -52,6 +54,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageInfo @@ -73,6 +76,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface diff --git a/docs/xml/SkiaSharp.Views.Forms/Extensions.xml b/docs/xml/SkiaSharp.Views.Forms/Extensions.xml index 43ac6a0a09..7fa8335a1e 100644 --- a/docs/xml/SkiaSharp.Views.Forms/Extensions.xml +++ b/docs/xml/SkiaSharp.Views.Forms/Extensions.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Object @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.Color @@ -54,6 +56,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.Point @@ -79,6 +82,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.Point @@ -104,6 +108,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.Rectangle @@ -129,6 +134,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.Rectangle @@ -154,6 +160,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.Size @@ -179,6 +186,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.Size @@ -204,6 +212,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -229,6 +238,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -254,6 +264,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -279,6 +290,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize diff --git a/docs/xml/SkiaSharp.Views.Forms/GetPropertyValueEventArgs`1.xml b/docs/xml/SkiaSharp.Views.Forms/GetPropertyValueEventArgs`1.xml index 66e8b87486..2db44b1be2 100644 --- a/docs/xml/SkiaSharp.Views.Forms/GetPropertyValueEventArgs`1.xml +++ b/docs/xml/SkiaSharp.Views.Forms/GetPropertyValueEventArgs`1.xml @@ -5,6 +5,7 @@ SkiaSharp.Views.Forms 1.60.0.0 + 1.68.0.0 @@ -27,6 +28,7 @@ SkiaSharp.Views.Forms 1.60.0.0 + 1.68.0.0 @@ -42,6 +44,7 @@ SkiaSharp.Views.Forms 1.60.0.0 + 1.68.0.0 T diff --git a/docs/xml/SkiaSharp.Views.Forms/ISKCanvasViewController.xml b/docs/xml/SkiaSharp.Views.Forms/ISKCanvasViewController.xml index 1a1e262bb8..dd2abdbfa2 100644 --- a/docs/xml/SkiaSharp.Views.Forms/ISKCanvasViewController.xml +++ b/docs/xml/SkiaSharp.Views.Forms/ISKCanvasViewController.xml @@ -5,6 +5,7 @@ SkiaSharp.Views.Forms 1.60.0.0 + 1.68.0.0 @@ -24,6 +25,7 @@ SkiaSharp.Views.Forms 1.60.0.0 + 1.68.0.0 System.EventHandler<SkiaSharp.Views.Forms.GetPropertyValueEventArgs<SkiaSharp.SKSize>> @@ -41,6 +43,7 @@ SkiaSharp.Views.Forms 1.60.0.0 + 1.68.0.0 System.Void @@ -62,6 +65,7 @@ SkiaSharp.Views.Forms 1.60.0.0 + 1.68.0.0 System.Void @@ -83,6 +87,7 @@ SkiaSharp.Views.Forms 1.60.0.0 + 1.68.0.0 System.EventHandler diff --git a/docs/xml/SkiaSharp.Views.Forms/SKBitmapImageSource.xml b/docs/xml/SkiaSharp.Views.Forms/SKBitmapImageSource.xml index 121e49e8a9..0d41f96355 100644 --- a/docs/xml/SkiaSharp.Views.Forms/SKBitmapImageSource.xml +++ b/docs/xml/SkiaSharp.Views.Forms/SKBitmapImageSource.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.ImageSource @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -47,6 +49,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.BindableProperty @@ -88,6 +92,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Threading.Tasks.Task<System.Boolean> @@ -110,6 +115,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -134,6 +140,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Forms.SKBitmapImageSource @@ -159,6 +166,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap diff --git a/docs/xml/SkiaSharp.Views.Forms/SKCanvasView.xml b/docs/xml/SkiaSharp.Views.Forms/SKCanvasView.xml index c3861728d4..23946c6168 100644 --- a/docs/xml/SkiaSharp.Views.Forms/SKCanvasView.xml +++ b/docs/xml/SkiaSharp.Views.Forms/SKCanvasView.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.View @@ -18,7 +19,7 @@ - + Xamarin.Forms.RenderWith(typeof(SkiaSharp.Views.Forms.SKCanvasViewRenderer)) @@ -38,6 +39,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -56,6 +58,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -76,6 +79,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -96,6 +100,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.BindableProperty @@ -116,6 +121,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -137,6 +143,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.BindableProperty @@ -157,6 +164,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -178,6 +186,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.SizeRequest @@ -208,6 +217,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -263,6 +273,7 @@ protected override void OnPaintSurface (SKPaintSurfaceEventArgs e) 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -287,6 +298,7 @@ protected override void OnPaintSurface (SKPaintSurfaceEventArgs e) 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventHandler<SkiaSharp.Views.Forms.SKPaintSurfaceEventArgs> @@ -334,6 +346,7 @@ myView.PaintSurface += (sender, e) => { SkiaSharp.Views.Forms 1.60.0.0 + 1.68.0.0 System.EventHandler<SkiaSharp.Views.Forms.GetPropertyValueEventArgs<SkiaSharp.SKSize>> @@ -357,6 +370,7 @@ myView.PaintSurface += (sender, e) => { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -383,6 +397,7 @@ myView.PaintSurface += (sender, e) => { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -407,6 +422,7 @@ myView.PaintSurface += (sender, e) => { SkiaSharp.Views.Forms 1.60.0.0 + 1.68.0.0 System.EventHandler @@ -426,6 +442,7 @@ myView.PaintSurface += (sender, e) => { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventHandler<SkiaSharp.Views.Forms.SKTouchEventArgs> diff --git a/docs/xml/SkiaSharp.Views.Forms/SKGLView.xml b/docs/xml/SkiaSharp.Views.Forms/SKGLView.xml index e7d27703b0..2a8d8fd2cd 100644 --- a/docs/xml/SkiaSharp.Views.Forms/SKGLView.xml +++ b/docs/xml/SkiaSharp.Views.Forms/SKGLView.xml @@ -8,13 +8,14 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.View - + Xamarin.Forms.RenderWith(typeof(SkiaSharp.Views.Forms.SKGLViewRenderer)) @@ -34,6 +35,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -52,6 +54,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -72,6 +75,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -92,6 +96,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.BindableProperty @@ -110,6 +115,7 @@ SkiaSharp.Views.Forms 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRContext @@ -131,6 +137,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -152,6 +159,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.BindableProperty @@ -172,6 +180,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -193,6 +202,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.SizeRequest @@ -223,6 +233,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -278,6 +289,7 @@ protected override void OnPaintSurface (SKPaintGLSurfaceEventArgs e) 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -302,6 +314,7 @@ protected override void OnPaintSurface (SKPaintGLSurfaceEventArgs e) 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventHandler<SkiaSharp.Views.Forms.SKPaintGLSurfaceEventArgs> @@ -348,6 +361,7 @@ myView.PaintSurface += (sender, e) => { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventHandler<SkiaSharp.Views.Forms.SKTouchEventArgs> diff --git a/docs/xml/SkiaSharp.Views.Forms/SKImageImageSource.xml b/docs/xml/SkiaSharp.Views.Forms/SKImageImageSource.xml index 8ab36f681f..8f85238bd7 100644 --- a/docs/xml/SkiaSharp.Views.Forms/SKImageImageSource.xml +++ b/docs/xml/SkiaSharp.Views.Forms/SKImageImageSource.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.ImageSource @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -47,6 +49,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Threading.Tasks.Task<System.Boolean> @@ -69,6 +72,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -90,6 +94,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.BindableProperty @@ -110,6 +115,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -134,6 +140,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Forms.SKImageImageSource @@ -159,6 +166,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage diff --git a/docs/xml/SkiaSharp.Views.Forms/SKMouseButton.xml b/docs/xml/SkiaSharp.Views.Forms/SKMouseButton.xml index 212dcd567e..8066e54ac9 100644 --- a/docs/xml/SkiaSharp.Views.Forms/SKMouseButton.xml +++ b/docs/xml/SkiaSharp.Views.Forms/SKMouseButton.xml @@ -7,6 +7,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -26,6 +27,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Forms.SKMouseButton @@ -45,6 +47,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Forms.SKMouseButton @@ -64,6 +67,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Forms.SKMouseButton @@ -83,6 +87,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Forms.SKMouseButton diff --git a/docs/xml/SkiaSharp.Views.Forms/SKPaintGLSurfaceEventArgs.xml b/docs/xml/SkiaSharp.Views.Forms/SKPaintGLSurfaceEventArgs.xml index 75fddbb002..a7f5d368d4 100644 --- a/docs/xml/SkiaSharp.Views.Forms/SKPaintGLSurfaceEventArgs.xml +++ b/docs/xml/SkiaSharp.Views.Forms/SKPaintGLSurfaceEventArgs.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventArgs @@ -18,6 +19,26 @@ + + + + + Constructor + + SkiaSharp.Views.Forms + 1.68.0.0 + + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -29,7 +50,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use SKPaintGLSurfaceEventArgs(SKSurface, GRBackendRenderTarget, SKColorType, GRSurfaceOrigin) instead.") + + @@ -41,6 +68,84 @@ + + + + + Constructor + + SkiaSharp.Views.Forms + 1.68.0.0 + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.Forms + 1.68.0.0 + + + SkiaSharp.GRBackendRenderTarget + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.Forms + 1.68.0.0 + + + SkiaSharp.SKColorType + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.Forms + 1.68.0.0 + + + SkiaSharp.GRSurfaceOrigin + + + To be added. + To be added. + To be added. + + @@ -52,7 +157,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use BackendRenderTarget instead.") + + SkiaSharp.GRBackendRenderTargetDesc @@ -73,6 +184,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface diff --git a/docs/xml/SkiaSharp.Views.Forms/SKPaintSurfaceEventArgs.xml b/docs/xml/SkiaSharp.Views.Forms/SKPaintSurfaceEventArgs.xml index 695d61ce0d..a00352c182 100644 --- a/docs/xml/SkiaSharp.Views.Forms/SKPaintSurfaceEventArgs.xml +++ b/docs/xml/SkiaSharp.Views.Forms/SKPaintSurfaceEventArgs.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventArgs @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -52,6 +54,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageInfo @@ -73,6 +76,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface diff --git a/docs/xml/SkiaSharp.Views.Forms/SKPictureImageSource.xml b/docs/xml/SkiaSharp.Views.Forms/SKPictureImageSource.xml index 8e1c5427b4..9e96461c1b 100644 --- a/docs/xml/SkiaSharp.Views.Forms/SKPictureImageSource.xml +++ b/docs/xml/SkiaSharp.Views.Forms/SKPictureImageSource.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.ImageSource @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -47,6 +49,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Threading.Tasks.Task<System.Boolean> @@ -69,6 +72,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSizeI @@ -90,6 +94,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.BindableProperty @@ -110,6 +115,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -134,6 +140,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPicture @@ -159,6 +166,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPicture @@ -180,6 +188,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.BindableProperty diff --git a/docs/xml/SkiaSharp.Views.Forms/SKPixmapImageSource.xml b/docs/xml/SkiaSharp.Views.Forms/SKPixmapImageSource.xml index ffac6f5dec..08c73e279d 100644 --- a/docs/xml/SkiaSharp.Views.Forms/SKPixmapImageSource.xml +++ b/docs/xml/SkiaSharp.Views.Forms/SKPixmapImageSource.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.ImageSource @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -47,6 +49,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Threading.Tasks.Task<System.Boolean> @@ -69,6 +72,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -93,6 +97,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Forms.SKPixmapImageSource @@ -118,6 +123,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPixmap @@ -143,6 +149,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPixmap @@ -164,6 +171,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Xamarin.Forms.BindableProperty diff --git a/docs/xml/SkiaSharp.Views.Forms/SKTouchAction.xml b/docs/xml/SkiaSharp.Views.Forms/SKTouchAction.xml index 24a8106887..7721604d80 100644 --- a/docs/xml/SkiaSharp.Views.Forms/SKTouchAction.xml +++ b/docs/xml/SkiaSharp.Views.Forms/SKTouchAction.xml @@ -7,6 +7,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -26,6 +27,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Forms.SKTouchAction @@ -45,6 +47,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Forms.SKTouchAction @@ -64,6 +67,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Forms.SKTouchAction @@ -83,6 +87,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Forms.SKTouchAction @@ -102,6 +107,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Forms.SKTouchAction @@ -121,6 +127,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Forms.SKTouchAction diff --git a/docs/xml/SkiaSharp.Views.Forms/SKTouchDeviceType.xml b/docs/xml/SkiaSharp.Views.Forms/SKTouchDeviceType.xml index 0d97faa764..8dce2631a1 100644 --- a/docs/xml/SkiaSharp.Views.Forms/SKTouchDeviceType.xml +++ b/docs/xml/SkiaSharp.Views.Forms/SKTouchDeviceType.xml @@ -7,6 +7,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -26,6 +27,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Forms.SKTouchDeviceType @@ -45,6 +47,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Forms.SKTouchDeviceType @@ -64,6 +67,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Forms.SKTouchDeviceType diff --git a/docs/xml/SkiaSharp.Views.Forms/SKTouchEventArgs.xml b/docs/xml/SkiaSharp.Views.Forms/SKTouchEventArgs.xml index c20048a404..589cd014ef 100644 --- a/docs/xml/SkiaSharp.Views.Forms/SKTouchEventArgs.xml +++ b/docs/xml/SkiaSharp.Views.Forms/SKTouchEventArgs.xml @@ -7,6 +7,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventArgs @@ -27,6 +28,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -53,6 +55,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -83,6 +86,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Forms.SKTouchAction @@ -103,6 +107,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Forms.SKTouchDeviceType @@ -123,6 +128,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -143,6 +149,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int64 @@ -163,6 +170,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -183,6 +191,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -203,6 +212,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Forms.SKMouseButton @@ -223,6 +233,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.String diff --git a/docs/xml/SkiaSharp.Views.Gtk/SKWidget.xml b/docs/xml/SkiaSharp.Views.Gtk/SKWidget.xml index bf8a6e3e90..fef596ff69 100644 --- a/docs/xml/SkiaSharp.Views.Gtk/SKWidget.xml +++ b/docs/xml/SkiaSharp.Views.Gtk/SKWidget.xml @@ -5,13 +5,14 @@ SkiaSharp.Views.Gtk 1.60.0.0 + 1.68.0.0 Gtk.DrawingArea - + System.ComponentModel.ToolboxItem(true) @@ -28,6 +29,7 @@ SkiaSharp.Views.Gtk 1.60.0.0 + 1.68.0.0 @@ -43,6 +45,7 @@ SkiaSharp.Views.Gtk 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -61,6 +64,7 @@ SkiaSharp.Views.Gtk 1.60.0.0 + 1.68.0.0 System.Void @@ -79,6 +83,7 @@ SkiaSharp.Views.Gtk 1.60.0.0 + 1.68.0.0 System.Void @@ -97,6 +102,7 @@ SkiaSharp.Views.Gtk 1.60.0.0 + 1.68.0.0 System.Void @@ -118,6 +124,7 @@ SkiaSharp.Views.Gtk 1.60.0.0 + 1.68.0.0 System.Void @@ -136,6 +143,7 @@ SkiaSharp.Views.Gtk 1.60.0.0 + 1.68.0.0 System.Boolean @@ -158,6 +166,7 @@ SkiaSharp.Views.Gtk 1.60.0.0 + 1.68.0.0 System.Void @@ -198,9 +207,10 @@ SkiaSharp.Views.Gtk 1.60.0.0 + 1.68.0.0 - + System.ComponentModel.Category("Appearance") diff --git a/docs/xml/SkiaSharp.Views.Mac/AppleExtensions.xml b/docs/xml/SkiaSharp.Views.Mac/AppleExtensions.xml index 8944bcc89e..398aab7d5d 100644 --- a/docs/xml/SkiaSharp.Views.Mac/AppleExtensions.xml +++ b/docs/xml/SkiaSharp.Views.Mac/AppleExtensions.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Object @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGColor @@ -54,6 +56,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGImage @@ -79,6 +82,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGImage @@ -104,6 +108,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGImage @@ -129,6 +134,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGImage @@ -156,6 +162,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreImage.CIColor @@ -181,6 +188,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreImage.CIImage @@ -206,6 +214,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreImage.CIImage @@ -231,6 +240,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreImage.CIImage @@ -256,6 +266,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreImage.CIImage @@ -283,6 +294,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Foundation.NSData @@ -308,6 +320,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGPoint @@ -333,6 +346,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGRect @@ -358,6 +372,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGSize @@ -383,6 +398,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -408,6 +424,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -433,6 +450,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -458,6 +476,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -483,6 +502,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -508,6 +528,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -533,6 +554,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -558,6 +580,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -584,6 +607,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -610,6 +634,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -635,6 +660,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -660,6 +686,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize diff --git a/docs/xml/SkiaSharp.Views.Mac/Extensions.xml b/docs/xml/SkiaSharp.Views.Mac/Extensions.xml index 5fee0886fd..a75b43075f 100644 --- a/docs/xml/SkiaSharp.Views.Mac/Extensions.xml +++ b/docs/xml/SkiaSharp.Views.Mac/Extensions.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Object @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.PointF @@ -54,6 +56,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.Point @@ -79,6 +82,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.RectangleF @@ -104,6 +108,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.Rectangle @@ -129,6 +134,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.SizeF @@ -154,6 +160,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.Size @@ -179,6 +186,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointI @@ -204,6 +212,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -229,6 +238,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -254,6 +264,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -279,6 +290,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSizeI @@ -304,6 +316,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize diff --git a/docs/xml/SkiaSharp.Views.Mac/ISKCanvasLayerDelegate.xml b/docs/xml/SkiaSharp.Views.Mac/ISKCanvasLayerDelegate.xml index 12c264f9d5..32de31ea67 100644 --- a/docs/xml/SkiaSharp.Views.Mac/ISKCanvasLayerDelegate.xml +++ b/docs/xml/SkiaSharp.Views.Mac/ISKCanvasLayerDelegate.xml @@ -8,8 +8,14 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use SKCanvasLayer.PaintSurface instead.") + + Delegate interface for . @@ -26,6 +32,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp.Views.Mac/ISKGLLayerDelegate.xml b/docs/xml/SkiaSharp.Views.Mac/ISKGLLayerDelegate.xml index d5f209653d..8a39ef9378 100644 --- a/docs/xml/SkiaSharp.Views.Mac/ISKGLLayerDelegate.xml +++ b/docs/xml/SkiaSharp.Views.Mac/ISKGLLayerDelegate.xml @@ -8,8 +8,14 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use SKGLLayer.PaintSurface instead.") + + Delegate interface for . @@ -26,6 +32,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp.Views.Mac/MacExtensions.xml b/docs/xml/SkiaSharp.Views.Mac/MacExtensions.xml index 7af90cfcd3..ed07856db3 100644 --- a/docs/xml/SkiaSharp.Views.Mac/MacExtensions.xml +++ b/docs/xml/SkiaSharp.Views.Mac/MacExtensions.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Object @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 AppKit.NSColor @@ -54,6 +56,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 AppKit.NSImage @@ -79,6 +82,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 AppKit.NSImage @@ -104,6 +108,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 AppKit.NSImage @@ -129,6 +134,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 AppKit.NSImage @@ -156,6 +162,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -181,6 +188,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -206,6 +214,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -231,6 +240,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean diff --git a/docs/xml/SkiaSharp.Views.Mac/SKCanvasLayer.xml b/docs/xml/SkiaSharp.Views.Mac/SKCanvasLayer.xml index 5bd27e7443..a41b2e8a4b 100644 --- a/docs/xml/SkiaSharp.Views.Mac/SKCanvasLayer.xml +++ b/docs/xml/SkiaSharp.Views.Mac/SKCanvasLayer.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreAnimation.CALayer @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -47,6 +49,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -92,6 +96,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -116,7 +121,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use OnPaintSurface(SKPaintSurfaceEventArgs) instead.") + + System.Void @@ -160,6 +171,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -170,6 +182,27 @@ By default, when false, the canvas is resized to 1 canvas pixel per display pixel. When true, the canvas is resized to device independent pixels, and then stretched to fill the view. Although performance is improved and all objects are the same size on different display densities, blurring and pixelation may occur. + + + + + Method + + SkiaSharp.Views.Mac + 1.68.0.0 + + + System.Void + + + + + + To be added. + To be added. + To be added. + + @@ -181,6 +214,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventHandler<SkiaSharp.Views.Mac.SKPaintSurfaceEventArgs> @@ -218,7 +252,13 @@ myLayer.PaintSurface += (sender, e) => { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use PaintSurface instead.") + + SkiaSharp.Views.Mac.ISKCanvasLayerDelegate diff --git a/docs/xml/SkiaSharp.Views.Mac/SKCanvasView.xml b/docs/xml/SkiaSharp.Views.Mac/SKCanvasView.xml index 3d737ef26a..75a5b931f8 100644 --- a/docs/xml/SkiaSharp.Views.Mac/SKCanvasView.xml +++ b/docs/xml/SkiaSharp.Views.Mac/SKCanvasView.xml @@ -8,16 +8,17 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 AppKit.NSView - + Foundation.Register("SKCanvasView") - + System.ComponentModel.DesignTimeVisible(true) @@ -37,6 +38,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -55,6 +57,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -76,6 +79,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -97,6 +101,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -118,6 +123,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -139,6 +145,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -163,7 +170,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use OnPaintSurface(SKPaintSurfaceEventArgs) instead.") + + System.Void @@ -207,6 +220,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -231,6 +245,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -241,6 +256,27 @@ By default, when false, the canvas is resized to 1 canvas pixel per display pixel. When true, the canvas is resized to device independent pixels, and then stretched to fill the view. Although performance is improved and all objects are the same size on different display densities, blurring and pixelation may occur. + + + + + Method + + SkiaSharp.Views.Mac + 1.68.0.0 + + + System.Void + + + + + + To be added. + To be added. + To be added. + + @@ -252,6 +288,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventHandler<SkiaSharp.Views.Mac.SKPaintSurfaceEventArgs> diff --git a/docs/xml/SkiaSharp.Views.Mac/SKGLLayer.xml b/docs/xml/SkiaSharp.Views.Mac/SKGLLayer.xml index 6f7b601bbe..830e42da54 100644 --- a/docs/xml/SkiaSharp.Views.Mac/SKGLLayer.xml +++ b/docs/xml/SkiaSharp.Views.Mac/SKGLLayer.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreAnimation.CAOpenGLLayer @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -47,6 +49,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -98,7 +102,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use OnPaintSurface(SKPaintGLSurfaceEventArgs) instead.") + + System.Void @@ -140,6 +150,7 @@ SkiaSharp.Views.Mac 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRContext @@ -150,6 +161,27 @@ + + + + + Method + + SkiaSharp.Views.Mac + 1.68.0.0 + + + System.Void + + + + + + To be added. + To be added. + To be added. + + @@ -161,6 +193,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventHandler<SkiaSharp.Views.Mac.SKPaintGLSurfaceEventArgs> @@ -198,6 +231,7 @@ myLayer.PaintSurface += (sender, e) => { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -222,7 +256,13 @@ myLayer.PaintSurface += (sender, e) => { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use PaintSurface instead.") + + SkiaSharp.Views.Mac.ISKGLLayerDelegate diff --git a/docs/xml/SkiaSharp.Views.Mac/SKGLView.xml b/docs/xml/SkiaSharp.Views.Mac/SKGLView.xml index 1360edda4b..bc129a7b2d 100644 --- a/docs/xml/SkiaSharp.Views.Mac/SKGLView.xml +++ b/docs/xml/SkiaSharp.Views.Mac/SKGLView.xml @@ -8,16 +8,17 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 AppKit.NSOpenGLView - + Foundation.Register("SKGLView") - + System.ComponentModel.DesignTimeVisible(true) @@ -37,6 +38,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -55,6 +57,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -76,6 +79,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -97,6 +101,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -118,6 +123,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -139,7 +145,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use OnPaintSurface(SKPaintGLSurfaceEventArgs) instead.") + + System.Void @@ -183,6 +195,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -205,6 +218,7 @@ SkiaSharp.Views.Mac 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRContext @@ -215,6 +229,27 @@ + + + + + Method + + SkiaSharp.Views.Mac + 1.68.0.0 + + + System.Void + + + + + + To be added. + To be added. + To be added. + + @@ -226,6 +261,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventHandler<SkiaSharp.Views.Mac.SKPaintGLSurfaceEventArgs> @@ -263,6 +299,7 @@ myView.PaintSurface += (sender, e) => { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp.Views.Mac/SKPaintGLSurfaceEventArgs.xml b/docs/xml/SkiaSharp.Views.Mac/SKPaintGLSurfaceEventArgs.xml index af53197b59..1251b80ec4 100644 --- a/docs/xml/SkiaSharp.Views.Mac/SKPaintGLSurfaceEventArgs.xml +++ b/docs/xml/SkiaSharp.Views.Mac/SKPaintGLSurfaceEventArgs.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventArgs @@ -18,6 +19,26 @@ + + + + + Constructor + + SkiaSharp.Views.Mac + 1.68.0.0 + + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -29,7 +50,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use SKPaintGLSurfaceEventArgs(SKSurface, GRBackendRenderTarget, SKColorType, GRSurfaceOrigin) instead.") + + @@ -41,6 +68,84 @@ + + + + + Constructor + + SkiaSharp.Views.Mac + 1.68.0.0 + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.Mac + 1.68.0.0 + + + SkiaSharp.GRBackendRenderTarget + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.Mac + 1.68.0.0 + + + SkiaSharp.SKColorType + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.Mac + 1.68.0.0 + + + SkiaSharp.GRSurfaceOrigin + + + To be added. + To be added. + To be added. + + @@ -52,7 +157,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use BackendRenderTarget instead.") + + SkiaSharp.GRBackendRenderTargetDesc @@ -73,6 +184,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface diff --git a/docs/xml/SkiaSharp.Views.Mac/SKPaintSurfaceEventArgs.xml b/docs/xml/SkiaSharp.Views.Mac/SKPaintSurfaceEventArgs.xml index dc2a851d6b..e470832ade 100644 --- a/docs/xml/SkiaSharp.Views.Mac/SKPaintSurfaceEventArgs.xml +++ b/docs/xml/SkiaSharp.Views.Mac/SKPaintSurfaceEventArgs.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventArgs @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -52,6 +54,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageInfo @@ -73,6 +76,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface diff --git a/docs/xml/SkiaSharp.Views.Tizen/CustomRenderingView.xml b/docs/xml/SkiaSharp.Views.Tizen/CustomRenderingView.xml index 2645373266..8ed418c2b5 100644 --- a/docs/xml/SkiaSharp.Views.Tizen/CustomRenderingView.xml +++ b/docs/xml/SkiaSharp.Views.Tizen/CustomRenderingView.xml @@ -5,6 +5,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 ElmSharp.Widget @@ -23,6 +24,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 @@ -41,6 +43,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -59,6 +62,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Void @@ -77,6 +81,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -99,6 +104,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Void @@ -120,6 +126,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Void @@ -138,6 +145,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Void @@ -156,6 +164,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -173,6 +182,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSizeI @@ -192,6 +202,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Void @@ -210,6 +221,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Void @@ -228,6 +240,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Void @@ -246,6 +259,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Void @@ -264,6 +278,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Tizen.RenderingMode @@ -282,6 +297,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Boolean diff --git a/docs/xml/SkiaSharp.Views.Tizen/Extensions.xml b/docs/xml/SkiaSharp.Views.Tizen/Extensions.xml index 8698b3d279..4ccb589313 100644 --- a/docs/xml/SkiaSharp.Views.Tizen/Extensions.xml +++ b/docs/xml/SkiaSharp.Views.Tizen/Extensions.xml @@ -5,6 +5,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Object diff --git a/docs/xml/SkiaSharp.Views.Tizen/RenderingMode.xml b/docs/xml/SkiaSharp.Views.Tizen/RenderingMode.xml index 1dcb1e5bc1..2d60025367 100644 --- a/docs/xml/SkiaSharp.Views.Tizen/RenderingMode.xml +++ b/docs/xml/SkiaSharp.Views.Tizen/RenderingMode.xml @@ -5,6 +5,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Enum @@ -22,6 +23,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Tizen.RenderingMode @@ -39,6 +41,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Tizen.RenderingMode diff --git a/docs/xml/SkiaSharp.Views.Tizen/SKCanvasView.xml b/docs/xml/SkiaSharp.Views.Tizen/SKCanvasView.xml index fe04b3ceab..588ed2c889 100644 --- a/docs/xml/SkiaSharp.Views.Tizen/SKCanvasView.xml +++ b/docs/xml/SkiaSharp.Views.Tizen/SKCanvasView.xml @@ -5,6 +5,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Tizen.CustomRenderingView @@ -23,6 +24,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 @@ -41,6 +43,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSizeI @@ -60,6 +63,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Boolean @@ -78,6 +82,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Void @@ -96,6 +101,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Void @@ -136,6 +142,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.EventHandler<SkiaSharp.Views.Tizen.SKPaintSurfaceEventArgs> @@ -170,6 +177,7 @@ myCanvas.PaintSurface += (sender, e) => { SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Boolean diff --git a/docs/xml/SkiaSharp.Views.Tizen/SKGLSurfaceView.xml b/docs/xml/SkiaSharp.Views.Tizen/SKGLSurfaceView.xml index a29e175ec4..bc6f95fd3e 100644 --- a/docs/xml/SkiaSharp.Views.Tizen/SKGLSurfaceView.xml +++ b/docs/xml/SkiaSharp.Views.Tizen/SKGLSurfaceView.xml @@ -5,6 +5,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.Tizen.CustomRenderingView @@ -23,6 +24,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 @@ -41,6 +43,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Void @@ -59,6 +62,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Void @@ -80,6 +84,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Void @@ -98,6 +103,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Void @@ -116,6 +122,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSizeI @@ -135,6 +142,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 SkiaSharp.GRContext @@ -153,6 +161,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Void @@ -171,6 +180,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Void @@ -211,6 +221,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.EventHandler<SkiaSharp.Views.Tizen.SKPaintGLSurfaceEventArgs> @@ -245,6 +256,7 @@ myCanvas.PaintSurface += (sender, e) => { SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Boolean diff --git a/docs/xml/SkiaSharp.Views.Tizen/SKPaintGLSurfaceEventArgs.xml b/docs/xml/SkiaSharp.Views.Tizen/SKPaintGLSurfaceEventArgs.xml index 2a1bec4142..1cf14b8060 100644 --- a/docs/xml/SkiaSharp.Views.Tizen/SKPaintGLSurfaceEventArgs.xml +++ b/docs/xml/SkiaSharp.Views.Tizen/SKPaintGLSurfaceEventArgs.xml @@ -5,6 +5,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.EventArgs @@ -15,6 +16,26 @@ + + + + + Constructor + + SkiaSharp.Views.Tizen + 1.68.0.0 + + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -23,7 +44,13 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use SKPaintGLSurfaceEventArgs(SKSurface, GRBackendRenderTarget, SKColorType, GRSurfaceOrigin) instead.") + + @@ -35,6 +62,84 @@ + + + + + Constructor + + SkiaSharp.Views.Tizen + 1.68.0.0 + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.Tizen + 1.68.0.0 + + + SkiaSharp.GRBackendRenderTarget + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.Tizen + 1.68.0.0 + + + SkiaSharp.SKColorType + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.Tizen + 1.68.0.0 + + + SkiaSharp.GRSurfaceOrigin + + + To be added. + To be added. + To be added. + + @@ -43,7 +148,13 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use BackendRenderTarget instead.") + + SkiaSharp.GRBackendRenderTargetDesc @@ -61,6 +172,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface diff --git a/docs/xml/SkiaSharp.Views.Tizen/SKPaintSurfaceEventArgs.xml b/docs/xml/SkiaSharp.Views.Tizen/SKPaintSurfaceEventArgs.xml index 7ba91b0c07..ff04b7f933 100644 --- a/docs/xml/SkiaSharp.Views.Tizen/SKPaintSurfaceEventArgs.xml +++ b/docs/xml/SkiaSharp.Views.Tizen/SKPaintSurfaceEventArgs.xml @@ -5,6 +5,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.EventArgs @@ -23,6 +24,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 @@ -43,6 +45,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageInfo @@ -61,6 +64,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface diff --git a/docs/xml/SkiaSharp.Views.Tizen/ScalingInfo.xml b/docs/xml/SkiaSharp.Views.Tizen/ScalingInfo.xml index c03f98c557..b731d9ef47 100644 --- a/docs/xml/SkiaSharp.Views.Tizen/ScalingInfo.xml +++ b/docs/xml/SkiaSharp.Views.Tizen/ScalingInfo.xml @@ -5,6 +5,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Object @@ -23,6 +24,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Int32 @@ -41,6 +43,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Double @@ -63,6 +66,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.String @@ -81,6 +85,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Double @@ -99,6 +104,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Double diff --git a/docs/xml/SkiaSharp.Views.Tizen/TizenExtensions.xml b/docs/xml/SkiaSharp.Views.Tizen/TizenExtensions.xml index 1e1ff66b1a..b53b7a7574 100644 --- a/docs/xml/SkiaSharp.Views.Tizen/TizenExtensions.xml +++ b/docs/xml/SkiaSharp.Views.Tizen/TizenExtensions.xml @@ -5,6 +5,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 System.Object @@ -23,6 +24,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 ElmSharp.Color @@ -45,6 +47,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 ElmSharp.Point @@ -67,6 +70,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 ElmSharp.Point @@ -89,6 +93,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 ElmSharp.Rect @@ -111,6 +116,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 ElmSharp.Rect @@ -125,6 +131,50 @@ + + + + + Method + + SkiaSharp.Views.Tizen + 1.68.0.0 + + + ElmSharp.Size + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp.Views.Tizen + 1.68.0.0 + + + ElmSharp.Size + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -133,6 +183,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -155,6 +206,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -177,6 +229,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointI @@ -199,6 +252,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -221,6 +275,7 @@ SkiaSharp.Views.Tizen 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -235,5 +290,49 @@ + + + + + Method + + SkiaSharp.Views.Tizen + 1.68.0.0 + + + SkiaSharp.SKSize + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp.Views.Tizen + 1.68.0.0 + + + SkiaSharp.SKSizeI + + + + + + To be added. + To be added. + To be added. + To be added. + + diff --git a/docs/xml/SkiaSharp.Views.UWP/AngleSwapChainPanel.xml b/docs/xml/SkiaSharp.Views.UWP/AngleSwapChainPanel.xml index 7ea8ff6b87..356e38e6d4 100644 --- a/docs/xml/SkiaSharp.Views.UWP/AngleSwapChainPanel.xml +++ b/docs/xml/SkiaSharp.Views.UWP/AngleSwapChainPanel.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Windows.UI.Xaml.Controls.SwapChainPanel @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -58,7 +60,7 @@ - + Property @@ -68,6 +70,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Double @@ -131,6 +134,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -152,6 +156,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -173,6 +178,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -215,6 +221,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp.Views.UWP/Extensions.xml b/docs/xml/SkiaSharp.Views.UWP/Extensions.xml index b4b9059036..37ea8e447c 100644 --- a/docs/xml/SkiaSharp.Views.UWP/Extensions.xml +++ b/docs/xml/SkiaSharp.Views.UWP/Extensions.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Object diff --git a/docs/xml/SkiaSharp.Views.UWP/SKPaintGLSurfaceEventArgs.xml b/docs/xml/SkiaSharp.Views.UWP/SKPaintGLSurfaceEventArgs.xml index 75c5cfd7e7..dac92a2c0d 100644 --- a/docs/xml/SkiaSharp.Views.UWP/SKPaintGLSurfaceEventArgs.xml +++ b/docs/xml/SkiaSharp.Views.UWP/SKPaintGLSurfaceEventArgs.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventArgs @@ -18,6 +19,26 @@ + + + + + Constructor + + SkiaSharp.Views.UWP + 1.68.0.0 + + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -29,7 +50,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use SKPaintGLSurfaceEventArgs(SKSurface, GRBackendRenderTarget, SKColorType, GRSurfaceOrigin) instead.") + + @@ -41,6 +68,84 @@ + + + + + Constructor + + SkiaSharp.Views.UWP + 1.68.0.0 + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.UWP + 1.68.0.0 + + + SkiaSharp.GRBackendRenderTarget + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.UWP + 1.68.0.0 + + + SkiaSharp.SKColorType + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.UWP + 1.68.0.0 + + + SkiaSharp.GRSurfaceOrigin + + + To be added. + To be added. + To be added. + + @@ -52,7 +157,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use BackendRenderTarget instead.") + + SkiaSharp.GRBackendRenderTargetDesc @@ -73,6 +184,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface diff --git a/docs/xml/SkiaSharp.Views.UWP/SKPaintSurfaceEventArgs.xml b/docs/xml/SkiaSharp.Views.UWP/SKPaintSurfaceEventArgs.xml index 254000addd..5022652385 100644 --- a/docs/xml/SkiaSharp.Views.UWP/SKPaintSurfaceEventArgs.xml +++ b/docs/xml/SkiaSharp.Views.UWP/SKPaintSurfaceEventArgs.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventArgs @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -52,6 +54,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageInfo @@ -73,6 +76,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface diff --git a/docs/xml/SkiaSharp.Views.UWP/SKSwapChainPanel.xml b/docs/xml/SkiaSharp.Views.UWP/SKSwapChainPanel.xml index d1a98584aa..e634910c01 100644 --- a/docs/xml/SkiaSharp.Views.UWP/SKSwapChainPanel.xml +++ b/docs/xml/SkiaSharp.Views.UWP/SKSwapChainPanel.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.Views.UWP.AngleSwapChainPanel @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -72,6 +74,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -91,6 +94,7 @@ SkiaSharp.Views.UWP 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRContext @@ -112,6 +116,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -155,6 +160,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -179,6 +185,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventHandler<SkiaSharp.Views.UWP.SKPaintGLSurfaceEventArgs> diff --git a/docs/xml/SkiaSharp.Views.UWP/SKXamlCanvas.xml b/docs/xml/SkiaSharp.Views.UWP/SKXamlCanvas.xml index adacea695e..24b76f86cc 100644 --- a/docs/xml/SkiaSharp.Views.UWP/SKXamlCanvas.xml +++ b/docs/xml/SkiaSharp.Views.UWP/SKXamlCanvas.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Windows.UI.Xaml.Controls.Canvas @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -47,6 +49,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -67,6 +70,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Double @@ -88,6 +92,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -109,6 +114,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -130,6 +136,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -173,6 +180,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventHandler<SkiaSharp.Views.UWP.SKPaintSurfaceEventArgs> diff --git a/docs/xml/SkiaSharp.Views.UWP/UWPExtensions.xml b/docs/xml/SkiaSharp.Views.UWP/UWPExtensions.xml index af1ec33520..58d6145db5 100644 --- a/docs/xml/SkiaSharp.Views.UWP/UWPExtensions.xml +++ b/docs/xml/SkiaSharp.Views.UWP/UWPExtensions.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Object @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Windows.UI.Color @@ -54,6 +56,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Windows.Foundation.Point @@ -79,6 +82,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Windows.Foundation.Rect @@ -104,6 +108,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Windows.Foundation.Size @@ -129,6 +134,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -154,6 +160,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -179,6 +186,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -204,6 +212,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -231,6 +240,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -256,6 +266,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -281,6 +292,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -306,6 +318,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Windows.UI.Xaml.Media.Imaging.WriteableBitmap @@ -331,6 +344,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Windows.UI.Xaml.Media.Imaging.WriteableBitmap @@ -356,6 +370,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Windows.UI.Xaml.Media.Imaging.WriteableBitmap @@ -381,6 +396,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Windows.UI.Xaml.Media.Imaging.WriteableBitmap diff --git a/docs/xml/SkiaSharp.Views.WPF/SKElement.xml b/docs/xml/SkiaSharp.Views.WPF/SKElement.xml index 816412e390..45cc32abc4 100644 --- a/docs/xml/SkiaSharp.Views.WPF/SKElement.xml +++ b/docs/xml/SkiaSharp.Views.WPF/SKElement.xml @@ -8,16 +8,17 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Windows.FrameworkElement - + System.ComponentModel.DefaultEvent("PaintSurface") - + System.ComponentModel.DefaultProperty("Name") @@ -37,6 +38,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -55,18 +57,19 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 - + System.ComponentModel.Bindable(false) - + System.ComponentModel.Browsable(false) - + System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Hidden) - + System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never) @@ -90,6 +93,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -111,6 +115,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -135,6 +140,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -159,6 +165,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -183,9 +190,10 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 - + System.ComponentModel.Category("Appearance") diff --git a/docs/xml/SkiaSharp.Views.WPF/WPFExtensions.xml b/docs/xml/SkiaSharp.Views.WPF/WPFExtensions.xml index 7983535423..20f833fcad 100644 --- a/docs/xml/SkiaSharp.Views.WPF/WPFExtensions.xml +++ b/docs/xml/SkiaSharp.Views.WPF/WPFExtensions.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Object @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Windows.Media.Color @@ -54,6 +56,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Windows.Point @@ -79,6 +82,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Windows.Rect @@ -104,6 +108,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Windows.Size @@ -129,6 +134,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -154,6 +160,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -179,6 +186,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -204,6 +212,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -230,6 +239,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -255,6 +265,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -280,6 +291,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -305,6 +317,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Windows.Media.Imaging.WriteableBitmap @@ -330,6 +343,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Windows.Media.Imaging.WriteableBitmap @@ -355,6 +369,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Windows.Media.Imaging.WriteableBitmap @@ -380,6 +395,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Windows.Media.Imaging.WriteableBitmap diff --git a/docs/xml/SkiaSharp.Views.iOS/AppleExtensions.xml b/docs/xml/SkiaSharp.Views.iOS/AppleExtensions.xml index 12b0550a9b..0c151a2906 100644 --- a/docs/xml/SkiaSharp.Views.iOS/AppleExtensions.xml +++ b/docs/xml/SkiaSharp.Views.iOS/AppleExtensions.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Object @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGColor @@ -54,6 +56,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGImage @@ -79,6 +82,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGImage @@ -104,6 +108,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGImage @@ -129,6 +134,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGImage @@ -156,6 +162,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreImage.CIColor @@ -181,6 +188,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreImage.CIImage @@ -206,6 +214,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreImage.CIImage @@ -231,6 +240,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreImage.CIImage @@ -256,6 +266,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreImage.CIImage @@ -283,6 +294,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Foundation.NSData @@ -308,6 +320,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGPoint @@ -333,6 +346,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGRect @@ -358,6 +372,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGSize @@ -383,6 +398,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -408,6 +424,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -433,6 +450,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -458,6 +476,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -483,6 +502,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -508,6 +528,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -533,6 +554,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -558,6 +580,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -584,6 +607,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -610,6 +634,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -635,6 +660,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -660,6 +686,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize diff --git a/docs/xml/SkiaSharp.Views.iOS/Extensions.xml b/docs/xml/SkiaSharp.Views.iOS/Extensions.xml index 13b1a25aee..d9b3acf01f 100644 --- a/docs/xml/SkiaSharp.Views.iOS/Extensions.xml +++ b/docs/xml/SkiaSharp.Views.iOS/Extensions.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Object @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.PointF @@ -54,6 +56,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.Point @@ -79,6 +82,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.RectangleF @@ -104,6 +108,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.Rectangle @@ -129,6 +134,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.SizeF @@ -154,6 +160,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.Size @@ -179,6 +186,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointI @@ -204,6 +212,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -229,6 +238,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -254,6 +264,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -279,6 +290,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSizeI @@ -304,6 +316,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize diff --git a/docs/xml/SkiaSharp.Views.iOS/ISKCanvasLayerDelegate.xml b/docs/xml/SkiaSharp.Views.iOS/ISKCanvasLayerDelegate.xml index eda57e5f09..52fa844858 100644 --- a/docs/xml/SkiaSharp.Views.iOS/ISKCanvasLayerDelegate.xml +++ b/docs/xml/SkiaSharp.Views.iOS/ISKCanvasLayerDelegate.xml @@ -8,8 +8,14 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use SKCanvasLayer.PaintSurface instead.") + + Delegate interface for . @@ -26,6 +32,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp.Views.iOS/ISKGLLayerDelegate.xml b/docs/xml/SkiaSharp.Views.iOS/ISKGLLayerDelegate.xml index 04b3e8c70b..f0138d49be 100644 --- a/docs/xml/SkiaSharp.Views.iOS/ISKGLLayerDelegate.xml +++ b/docs/xml/SkiaSharp.Views.iOS/ISKGLLayerDelegate.xml @@ -8,8 +8,14 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use SKGLLayer.PaintSurface instead.") + + Delegate interface for . @@ -26,6 +32,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp.Views.iOS/SKCanvasLayer.xml b/docs/xml/SkiaSharp.Views.iOS/SKCanvasLayer.xml index cdc9912d26..5999416e74 100644 --- a/docs/xml/SkiaSharp.Views.iOS/SKCanvasLayer.xml +++ b/docs/xml/SkiaSharp.Views.iOS/SKCanvasLayer.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreAnimation.CALayer @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -47,6 +49,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -92,6 +96,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -116,7 +121,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use OnPaintSurface(SKPaintSurfaceEventArgs) instead.") + + System.Void @@ -160,6 +171,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -170,6 +182,27 @@ By default, when false, the canvas is resized to 1 canvas pixel per display pixel. When true, the canvas is resized to device independent pixels, and then stretched to fill the view. Although performance is improved and all objects are the same size on different display densities, blurring and pixelation may occur. + + + + + Method + + SkiaSharp.Views.iOS + 1.68.0.0 + + + System.Void + + + + + + To be added. + To be added. + To be added. + + @@ -181,6 +214,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventHandler<SkiaSharp.Views.iOS.SKPaintSurfaceEventArgs> @@ -218,7 +252,13 @@ myLayer.PaintSurface += (sender, e) => { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use PaintSurface instead.") + + SkiaSharp.Views.iOS.ISKCanvasLayerDelegate diff --git a/docs/xml/SkiaSharp.Views.iOS/SKCanvasView.xml b/docs/xml/SkiaSharp.Views.iOS/SKCanvasView.xml index 56449c6276..6c6631e6c0 100644 --- a/docs/xml/SkiaSharp.Views.iOS/SKCanvasView.xml +++ b/docs/xml/SkiaSharp.Views.iOS/SKCanvasView.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 UIKit.UIView @@ -21,10 +22,10 @@ - + Foundation.Register("SKCanvasView") - + System.ComponentModel.DesignTimeVisible(true) @@ -44,6 +45,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -62,6 +64,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -83,6 +86,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -104,6 +108,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -125,6 +130,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -146,6 +152,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -170,6 +177,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -194,7 +202,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use OnPaintSurface(SKPaintSurfaceEventArgs) instead.") + + System.Void @@ -238,6 +252,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -259,6 +274,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -269,6 +285,27 @@ + + + + + Method + + SkiaSharp.Views.iOS + 1.68.0.0 + + + System.Void + + + + + + To be added. + To be added. + To be added. + + @@ -280,6 +317,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventHandler<SkiaSharp.Views.iOS.SKPaintSurfaceEventArgs> diff --git a/docs/xml/SkiaSharp.Views.iOS/SKGLLayer.xml b/docs/xml/SkiaSharp.Views.iOS/SKGLLayer.xml index 12e8936011..2cf050cccf 100644 --- a/docs/xml/SkiaSharp.Views.iOS/SKGLLayer.xml +++ b/docs/xml/SkiaSharp.Views.iOS/SKGLLayer.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreAnimation.CAEAGLLayer @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -47,6 +49,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -92,7 +96,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use OnPaintSurface(SKPaintGLSurfaceEventArgs) instead.") + + System.Void @@ -137,6 +147,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGRect @@ -156,6 +167,7 @@ SkiaSharp.Views.iOS 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRContext @@ -166,6 +178,27 @@ + + + + + Method + + SkiaSharp.Views.iOS + 1.68.0.0 + + + System.Void + + + + + + To be added. + To be added. + To be added. + + @@ -177,6 +210,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventHandler<SkiaSharp.Views.iOS.SKPaintGLSurfaceEventArgs> @@ -214,6 +248,7 @@ myLayer.PaintSurface += (sender, e) => { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -235,7 +270,13 @@ myLayer.PaintSurface += (sender, e) => { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use PaintSurface instead.") + + SkiaSharp.Views.iOS.ISKGLLayerDelegate diff --git a/docs/xml/SkiaSharp.Views.iOS/SKGLView.xml b/docs/xml/SkiaSharp.Views.iOS/SKGLView.xml index 65882bd545..6f0cb64191 100644 --- a/docs/xml/SkiaSharp.Views.iOS/SKGLView.xml +++ b/docs/xml/SkiaSharp.Views.iOS/SKGLView.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 GLKit.GLKView @@ -24,10 +25,10 @@ - + Foundation.Register("SKGLView") - + System.ComponentModel.DesignTimeVisible(true) @@ -47,6 +48,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -65,6 +67,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -86,6 +89,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -107,6 +111,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -128,6 +133,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -152,6 +158,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -178,7 +185,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use OnPaintSurface(SKPaintGLSurfaceEventArgs) instead.") + + System.Void @@ -222,6 +235,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGRect @@ -241,6 +255,7 @@ SkiaSharp.Views.iOS 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRContext @@ -251,6 +266,27 @@ + + + + + Method + + SkiaSharp.Views.iOS + 1.68.0.0 + + + System.Void + + + + + + To be added. + To be added. + To be added. + + @@ -262,6 +298,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventHandler<SkiaSharp.Views.iOS.SKPaintGLSurfaceEventArgs> diff --git a/docs/xml/SkiaSharp.Views.iOS/SKPaintGLSurfaceEventArgs.xml b/docs/xml/SkiaSharp.Views.iOS/SKPaintGLSurfaceEventArgs.xml index c93d8f57a8..ba9a4d7e55 100644 --- a/docs/xml/SkiaSharp.Views.iOS/SKPaintGLSurfaceEventArgs.xml +++ b/docs/xml/SkiaSharp.Views.iOS/SKPaintGLSurfaceEventArgs.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventArgs @@ -18,6 +19,26 @@ + + + + + Constructor + + SkiaSharp.Views.iOS + 1.68.0.0 + + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -29,7 +50,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use SKPaintGLSurfaceEventArgs(SKSurface, GRBackendRenderTarget, SKColorType, GRSurfaceOrigin) instead.") + + @@ -41,6 +68,84 @@ + + + + + Constructor + + SkiaSharp.Views.iOS + 1.68.0.0 + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.iOS + 1.68.0.0 + + + SkiaSharp.GRBackendRenderTarget + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.iOS + 1.68.0.0 + + + SkiaSharp.SKColorType + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.iOS + 1.68.0.0 + + + SkiaSharp.GRSurfaceOrigin + + + To be added. + To be added. + To be added. + + @@ -52,7 +157,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use BackendRenderTarget instead.") + + SkiaSharp.GRBackendRenderTargetDesc @@ -73,6 +184,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface diff --git a/docs/xml/SkiaSharp.Views.iOS/SKPaintSurfaceEventArgs.xml b/docs/xml/SkiaSharp.Views.iOS/SKPaintSurfaceEventArgs.xml index e12bfea1dd..378aad3580 100644 --- a/docs/xml/SkiaSharp.Views.iOS/SKPaintSurfaceEventArgs.xml +++ b/docs/xml/SkiaSharp.Views.iOS/SKPaintSurfaceEventArgs.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventArgs @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -52,6 +54,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageInfo @@ -73,6 +76,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface diff --git a/docs/xml/SkiaSharp.Views.iOS/iOSExtensions.xml b/docs/xml/SkiaSharp.Views.iOS/iOSExtensions.xml index c4842dd546..317b8ce0a1 100644 --- a/docs/xml/SkiaSharp.Views.iOS/iOSExtensions.xml +++ b/docs/xml/SkiaSharp.Views.iOS/iOSExtensions.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Object @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -54,6 +56,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -79,6 +82,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -104,6 +108,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -131,6 +136,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 UIKit.UIColor @@ -156,6 +162,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 UIKit.UIImage @@ -181,6 +188,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 UIKit.UIImage @@ -206,6 +214,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 UIKit.UIImage @@ -231,6 +240,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 UIKit.UIImage @@ -255,6 +265,7 @@ SkiaSharp.Views.iOS 1.60.0.0 + 1.68.0.0 UIKit.UIImage @@ -281,6 +292,7 @@ SkiaSharp.Views.iOS 1.60.0.0 + 1.68.0.0 UIKit.UIImage @@ -307,6 +319,7 @@ SkiaSharp.Views.iOS 1.60.0.0 + 1.68.0.0 UIKit.UIImage diff --git a/docs/xml/SkiaSharp.Views.tvOS/AppleExtensions.xml b/docs/xml/SkiaSharp.Views.tvOS/AppleExtensions.xml index 56d0317aab..9115755e91 100644 --- a/docs/xml/SkiaSharp.Views.tvOS/AppleExtensions.xml +++ b/docs/xml/SkiaSharp.Views.tvOS/AppleExtensions.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Object @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGColor @@ -54,6 +56,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGImage @@ -79,6 +82,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGImage @@ -104,6 +108,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGImage @@ -129,6 +134,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGImage @@ -156,6 +162,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreImage.CIColor @@ -181,6 +188,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreImage.CIImage @@ -206,6 +214,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreImage.CIImage @@ -231,6 +240,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreImage.CIImage @@ -256,6 +266,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreImage.CIImage @@ -283,6 +294,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 Foundation.NSData @@ -308,6 +320,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGPoint @@ -333,6 +346,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGRect @@ -358,6 +372,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGSize @@ -383,6 +398,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -408,6 +424,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -433,6 +450,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -458,6 +476,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -483,6 +502,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -508,6 +528,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -533,6 +554,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -558,6 +580,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -584,6 +607,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -610,6 +634,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -635,6 +660,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -660,6 +686,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize diff --git a/docs/xml/SkiaSharp.Views.tvOS/Extensions.xml b/docs/xml/SkiaSharp.Views.tvOS/Extensions.xml index 37d54df1c8..8622b1f0f4 100644 --- a/docs/xml/SkiaSharp.Views.tvOS/Extensions.xml +++ b/docs/xml/SkiaSharp.Views.tvOS/Extensions.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Object @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.PointF @@ -54,6 +56,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.Point @@ -79,6 +82,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.RectangleF @@ -104,6 +108,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.Rectangle @@ -129,6 +134,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.SizeF @@ -154,6 +160,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Drawing.Size @@ -179,6 +186,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointI @@ -204,6 +212,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -229,6 +238,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -254,6 +264,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -279,6 +290,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSizeI @@ -304,6 +316,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize diff --git a/docs/xml/SkiaSharp.Views.tvOS/ISKCanvasLayerDelegate.xml b/docs/xml/SkiaSharp.Views.tvOS/ISKCanvasLayerDelegate.xml index 016a2a0677..36f56b2a5e 100644 --- a/docs/xml/SkiaSharp.Views.tvOS/ISKCanvasLayerDelegate.xml +++ b/docs/xml/SkiaSharp.Views.tvOS/ISKCanvasLayerDelegate.xml @@ -8,8 +8,14 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use SKCanvasLayer.PaintSurface instead.") + + Delegate interface for . @@ -26,6 +32,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp.Views.tvOS/ISKGLLayerDelegate.xml b/docs/xml/SkiaSharp.Views.tvOS/ISKGLLayerDelegate.xml index 507f7ba7d4..f9db9f7542 100644 --- a/docs/xml/SkiaSharp.Views.tvOS/ISKGLLayerDelegate.xml +++ b/docs/xml/SkiaSharp.Views.tvOS/ISKGLLayerDelegate.xml @@ -8,8 +8,14 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use SKGLLayer.PaintSurface instead.") + + Delegate interface for . @@ -26,6 +32,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp.Views.tvOS/SKCanvasLayer.xml b/docs/xml/SkiaSharp.Views.tvOS/SKCanvasLayer.xml index 09495f6bbc..b6e7f2e130 100644 --- a/docs/xml/SkiaSharp.Views.tvOS/SKCanvasLayer.xml +++ b/docs/xml/SkiaSharp.Views.tvOS/SKCanvasLayer.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreAnimation.CALayer @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -47,6 +49,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -92,6 +96,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -116,7 +121,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use OnPaintSurface(SKPaintSurfaceEventArgs) instead.") + + System.Void @@ -160,6 +171,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -170,6 +182,27 @@ By default, when false, the canvas is resized to 1 canvas pixel per display pixel. When true, the canvas is resized to device independent pixels, and then stretched to fill the view. Although performance is improved and all objects are the same size on different display densities, blurring and pixelation may occur. + + + + + Method + + SkiaSharp.Views.tvOS + 1.68.0.0 + + + System.Void + + + + + + To be added. + To be added. + To be added. + + @@ -181,6 +214,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventHandler<SkiaSharp.Views.tvOS.SKPaintSurfaceEventArgs> @@ -218,7 +252,13 @@ myLayer.PaintSurface += (sender, e) => { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use PaintSurface instead.") + + SkiaSharp.Views.tvOS.ISKCanvasLayerDelegate diff --git a/docs/xml/SkiaSharp.Views.tvOS/SKCanvasView.xml b/docs/xml/SkiaSharp.Views.tvOS/SKCanvasView.xml index b1ec7a4732..5119cb0629 100644 --- a/docs/xml/SkiaSharp.Views.tvOS/SKCanvasView.xml +++ b/docs/xml/SkiaSharp.Views.tvOS/SKCanvasView.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 UIKit.UIView @@ -21,10 +22,10 @@ - + Foundation.Register("SKCanvasView") - + System.ComponentModel.DesignTimeVisible(true) @@ -44,6 +45,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -62,6 +64,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -83,6 +86,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -104,6 +108,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -125,6 +130,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -146,6 +152,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -170,6 +177,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -194,7 +202,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use OnPaintSurface(SKPaintSurfaceEventArgs) instead.") + + System.Void @@ -238,6 +252,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -259,6 +274,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -269,6 +285,27 @@ + + + + + Method + + SkiaSharp.Views.tvOS + 1.68.0.0 + + + System.Void + + + + + + To be added. + To be added. + To be added. + + @@ -280,6 +317,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventHandler<SkiaSharp.Views.tvOS.SKPaintSurfaceEventArgs> diff --git a/docs/xml/SkiaSharp.Views.tvOS/SKGLLayer.xml b/docs/xml/SkiaSharp.Views.tvOS/SKGLLayer.xml index ee6ddbbbdd..df16ee53de 100644 --- a/docs/xml/SkiaSharp.Views.tvOS/SKGLLayer.xml +++ b/docs/xml/SkiaSharp.Views.tvOS/SKGLLayer.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreAnimation.CAEAGLLayer @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -47,6 +49,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -92,7 +96,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use OnPaintSurface(SKPaintGLSurfaceEventArgs) instead.") + + System.Void @@ -137,6 +147,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGRect @@ -156,6 +167,7 @@ SkiaSharp.Views.tvOS 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRContext @@ -166,6 +178,27 @@ + + + + + Method + + SkiaSharp.Views.tvOS + 1.68.0.0 + + + System.Void + + + + + + To be added. + To be added. + To be added. + + @@ -177,6 +210,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventHandler<SkiaSharp.Views.tvOS.SKPaintGLSurfaceEventArgs> @@ -214,6 +248,7 @@ myLayer.PaintSurface += (sender, e) => { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -235,7 +270,13 @@ myLayer.PaintSurface += (sender, e) => { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use PaintSurface instead.") + + SkiaSharp.Views.tvOS.ISKGLLayerDelegate diff --git a/docs/xml/SkiaSharp.Views.tvOS/SKGLView.xml b/docs/xml/SkiaSharp.Views.tvOS/SKGLView.xml index d7a400f83c..42297bea74 100644 --- a/docs/xml/SkiaSharp.Views.tvOS/SKGLView.xml +++ b/docs/xml/SkiaSharp.Views.tvOS/SKGLView.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 GLKit.GLKView @@ -24,10 +25,10 @@ - + Foundation.Register("SKGLView") - + System.ComponentModel.DesignTimeVisible(true) @@ -47,6 +48,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -65,6 +67,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -86,6 +89,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -107,6 +111,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -128,6 +133,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -152,6 +158,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -178,7 +185,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use OnPaintSurface(SKPaintGLSurfaceEventArgs) instead.") + + System.Void @@ -222,6 +235,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 CoreGraphics.CGRect @@ -241,6 +255,7 @@ SkiaSharp.Views.tvOS 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRContext @@ -251,6 +266,27 @@ + + + + + Method + + SkiaSharp.Views.tvOS + 1.68.0.0 + + + System.Void + + + + + + To be added. + To be added. + To be added. + + @@ -262,6 +298,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventHandler<SkiaSharp.Views.tvOS.SKPaintGLSurfaceEventArgs> diff --git a/docs/xml/SkiaSharp.Views.tvOS/SKPaintGLSurfaceEventArgs.xml b/docs/xml/SkiaSharp.Views.tvOS/SKPaintGLSurfaceEventArgs.xml index c506153fba..895078a987 100644 --- a/docs/xml/SkiaSharp.Views.tvOS/SKPaintGLSurfaceEventArgs.xml +++ b/docs/xml/SkiaSharp.Views.tvOS/SKPaintGLSurfaceEventArgs.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventArgs @@ -18,6 +19,26 @@ + + + + + Constructor + + SkiaSharp.Views.tvOS + 1.68.0.0 + + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -29,7 +50,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use SKPaintGLSurfaceEventArgs(SKSurface, GRBackendRenderTarget, SKColorType, GRSurfaceOrigin) instead.") + + @@ -41,6 +68,84 @@ + + + + + Constructor + + SkiaSharp.Views.tvOS + 1.68.0.0 + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.tvOS + 1.68.0.0 + + + SkiaSharp.GRBackendRenderTarget + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.tvOS + 1.68.0.0 + + + SkiaSharp.SKColorType + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp.Views.tvOS + 1.68.0.0 + + + SkiaSharp.GRSurfaceOrigin + + + To be added. + To be added. + To be added. + + @@ -52,7 +157,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use BackendRenderTarget instead.") + + SkiaSharp.GRBackendRenderTargetDesc @@ -73,6 +184,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface diff --git a/docs/xml/SkiaSharp.Views.tvOS/SKPaintSurfaceEventArgs.xml b/docs/xml/SkiaSharp.Views.tvOS/SKPaintSurfaceEventArgs.xml index 3543a49253..cc7babe1ab 100644 --- a/docs/xml/SkiaSharp.Views.tvOS/SKPaintSurfaceEventArgs.xml +++ b/docs/xml/SkiaSharp.Views.tvOS/SKPaintSurfaceEventArgs.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.EventArgs @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -52,6 +54,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageInfo @@ -73,6 +76,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface diff --git a/docs/xml/SkiaSharp.Views.tvOS/iOSExtensions.xml b/docs/xml/SkiaSharp.Views.tvOS/iOSExtensions.xml index 04f799f7dc..6eb6f77fc5 100644 --- a/docs/xml/SkiaSharp.Views.tvOS/iOSExtensions.xml +++ b/docs/xml/SkiaSharp.Views.tvOS/iOSExtensions.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Object @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -54,6 +56,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -79,6 +82,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -104,6 +108,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -131,6 +136,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 UIKit.UIColor @@ -156,6 +162,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 UIKit.UIImage @@ -181,6 +188,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 UIKit.UIImage @@ -206,6 +214,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 UIKit.UIImage @@ -231,6 +240,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 UIKit.UIImage @@ -255,6 +265,7 @@ SkiaSharp.Views.tvOS 1.60.0.0 + 1.68.0.0 UIKit.UIImage @@ -281,6 +292,7 @@ SkiaSharp.Views.tvOS 1.60.0.0 + 1.68.0.0 UIKit.UIImage @@ -307,6 +319,7 @@ SkiaSharp.Views.tvOS 1.60.0.0 + 1.68.0.0 UIKit.UIImage diff --git a/docs/xml/SkiaSharp.Views.watchOS/AppleExtensions.xml b/docs/xml/SkiaSharp.Views.watchOS/AppleExtensions.xml index a2e9ccd365..e33d799cdc 100644 --- a/docs/xml/SkiaSharp.Views.watchOS/AppleExtensions.xml +++ b/docs/xml/SkiaSharp.Views.watchOS/AppleExtensions.xml @@ -5,6 +5,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 System.Object @@ -23,6 +24,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 CoreGraphics.CGColor @@ -45,6 +47,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 CoreGraphics.CGImage @@ -67,6 +70,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 CoreGraphics.CGImage @@ -89,6 +93,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 CoreGraphics.CGImage @@ -111,6 +116,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 CoreGraphics.CGImage @@ -135,6 +141,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 Foundation.NSData @@ -157,6 +164,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 CoreGraphics.CGPoint @@ -179,6 +187,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 CoreGraphics.CGRect @@ -201,6 +210,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 CoreGraphics.CGSize @@ -223,6 +233,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -245,6 +256,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -267,6 +279,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -289,6 +302,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -311,6 +325,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 System.Void @@ -334,6 +349,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -356,6 +372,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -378,6 +395,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize diff --git a/docs/xml/SkiaSharp.Views.watchOS/Extensions.xml b/docs/xml/SkiaSharp.Views.watchOS/Extensions.xml index 4d8619fab4..f8542f55d4 100644 --- a/docs/xml/SkiaSharp.Views.watchOS/Extensions.xml +++ b/docs/xml/SkiaSharp.Views.watchOS/Extensions.xml @@ -5,6 +5,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 System.Object @@ -23,6 +24,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 System.Drawing.PointF @@ -45,6 +47,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 System.Drawing.Point @@ -67,6 +70,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 System.Drawing.RectangleF @@ -89,6 +93,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 System.Drawing.Rectangle @@ -111,6 +116,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 System.Drawing.SizeF @@ -133,6 +139,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 System.Drawing.Size @@ -155,6 +162,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointI @@ -177,6 +185,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -199,6 +208,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -221,6 +231,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -243,6 +254,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSizeI @@ -265,6 +277,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize diff --git a/docs/xml/SkiaSharp.Views.watchOS/ISKCanvasLayerDelegate.xml b/docs/xml/SkiaSharp.Views.watchOS/ISKCanvasLayerDelegate.xml index 4c2323c4dc..d8297b2a82 100644 --- a/docs/xml/SkiaSharp.Views.watchOS/ISKCanvasLayerDelegate.xml +++ b/docs/xml/SkiaSharp.Views.watchOS/ISKCanvasLayerDelegate.xml @@ -5,8 +5,14 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use SKCanvasLayer.PaintSurface instead.") + + Delegate interface for . @@ -20,6 +26,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp.Views.watchOS/SKPaintSurfaceEventArgs.xml b/docs/xml/SkiaSharp.Views.watchOS/SKPaintSurfaceEventArgs.xml index dcfc63a780..b379354bfd 100644 --- a/docs/xml/SkiaSharp.Views.watchOS/SKPaintSurfaceEventArgs.xml +++ b/docs/xml/SkiaSharp.Views.watchOS/SKPaintSurfaceEventArgs.xml @@ -5,6 +5,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 System.EventArgs @@ -23,6 +24,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 @@ -43,6 +45,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageInfo @@ -61,6 +64,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface diff --git a/docs/xml/SkiaSharp.Views.watchOS/iOSExtensions.xml b/docs/xml/SkiaSharp.Views.watchOS/iOSExtensions.xml index 7323fa1194..edfd8f9ca2 100644 --- a/docs/xml/SkiaSharp.Views.watchOS/iOSExtensions.xml +++ b/docs/xml/SkiaSharp.Views.watchOS/iOSExtensions.xml @@ -5,6 +5,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 System.Object @@ -23,6 +24,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -45,6 +47,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -67,6 +70,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -89,6 +93,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 System.Boolean @@ -113,6 +118,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 UIKit.UIColor @@ -135,6 +141,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 UIKit.UIImage @@ -157,6 +164,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 UIKit.UIImage @@ -179,6 +187,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 UIKit.UIImage @@ -201,6 +210,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 UIKit.UIImage @@ -225,6 +235,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 UIKit.UIImage @@ -251,6 +262,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 UIKit.UIImage @@ -277,6 +289,7 @@ SkiaSharp.Views.watchOS 1.60.0.0 + 1.68.0.0 UIKit.UIImage diff --git a/docs/xml/SkiaSharp/GRBackend.xml b/docs/xml/SkiaSharp/GRBackend.xml index 306784fba7..c87a096ccc 100644 --- a/docs/xml/SkiaSharp/GRBackend.xml +++ b/docs/xml/SkiaSharp/GRBackend.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -17,9 +18,26 @@ + + + + + Field + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.GRBackend + + 0 + + To be added. + + - + Field @@ -28,18 +46,19 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRBackend - 0 + 1 Use the OpenGL 3D backend. - + Field @@ -48,11 +67,12 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRBackend - 1 + 2 Use the Vulkan 3D backend. (not yet supported) diff --git a/docs/xml/SkiaSharp/GRBackendRenderTarget.xml b/docs/xml/SkiaSharp/GRBackendRenderTarget.xml new file mode 100644 index 0000000000..5e2a39d612 --- /dev/null +++ b/docs/xml/SkiaSharp/GRBackendRenderTarget.xml @@ -0,0 +1,276 @@ + + + + + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKObject + + + + To be added. + To be added. + + + + + + + Constructor + + SkiaSharp + 1.68.0.0 + + + + System.Obsolete("Use GRBackendRenderTarget(int, int, int, int, GRGlFramebufferInfo) instead.") + + + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + Constructor + + SkiaSharp + 1.68.0.0 + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.GRBackend + + + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Void + + + + + + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.GRGlFramebufferInfo + + + + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + System.Int32 + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKRectI + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + System.Int32 + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSizeI + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + System.Int32 + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + System.Int32 + + + To be added. + To be added. + To be added. + + + + diff --git a/docs/xml/SkiaSharp/GRBackendRenderTargetDesc.xml b/docs/xml/SkiaSharp/GRBackendRenderTargetDesc.xml index 28d6614c97..a9cd6aba3a 100644 --- a/docs/xml/SkiaSharp/GRBackendRenderTargetDesc.xml +++ b/docs/xml/SkiaSharp/GRBackendRenderTargetDesc.xml @@ -8,11 +8,17 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType + + + System.Obsolete("Use GRBackendRenderTarget instead.") + + Wrap an existing render target created by the client in the 3D API with an underlying GRRenderTarget object. @@ -41,6 +47,7 @@ doesn't require this (OpenGL). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRPixelConfig @@ -62,6 +69,7 @@ doesn't require this (OpenGL). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -83,6 +91,7 @@ doesn't require this (OpenGL). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRSurfaceOrigin @@ -104,6 +113,7 @@ doesn't require this (OpenGL). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -125,6 +135,7 @@ doesn't require this (OpenGL). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -146,6 +157,7 @@ doesn't require this (OpenGL). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -167,6 +179,7 @@ doesn't require this (OpenGL). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSizeI @@ -188,6 +201,7 @@ doesn't require this (OpenGL). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -209,6 +223,7 @@ doesn't require this (OpenGL). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 diff --git a/docs/xml/SkiaSharp/GRBackendState.xml b/docs/xml/SkiaSharp/GRBackendState.xml index 2b282fcfae..4503ffa629 100644 --- a/docs/xml/SkiaSharp/GRBackendState.xml +++ b/docs/xml/SkiaSharp/GRBackendState.xml @@ -8,12 +8,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum - + System.Flags @@ -33,6 +34,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRBackendState @@ -51,6 +53,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRBackendState diff --git a/docs/xml/SkiaSharp/GRBackendTexture.xml b/docs/xml/SkiaSharp/GRBackendTexture.xml new file mode 100644 index 0000000000..e22f95347b --- /dev/null +++ b/docs/xml/SkiaSharp/GRBackendTexture.xml @@ -0,0 +1,241 @@ + + + + + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKObject + + + + To be added. + To be added. + + + + + + + Constructor + + SkiaSharp + 1.68.0.0 + + + + System.Obsolete("Use GRBackendTexture(int, int, bool, GRGlTextureInfo) instead.") + + + + + + + To be added. + To be added. + To be added. + + + + + + + Constructor + + SkiaSharp + 1.68.0.0 + + + + System.Obsolete("Use GRBackendTexture(int, int, bool, GRGlTextureInfo) instead.") + + + + + + + To be added. + To be added. + To be added. + + + + + + + Constructor + + SkiaSharp + 1.68.0.0 + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.GRBackend + + + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Void + + + + + + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.GRGlTextureInfo + + + + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + System.Int32 + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + System.Int32 + + + To be added. + To be added. + To be added. + + + + diff --git a/docs/xml/SkiaSharp/GRBackendTextureDesc.xml b/docs/xml/SkiaSharp/GRBackendTextureDesc.xml index 6f53ab4a0b..fae9876e9f 100644 --- a/docs/xml/SkiaSharp/GRBackendTextureDesc.xml +++ b/docs/xml/SkiaSharp/GRBackendTextureDesc.xml @@ -8,11 +8,17 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType + + + System.Obsolete("Use GRBackendTexture instead.") + + Wrap an existing texture created by the client in the 3D API with an underlying GRTexture object. @@ -44,6 +50,7 @@ API (stencil buffer, FBO id, etc) objects necessary will be managed. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRPixelConfig @@ -65,6 +72,7 @@ API (stencil buffer, FBO id, etc) objects necessary will be managed. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRBackendTextureDescFlags @@ -86,6 +94,7 @@ API (stencil buffer, FBO id, etc) objects necessary will be managed. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -107,6 +116,7 @@ API (stencil buffer, FBO id, etc) objects necessary will be managed. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRSurfaceOrigin @@ -128,6 +138,7 @@ API (stencil buffer, FBO id, etc) objects necessary will be managed. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -149,6 +160,7 @@ API (stencil buffer, FBO id, etc) objects necessary will be managed. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -170,6 +182,7 @@ API (stencil buffer, FBO id, etc) objects necessary will be managed. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 diff --git a/docs/xml/SkiaSharp/GRBackendTextureDescFlags.xml b/docs/xml/SkiaSharp/GRBackendTextureDescFlags.xml index 6a3633a104..ba0fd48bff 100644 --- a/docs/xml/SkiaSharp/GRBackendTextureDescFlags.xml +++ b/docs/xml/SkiaSharp/GRBackendTextureDescFlags.xml @@ -8,14 +8,18 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum - + System.Flags + + System.Obsolete + Additional options for a backend texture. @@ -33,6 +37,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRBackendTextureDescFlags @@ -53,6 +58,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRBackendTextureDescFlags diff --git a/docs/xml/SkiaSharp/GRContext.xml b/docs/xml/SkiaSharp/GRContext.xml index edea26e3b0..f814d9f60b 100644 --- a/docs/xml/SkiaSharp/GRContext.xml +++ b/docs/xml/SkiaSharp/GRContext.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -42,6 +44,24 @@ + + + + + Property + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.GRBackend + + + To be added. + To be added. + To be added. + + @@ -53,6 +73,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRContext @@ -78,6 +99,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRContext @@ -105,7 +127,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use Create(GRBackend, GRGlInterface) instead.") + + SkiaSharp.GRContext @@ -179,6 +207,47 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.GRContext + + + + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.GRContext + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -190,6 +259,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -214,6 +284,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -252,6 +323,28 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Int32 + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -263,7 +356,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use GetMaxSurfaceSampleCountForColorType(SKColorType) instead.") + + System.Int32 @@ -290,6 +389,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -316,6 +416,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -342,6 +443,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -366,6 +468,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -390,6 +493,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -414,6 +518,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp/GRGlBackendState.xml b/docs/xml/SkiaSharp/GRGlBackendState.xml index b9e939f15a..2290fb16ac 100644 --- a/docs/xml/SkiaSharp/GRGlBackendState.xml +++ b/docs/xml/SkiaSharp/GRGlBackendState.xml @@ -8,12 +8,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum - + System.Flags @@ -33,6 +34,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlBackendState @@ -53,6 +55,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlBackendState @@ -73,6 +76,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlBackendState @@ -93,6 +97,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlBackendState @@ -113,6 +118,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlBackendState @@ -131,6 +137,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlBackendState @@ -151,6 +158,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlBackendState @@ -171,6 +179,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlBackendState @@ -191,6 +200,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlBackendState @@ -211,6 +221,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlBackendState @@ -231,6 +242,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlBackendState @@ -251,6 +263,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlBackendState @@ -271,6 +284,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlBackendState @@ -291,6 +305,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlBackendState diff --git a/docs/xml/SkiaSharp/GRGlBackendTextureDesc.xml b/docs/xml/SkiaSharp/GRGlBackendTextureDesc.xml index 35c8d7f0fe..74f54aa1af 100644 --- a/docs/xml/SkiaSharp/GRGlBackendTextureDesc.xml +++ b/docs/xml/SkiaSharp/GRGlBackendTextureDesc.xml @@ -5,11 +5,17 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.ValueType + + + System.Obsolete("Use GRBackendTexture instead.") + + Wrap an existing OpenGL texture created by the client in the 3D API with an underlying GRTexture object. @@ -27,6 +33,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.GRPixelConfig @@ -45,6 +52,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.GRBackendTextureDescFlags @@ -63,6 +71,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Int32 @@ -81,6 +90,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.GRSurfaceOrigin @@ -99,6 +109,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Int32 @@ -117,6 +128,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlTextureInfo @@ -135,6 +147,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Int32 diff --git a/docs/xml/SkiaSharp/GRGlFramebufferInfo.xml b/docs/xml/SkiaSharp/GRGlFramebufferInfo.xml new file mode 100644 index 0000000000..826fe9f396 --- /dev/null +++ b/docs/xml/SkiaSharp/GRGlFramebufferInfo.xml @@ -0,0 +1,93 @@ + + + + + + SkiaSharp + 1.68.0.0 + + + System.ValueType + + + + To be added. + To be added. + + + + + + + Constructor + + SkiaSharp + 1.68.0.0 + + + + + + To be added. + To be added. + To be added. + + + + + + + Constructor + + SkiaSharp + 1.68.0.0 + + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + System.UInt32 + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + System.UInt32 + + + To be added. + To be added. + To be added. + + + + diff --git a/docs/xml/SkiaSharp/GRGlGetProcDelegate.xml b/docs/xml/SkiaSharp/GRGlGetProcDelegate.xml index a9de5fd25c..65bdab1782 100644 --- a/docs/xml/SkiaSharp/GRGlGetProcDelegate.xml +++ b/docs/xml/SkiaSharp/GRGlGetProcDelegate.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Delegate diff --git a/docs/xml/SkiaSharp/GRGlInterface.xml b/docs/xml/SkiaSharp/GRGlInterface.xml index 07b435e388..5785c62f9e 100644 --- a/docs/xml/SkiaSharp/GRGlInterface.xml +++ b/docs/xml/SkiaSharp/GRGlInterface.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlInterface @@ -54,6 +56,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlInterface @@ -81,6 +84,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlInterface @@ -106,6 +110,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlInterface @@ -133,6 +138,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlInterface @@ -158,6 +164,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlInterface @@ -185,6 +192,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlInterface @@ -210,6 +218,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlInterface @@ -259,6 +268,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlInterface @@ -281,6 +291,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlInterface @@ -300,6 +311,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlInterface @@ -325,6 +337,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRGlInterface @@ -373,6 +386,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -397,6 +411,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -422,6 +437,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean diff --git a/docs/xml/SkiaSharp/GRGlTextureInfo.xml b/docs/xml/SkiaSharp/GRGlTextureInfo.xml index b34c6a6318..2441fb5a0a 100644 --- a/docs/xml/SkiaSharp/GRGlTextureInfo.xml +++ b/docs/xml/SkiaSharp/GRGlTextureInfo.xml @@ -5,6 +5,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.ValueType @@ -15,6 +16,46 @@ + + + + + Constructor + + SkiaSharp + 1.68.0.0 + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + System.UInt32 + + + To be added. + To be added. + To be added. + + @@ -23,6 +64,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.UInt32 @@ -41,6 +83,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.UInt32 diff --git a/docs/xml/SkiaSharp/GRPixelConfig.xml b/docs/xml/SkiaSharp/GRPixelConfig.xml index 15271e1d4b..42525f2968 100644 --- a/docs/xml/SkiaSharp/GRPixelConfig.xml +++ b/docs/xml/SkiaSharp/GRPixelConfig.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRPixelConfig @@ -39,7 +41,7 @@ - + Field @@ -48,11 +50,12 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRPixelConfig - 12 + 13 Single 16-bit float channel. @@ -76,7 +79,7 @@ - + Field @@ -85,11 +88,12 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRPixelConfig - 6 + 7 Premultiplied 32-bit channel. Byte order is BGRA. @@ -124,6 +128,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRPixelConfig @@ -178,6 +183,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRPixelConfig @@ -187,6 +193,40 @@ 16-bit channel. Byte order is RGB. + + + + + Field + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.GRPixelConfig + + 6 + + To be added. + + + + + + + Field + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.GRPixelConfig + + 10 + + To be added. + + @@ -198,6 +238,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRPixelConfig @@ -218,6 +259,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRPixelConfig @@ -246,7 +288,7 @@ - + Field @@ -255,18 +297,19 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRPixelConfig - 10 + 11 32-bit channel. Byte order is RGBA. - + Field @@ -275,18 +318,19 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRPixelConfig - 13 + 14 16-bit channel. Byte order is RGBA. - + Field @@ -294,18 +338,19 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRPixelConfig - 11 + 12 32-bit channel. Byte order is RG. - + Field @@ -314,18 +359,19 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRPixelConfig - 8 + 9 Premultiplied and sRGB. Byte order is BGRA. - + Field @@ -334,11 +380,12 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRPixelConfig - 7 + 8 Premultiplied and sRGB. Byte order is RGBA. @@ -354,6 +401,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRPixelConfig diff --git a/docs/xml/SkiaSharp/GRSurfaceOrigin.xml b/docs/xml/SkiaSharp/GRSurfaceOrigin.xml index bde6421e11..41a757fcf5 100644 --- a/docs/xml/SkiaSharp/GRSurfaceOrigin.xml +++ b/docs/xml/SkiaSharp/GRSurfaceOrigin.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -19,7 +20,7 @@ - + Field @@ -28,18 +29,19 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRSurfaceOrigin - 2 + 1 Origin is at the bottom-left. - + Field @@ -48,11 +50,12 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.GRSurfaceOrigin - 1 + 0 Origin is at the top-left. diff --git a/docs/xml/SkiaSharp/SK3dView.xml b/docs/xml/SkiaSharp/SK3dView.xml index 40e1791d9c..0a839434fa 100644 --- a/docs/xml/SkiaSharp/SK3dView.xml +++ b/docs/xml/SkiaSharp/SK3dView.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -115,6 +116,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -133,6 +135,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -157,6 +160,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -181,6 +185,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -210,6 +215,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -234,6 +240,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix @@ -255,6 +262,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -276,6 +284,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -300,6 +309,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -324,6 +334,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -348,6 +359,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -372,6 +384,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -396,6 +409,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -420,6 +434,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -441,6 +456,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -469,6 +485,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -493,6 +510,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -517,6 +535,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp/SKAbstractManagedStream.xml b/docs/xml/SkiaSharp/SKAbstractManagedStream.xml index a0d60cf476..2255ffbc9e 100644 --- a/docs/xml/SkiaSharp/SKAbstractManagedStream.xml +++ b/docs/xml/SkiaSharp/SKAbstractManagedStream.xml @@ -5,6 +5,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKStreamAsset @@ -23,6 +24,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 @@ -38,6 +40,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 @@ -56,6 +59,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -77,6 +81,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -96,6 +101,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -115,6 +121,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -134,6 +141,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -153,6 +161,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -172,6 +181,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -191,6 +201,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -213,6 +224,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -237,6 +249,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -261,6 +274,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -280,6 +294,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean diff --git a/docs/xml/SkiaSharp/SKAbstractManagedWStream.xml b/docs/xml/SkiaSharp/SKAbstractManagedWStream.xml index 047641d78c..24b5cdbacd 100644 --- a/docs/xml/SkiaSharp/SKAbstractManagedWStream.xml +++ b/docs/xml/SkiaSharp/SKAbstractManagedWStream.xml @@ -5,6 +5,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKWStream @@ -23,6 +24,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 @@ -38,6 +40,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 @@ -56,6 +59,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -77,6 +81,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -96,6 +101,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -114,6 +120,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean diff --git a/docs/xml/SkiaSharp/SKAlphaType.xml b/docs/xml/SkiaSharp/SKAlphaType.xml index 7e9b456fb8..65d2239079 100644 --- a/docs/xml/SkiaSharp/SKAlphaType.xml +++ b/docs/xml/SkiaSharp/SKAlphaType.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKAlphaType @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKAlphaType @@ -71,6 +74,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKAlphaType @@ -91,6 +95,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKAlphaType diff --git a/docs/xml/SkiaSharp/SKAutoCanvasRestore.xml b/docs/xml/SkiaSharp/SKAutoCanvasRestore.xml index fbe85e29f6..f8b8c3210b 100644 --- a/docs/xml/SkiaSharp/SKAutoCanvasRestore.xml +++ b/docs/xml/SkiaSharp/SKAutoCanvasRestore.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Object @@ -60,6 +61,7 @@ using (new SKAutoCanvasRestore(canvas)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -81,6 +83,7 @@ using (new SKAutoCanvasRestore(canvas)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -107,6 +110,7 @@ using (new SKAutoCanvasRestore(canvas)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -131,6 +135,7 @@ using (new SKAutoCanvasRestore(canvas)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp/SKAutoCoInitialize.xml b/docs/xml/SkiaSharp/SKAutoCoInitialize.xml index 9d6e78ae9f..d47fd2a745 100644 --- a/docs/xml/SkiaSharp/SKAutoCoInitialize.xml +++ b/docs/xml/SkiaSharp/SKAutoCoInitialize.xml @@ -5,6 +5,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Object @@ -30,6 +31,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 @@ -48,6 +50,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -66,6 +69,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -84,6 +88,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp/SKAutoMaskFreeImage.xml b/docs/xml/SkiaSharp/SKAutoMaskFreeImage.xml index c7eb5cbc0e..1c30bd9254 100644 --- a/docs/xml/SkiaSharp/SKAutoMaskFreeImage.xml +++ b/docs/xml/SkiaSharp/SKAutoMaskFreeImage.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Object @@ -56,6 +57,7 @@ using (new SKAutoMaskFreeImage(mask.Image)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -80,6 +82,7 @@ using (new SKAutoMaskFreeImage(mask.Image)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp/SKBitmap.xml b/docs/xml/SkiaSharp/SKBitmap.xml index da9bb6227e..5c31918b3b 100644 --- a/docs/xml/SkiaSharp/SKBitmap.xml +++ b/docs/xml/SkiaSharp/SKBitmap.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -33,6 +34,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -51,6 +53,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -61,6 +64,26 @@ This constructor might throw an exception if it is not possible to create a bitmap with the specified configuration (for example, the image info requires a color table, and there is no color table). + + + + + Constructor + + SkiaSharp + 1.68.0.0 + + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -72,7 +95,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("The Index8 color type and color table is no longer supported. Use SKBitmap(SKImageInfo) instead.") + + @@ -95,6 +124,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -116,7 +146,13 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("The Index8 color type and color table is no longer supported. Use SKBitmap(SKImageInfo, SKBitmapAllocFlags) instead.") + + @@ -141,6 +177,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -166,6 +203,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -193,6 +231,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKAlphaType @@ -214,6 +253,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -235,6 +275,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Byte[] @@ -256,6 +297,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -277,6 +319,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -301,6 +344,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorSpace @@ -322,7 +366,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("The Index8 color type and color table is no longer supported.") + + SkiaSharp.SKColorTable @@ -343,6 +393,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorType @@ -364,6 +415,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -386,6 +438,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -446,6 +499,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -471,6 +525,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -498,6 +553,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -523,6 +579,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -548,6 +605,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -573,6 +631,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -598,6 +657,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -623,6 +683,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -648,6 +709,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -675,6 +737,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -702,6 +765,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -729,6 +793,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -756,6 +821,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -783,6 +849,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -810,6 +877,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageInfo @@ -835,6 +903,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageInfo @@ -860,6 +929,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageInfo @@ -885,6 +955,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageInfo @@ -910,6 +981,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageInfo @@ -935,6 +1007,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -959,6 +1032,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -980,9 +1054,10 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 - + System.Obsolete("Use SKPixmap.Encode instead.") @@ -1014,6 +1089,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1038,6 +1114,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1064,6 +1141,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1089,6 +1167,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1116,6 +1195,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1143,6 +1223,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1172,6 +1253,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1199,6 +1281,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmap @@ -1224,6 +1307,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -1251,6 +1335,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.UInt16 @@ -1278,6 +1363,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.UInt32 @@ -1305,6 +1391,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Byte @@ -1332,7 +1419,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("The Index8 color type and color table is no longer supported. Use GetPixel(int, int) instead.") + + SkiaSharp.SKPMColor @@ -1359,6 +1452,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1386,6 +1480,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -1408,6 +1503,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -1433,6 +1529,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -1454,6 +1551,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageInfo @@ -1475,6 +1573,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1500,6 +1599,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1525,6 +1625,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1552,6 +1653,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1570,6 +1672,34 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -1581,7 +1711,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("The Index8 color type and color table is no longer supported. Use InstallPixels(SKImageInfo, IntPtr, int) instead.") + + System.Boolean @@ -1601,6 +1737,36 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -1612,7 +1778,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("The Index8 color type and color table is no longer supported. Use InstallPixels(SKImageInfo, IntPtr, int, SKBitmapReleaseDelegate, object) instead.") + + System.Boolean @@ -1647,6 +1819,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1668,6 +1841,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1689,6 +1863,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1710,6 +1885,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1754,6 +1930,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1775,6 +1952,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPixmap @@ -1797,6 +1975,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1822,6 +2001,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor[] @@ -1843,6 +2023,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1864,6 +2045,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1885,7 +2067,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete + + System.Boolean @@ -1912,7 +2100,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete + + SkiaSharp.SKBitmap @@ -1939,7 +2133,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete + + System.Boolean @@ -1968,6 +2168,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -1989,7 +2190,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("The Index8 color type and color table is no longer supported.") + + System.Void @@ -2013,6 +2220,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2034,6 +2242,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2062,6 +2271,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2086,7 +2296,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("The Index8 color type and color table is no longer supported. Use SetPixels(IntPtr) instead.") + + System.Void @@ -2101,6 +2317,76 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -2132,6 +2418,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 diff --git a/docs/xml/SkiaSharp/SKBitmapAllocFlags.xml b/docs/xml/SkiaSharp/SKBitmapAllocFlags.xml index 82306e5413..c29eaedfac 100644 --- a/docs/xml/SkiaSharp/SKBitmapAllocFlags.xml +++ b/docs/xml/SkiaSharp/SKBitmapAllocFlags.xml @@ -6,12 +6,13 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum - + System.Flags @@ -29,6 +30,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmapAllocFlags @@ -47,6 +49,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmapAllocFlags diff --git a/docs/xml/SkiaSharp/SKBitmapReleaseDelegate.xml b/docs/xml/SkiaSharp/SKBitmapReleaseDelegate.xml index 7f8bec1544..16c26aa2df 100644 --- a/docs/xml/SkiaSharp/SKBitmapReleaseDelegate.xml +++ b/docs/xml/SkiaSharp/SKBitmapReleaseDelegate.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Delegate diff --git a/docs/xml/SkiaSharp/SKBitmapResizeMethod.xml b/docs/xml/SkiaSharp/SKBitmapResizeMethod.xml index 0a3442f015..f0b932707f 100644 --- a/docs/xml/SkiaSharp/SKBitmapResizeMethod.xml +++ b/docs/xml/SkiaSharp/SKBitmapResizeMethod.xml @@ -8,10 +8,16 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum + + + System.Obsolete + + Channel selector type for the method or the method. @@ -28,6 +34,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmapResizeMethod @@ -48,6 +55,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmapResizeMethod @@ -68,6 +76,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmapResizeMethod @@ -88,6 +97,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmapResizeMethod @@ -108,6 +118,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBitmapResizeMethod diff --git a/docs/xml/SkiaSharp/SKBlendMode.xml b/docs/xml/SkiaSharp/SKBlendMode.xml index 230506cb7e..645ddc2bd4 100644 --- a/docs/xml/SkiaSharp/SKBlendMode.xml +++ b/docs/xml/SkiaSharp/SKBlendMode.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -32,6 +33,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -52,6 +54,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -72,6 +75,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -92,6 +96,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -112,6 +117,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -132,6 +138,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -152,6 +159,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -172,6 +180,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -192,6 +201,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -212,6 +222,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -232,6 +243,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -252,6 +264,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -272,6 +285,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -292,6 +306,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -312,6 +327,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -332,6 +348,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -352,6 +369,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -372,6 +390,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -392,6 +411,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -412,6 +432,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -432,6 +453,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -452,6 +474,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -472,6 +495,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -492,6 +516,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -512,6 +537,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -532,6 +558,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -552,6 +579,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -572,6 +600,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -592,6 +621,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode diff --git a/docs/xml/SkiaSharp/SKBlurMaskFilterFlags.xml b/docs/xml/SkiaSharp/SKBlurMaskFilterFlags.xml index d8d00b150b..d97bd4eda0 100644 --- a/docs/xml/SkiaSharp/SKBlurMaskFilterFlags.xml +++ b/docs/xml/SkiaSharp/SKBlurMaskFilterFlags.xml @@ -8,14 +8,18 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum - + System.Flags + + System.Obsolete + Flags to use with . @@ -33,6 +37,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlurMaskFilterFlags @@ -53,6 +58,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlurMaskFilterFlags @@ -73,6 +79,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlurMaskFilterFlags @@ -93,6 +100,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlurMaskFilterFlags diff --git a/docs/xml/SkiaSharp/SKBlurStyle.xml b/docs/xml/SkiaSharp/SKBlurStyle.xml index f4be2ab57d..73373d0cef 100644 --- a/docs/xml/SkiaSharp/SKBlurStyle.xml +++ b/docs/xml/SkiaSharp/SKBlurStyle.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlurStyle @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlurStyle @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlurStyle @@ -88,6 +92,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlurStyle diff --git a/docs/xml/SkiaSharp/SKCanvas.xml b/docs/xml/SkiaSharp/SKCanvas.xml index 3161ad47ef..2825fe3acc 100644 --- a/docs/xml/SkiaSharp/SKCanvas.xml +++ b/docs/xml/SkiaSharp/SKCanvas.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -297,6 +298,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -318,6 +320,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -339,6 +342,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -413,6 +417,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -473,6 +478,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -533,6 +539,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -556,6 +563,7 @@ using (var surface = SKSurface.Create(info)) { SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -584,6 +592,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -607,6 +616,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -628,6 +638,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -652,6 +663,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -680,6 +692,7 @@ using (var surface = SKSurface.Create(info)) { SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -708,6 +721,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -736,6 +750,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -766,6 +781,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -796,6 +812,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -826,6 +843,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -858,6 +876,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -885,6 +904,7 @@ using (var surface = SKSurface.Create(info)) { SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -913,6 +933,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -943,6 +964,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -996,6 +1018,7 @@ using (var surface = SKSurface.Create(info)) { SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -1024,6 +1047,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1052,6 +1076,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1082,6 +1107,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1112,6 +1138,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1142,6 +1169,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1174,6 +1202,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1201,6 +1230,7 @@ using (var surface = SKSurface.Create(info)) { SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -1229,6 +1259,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1261,6 +1292,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1290,6 +1322,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -1317,6 +1350,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1346,6 +1380,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -1373,6 +1408,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1396,6 +1432,7 @@ using (var surface = SKSurface.Create(info)) { SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -1424,6 +1461,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1456,6 +1494,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1480,6 +1519,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1506,6 +1546,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1532,6 +1573,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1570,6 +1612,7 @@ buffer as it is drawn to the canvas. SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -1595,6 +1638,7 @@ buffer as it is drawn to the canvas. SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -1622,6 +1666,7 @@ buffer as it is drawn to the canvas. SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -1645,6 +1690,7 @@ buffer as it is drawn to the canvas. SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -1671,6 +1717,7 @@ buffer as it is drawn to the canvas. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1699,6 +1746,7 @@ buffer as it is drawn to the canvas. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1727,6 +1775,7 @@ buffer as it is drawn to the canvas. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1764,6 +1813,7 @@ buffer as it is drawn to the canvas. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1792,6 +1842,7 @@ buffer as it is drawn to the canvas. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1820,6 +1871,7 @@ buffer as it is drawn to the canvas. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1850,6 +1902,7 @@ buffer as it is drawn to the canvas. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1873,6 +1926,7 @@ buffer as it is drawn to the canvas. SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -1905,6 +1959,7 @@ buffer as it is drawn to the canvas. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1928,6 +1983,7 @@ buffer as it is drawn to the canvas. SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -1951,6 +2007,7 @@ buffer as it is drawn to the canvas. SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -1979,6 +2036,7 @@ buffer as it is drawn to the canvas. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2006,6 +2064,7 @@ buffer as it is drawn to the canvas. SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -2039,6 +2098,7 @@ buffer as it is drawn to the canvas. SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -2067,6 +2127,7 @@ buffer as it is drawn to the canvas. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2153,6 +2214,7 @@ The example above produces the following: SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -2178,6 +2240,7 @@ The example above produces the following: SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -2238,6 +2301,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2265,6 +2329,7 @@ The example above produces the following: SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -2329,6 +2394,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2395,6 +2461,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2498,6 +2565,7 @@ The example above produces the following: SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -2525,6 +2593,7 @@ The example above produces the following: SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -2555,6 +2624,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2584,6 +2654,7 @@ The example above produces the following: SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -2616,6 +2687,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2648,6 +2720,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2682,6 +2755,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2711,6 +2785,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -2736,6 +2811,7 @@ The example above produces the following: SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2764,6 +2840,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2794,6 +2871,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2826,6 +2904,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2860,6 +2939,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2896,6 +2976,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2974,6 +3055,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -2998,6 +3080,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -3022,6 +3105,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -3043,6 +3127,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -3068,6 +3153,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -3093,6 +3179,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -3114,6 +3201,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -3135,6 +3223,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -3159,6 +3248,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -3183,6 +3273,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -3211,6 +3302,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -3235,6 +3327,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -3263,6 +3356,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -3285,6 +3379,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -3306,6 +3401,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -3331,6 +3427,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -3361,6 +3458,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -3385,6 +3483,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -3409,6 +3508,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -3435,6 +3535,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -3465,6 +3566,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -3489,6 +3591,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -3513,6 +3616,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -3539,6 +3643,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix @@ -3560,6 +3665,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -3584,6 +3690,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp/SKClipOperation.xml b/docs/xml/SkiaSharp/SKClipOperation.xml index 143c7826ef..666d8bcca4 100644 --- a/docs/xml/SkiaSharp/SKClipOperation.xml +++ b/docs/xml/SkiaSharp/SKClipOperation.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKClipOperation @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKClipOperation diff --git a/docs/xml/SkiaSharp/SKCodec.xml b/docs/xml/SkiaSharp/SKCodec.xml index afbc965beb..9e7898090a 100644 --- a/docs/xml/SkiaSharp/SKCodec.xml +++ b/docs/xml/SkiaSharp/SKCodec.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodec @@ -54,6 +56,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodec @@ -68,6 +71,30 @@ If null is returned, the stream is deleted immediately. Otherwise, the codec takes ownership of it, and will delete it when done with it. + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKCodec + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -79,6 +106,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -103,6 +131,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKEncodedImageFormat @@ -145,6 +174,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -166,6 +196,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecFrameInfo[] @@ -176,6 +207,30 @@ May require reading through the stream to determine info about the frames. As such, future decoding calls may require a rewind. For single-frame images, this will be an empty array. + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -187,6 +242,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -212,6 +268,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecResult @@ -237,6 +294,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecResult @@ -267,6 +325,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecResult @@ -297,6 +356,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecResult @@ -327,6 +387,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecResult @@ -359,7 +420,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("The Index8 color type and color table is no longer supported. Use GetPixels(SKImageInfo, IntPtr) instead.") + + SkiaSharp.SKCodecResult @@ -394,6 +461,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecResult @@ -428,7 +496,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("The Index8 color type and color table is no longer supported. Use GetPixels(SKImageInfo, IntPtr) instead.") + + SkiaSharp.SKCodecResult @@ -463,7 +537,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("The Index8 color type and color table is no longer supported. Use GetPixels(SKImageInfo, IntPtr, SKCodecOptions) instead.") + + SkiaSharp.SKCodecResult @@ -500,7 +580,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("The Index8 color type and color table is no longer supported. Use GetPixels(SKImageInfo, IntPtr, SKCodecOptions) instead.") + + SkiaSharp.SKCodecResult @@ -537,7 +623,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("The Index8 color type and color table is no longer supported. Use GetPixels(SKImageInfo, IntPtr, int, SKCodecOptions) instead.") + + SkiaSharp.SKCodecResult @@ -576,7 +668,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("The Index8 color type and color table is no longer supported. Use GetPixels(SKImageInfo, IntPtr, int, SKCodecOptions) instead.") + + SkiaSharp.SKCodecResult @@ -615,6 +713,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSizeI @@ -640,6 +739,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -669,6 +769,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -694,6 +795,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecResult @@ -716,6 +818,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecResult @@ -741,6 +844,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageInfo @@ -762,6 +866,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -783,6 +888,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -794,8 +900,8 @@ - - + + Property @@ -804,9 +910,10 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 - SkiaSharp.SKCodecOrigin + SkiaSharp.SKEncodedOrigin Gets the image origin from the codec. @@ -825,6 +932,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Byte[] @@ -846,6 +954,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -870,6 +979,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecScanlineOrder @@ -891,6 +1001,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -916,6 +1027,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecResult @@ -945,6 +1057,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecResult @@ -976,7 +1089,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("The Index8 color type and color table is no longer supported. Use StartIncrementalDecode(SKImageInfo, IntPtr, int, SKCodecOptions) instead.") + + SkiaSharp.SKCodecResult @@ -1011,7 +1130,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("The Index8 color type and color table is no longer supported. Use StartIncrementalDecode(SKImageInfo, IntPtr, int, SKCodecOptions) instead.") + + SkiaSharp.SKCodecResult @@ -1046,6 +1171,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecResult @@ -1071,6 +1197,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecResult @@ -1098,7 +1225,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("The Index8 color type and color table is no longer supported. Use StartScanlineDecode(SKImageInfo, SKCodecOptions) instead.") + + SkiaSharp.SKCodecResult @@ -1129,7 +1262,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("The Index8 color type and color table is no longer supported. Use StartScanlineDecode(SKImageInfo, SKCodecOptions) instead.") + + SkiaSharp.SKCodecResult diff --git a/docs/xml/SkiaSharp/SKCodecAnimationDisposalMethod.xml b/docs/xml/SkiaSharp/SKCodecAnimationDisposalMethod.xml new file mode 100644 index 0000000000..17c1382eb4 --- /dev/null +++ b/docs/xml/SkiaSharp/SKCodecAnimationDisposalMethod.xml @@ -0,0 +1,69 @@ + + + + + + SkiaSharp + 1.68.0.0 + + + System.Enum + + + To be added. + To be added. + + + + + + + Field + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKCodecAnimationDisposalMethod + + 1 + + To be added. + + + + + + + Field + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKCodecAnimationDisposalMethod + + 2 + + To be added. + + + + + + + Field + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKCodecAnimationDisposalMethod + + 3 + + To be added. + + + + diff --git a/docs/xml/SkiaSharp/SKCodecFrameInfo.xml b/docs/xml/SkiaSharp/SKCodecFrameInfo.xml index 9da15fd0ee..f3331f76e0 100644 --- a/docs/xml/SkiaSharp/SKCodecFrameInfo.xml +++ b/docs/xml/SkiaSharp/SKCodecFrameInfo.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType @@ -27,6 +28,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKAlphaType @@ -37,6 +39,24 @@ + + + + + Property + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKCodecAnimationDisposalMethod + + + To be added. + To be added. + To be added. + + @@ -48,6 +68,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -69,6 +90,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -90,6 +112,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 diff --git a/docs/xml/SkiaSharp/SKCodecOptions.xml b/docs/xml/SkiaSharp/SKCodecOptions.xml index 1177976bfd..acc57e5498 100644 --- a/docs/xml/SkiaSharp/SKCodecOptions.xml +++ b/docs/xml/SkiaSharp/SKCodecOptions.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -50,6 +52,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -60,6 +63,24 @@ + + + + + Constructor + + SkiaSharp + 1.68.0.0 + + + + + + To be added. + To be added. + To be added. + + @@ -71,6 +92,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -106,6 +128,26 @@ Only meaningful for multi-frame images. + + + + + Constructor + + SkiaSharp + 1.68.0.0 + + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -117,6 +159,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecOptions @@ -137,6 +180,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -179,6 +223,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -198,6 +243,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTransferFunctionBehavior @@ -208,6 +254,24 @@ + + + + + Property + + SkiaSharp + 1.68.0.0 + + + System.Int32 + + + To be added. + To be added. + To be added. + + @@ -219,6 +283,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Nullable<SkiaSharp.SKRectI> @@ -240,6 +305,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKZeroInitialized diff --git a/docs/xml/SkiaSharp/SKCodecResult.xml b/docs/xml/SkiaSharp/SKCodecResult.xml index bb77c0f219..c2f535b536 100644 --- a/docs/xml/SkiaSharp/SKCodecResult.xml +++ b/docs/xml/SkiaSharp/SKCodecResult.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -19,7 +20,7 @@ - + Field @@ -28,15 +29,33 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecResult - 6 + 7 Fulfilling this request requires rewinding the input, which is not supported for this input. + + + + + Field + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKCodecResult + + 2 + + To be added. + + @@ -48,6 +67,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecResult @@ -57,9 +77,26 @@ The input is incomplete. A partial image was generated. + + + + + Field + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKCodecResult + + 8 + + To be added. + + - + Field @@ -68,18 +105,19 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecResult - 2 + 3 The codec cannot convert to match the request, ignoring dimensions. - + Field @@ -88,18 +126,19 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecResult - 5 + 6 The input did not contain a valid image. - + Field @@ -108,18 +147,19 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecResult - 4 + 5 The parameters (besides info) are invalid. e.g. null pixels, row bytes too small, etc. - + Field @@ -128,11 +168,12 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecResult - 3 + 4 The generator cannot scale to requested size. @@ -148,6 +189,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecResult @@ -159,7 +201,7 @@ - + Field @@ -168,11 +210,12 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecResult - 7 + 9 This method is not supported by this codec. diff --git a/docs/xml/SkiaSharp/SKCodecScanlineOrder.xml b/docs/xml/SkiaSharp/SKCodecScanlineOrder.xml index c30b43e4b3..209e680c96 100644 --- a/docs/xml/SkiaSharp/SKCodecScanlineOrder.xml +++ b/docs/xml/SkiaSharp/SKCodecScanlineOrder.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecScanlineOrder @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCodecScanlineOrder diff --git a/docs/xml/SkiaSharp/SKColor.xml b/docs/xml/SkiaSharp/SKColor.xml index cd27c50170..ec325c24c9 100644 --- a/docs/xml/SkiaSharp/SKColor.xml +++ b/docs/xml/SkiaSharp/SKColor.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -50,6 +52,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -75,6 +78,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -102,6 +106,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Byte @@ -123,6 +128,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Byte @@ -144,6 +150,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -164,6 +171,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -189,6 +197,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -220,6 +229,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -251,6 +261,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -273,6 +284,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Byte @@ -294,6 +306,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -315,6 +328,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -342,6 +356,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.UInt32 @@ -367,6 +382,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -392,6 +408,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -419,6 +436,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -444,6 +462,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Byte @@ -465,6 +484,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -493,6 +513,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -521,6 +542,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.String @@ -543,6 +565,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -570,6 +593,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -595,6 +619,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -620,6 +645,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -645,6 +671,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor diff --git a/docs/xml/SkiaSharp/SKColorFilter.xml b/docs/xml/SkiaSharp/SKColorFilter.xml index 0936851499..abb24e92f8 100644 --- a/docs/xml/SkiaSharp/SKColorFilter.xml +++ b/docs/xml/SkiaSharp/SKColorFilter.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -50,6 +52,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorFilter @@ -156,6 +159,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorFilter @@ -181,6 +185,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorFilter @@ -229,6 +234,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorFilter @@ -253,6 +259,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorFilter @@ -282,6 +289,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorFilter @@ -309,6 +317,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorFilter @@ -331,6 +340,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorFilter @@ -356,6 +366,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorFilter @@ -418,6 +429,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -537,5 +549,23 @@ + + + + + Field + + SkiaSharp + 1.68.0.0 + + + System.Int32 + + 256 + + To be added. + To be added. + + diff --git a/docs/xml/SkiaSharp/SKColorSpace.xml b/docs/xml/SkiaSharp/SKColorSpace.xml index f5fd4ac926..eaa0cc86b2 100644 --- a/docs/xml/SkiaSharp/SKColorSpace.xml +++ b/docs/xml/SkiaSharp/SKColorSpace.xml @@ -7,6 +7,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -85,6 +86,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorSpace @@ -109,6 +111,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorSpace @@ -135,6 +138,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorSpace @@ -161,6 +165,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorSpace @@ -189,6 +194,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorSpace @@ -217,6 +223,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorSpace @@ -245,6 +252,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorSpace @@ -273,6 +281,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorSpace @@ -294,6 +303,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorSpace @@ -315,6 +325,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -338,6 +349,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -364,6 +376,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -384,6 +397,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -403,6 +417,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -423,6 +438,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix44 @@ -444,6 +460,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean diff --git a/docs/xml/SkiaSharp/SKColorSpaceFlags.xml b/docs/xml/SkiaSharp/SKColorSpaceFlags.xml index ae7ce6636a..21c42eecc7 100644 --- a/docs/xml/SkiaSharp/SKColorSpaceFlags.xml +++ b/docs/xml/SkiaSharp/SKColorSpaceFlags.xml @@ -7,12 +7,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum - + System.Flags @@ -30,6 +31,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorSpaceFlags @@ -49,6 +51,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorSpaceFlags diff --git a/docs/xml/SkiaSharp/SKColorSpaceGamut.xml b/docs/xml/SkiaSharp/SKColorSpaceGamut.xml index 10150ec9db..4df1d57359 100644 --- a/docs/xml/SkiaSharp/SKColorSpaceGamut.xml +++ b/docs/xml/SkiaSharp/SKColorSpaceGamut.xml @@ -7,6 +7,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -26,6 +27,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorSpaceGamut @@ -45,6 +47,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorSpaceGamut @@ -64,6 +67,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorSpaceGamut @@ -83,6 +87,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorSpaceGamut diff --git a/docs/xml/SkiaSharp/SKColorSpacePrimaries.xml b/docs/xml/SkiaSharp/SKColorSpacePrimaries.xml index 9347af1530..29a23d5a8d 100644 --- a/docs/xml/SkiaSharp/SKColorSpacePrimaries.xml +++ b/docs/xml/SkiaSharp/SKColorSpacePrimaries.xml @@ -7,6 +7,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType @@ -27,6 +28,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -61,6 +63,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -81,6 +84,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -101,6 +105,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -121,6 +126,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -141,6 +147,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -161,6 +168,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -180,6 +188,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix44 @@ -200,6 +209,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -224,6 +234,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -244,6 +255,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single diff --git a/docs/xml/SkiaSharp/SKColorSpaceRenderTargetGamma.xml b/docs/xml/SkiaSharp/SKColorSpaceRenderTargetGamma.xml index 81f1ee8039..aa3c2a51e6 100644 --- a/docs/xml/SkiaSharp/SKColorSpaceRenderTargetGamma.xml +++ b/docs/xml/SkiaSharp/SKColorSpaceRenderTargetGamma.xml @@ -7,6 +7,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -26,6 +27,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorSpaceRenderTargetGamma @@ -45,6 +47,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorSpaceRenderTargetGamma diff --git a/docs/xml/SkiaSharp/SKColorSpaceTransferFn.xml b/docs/xml/SkiaSharp/SKColorSpaceTransferFn.xml index 43c38def12..b13ff24a21 100644 --- a/docs/xml/SkiaSharp/SKColorSpaceTransferFn.xml +++ b/docs/xml/SkiaSharp/SKColorSpaceTransferFn.xml @@ -7,6 +7,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType @@ -36,6 +37,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -68,6 +70,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -88,6 +91,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -108,6 +112,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -128,6 +133,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -148,6 +154,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -168,6 +175,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -188,6 +196,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -207,6 +216,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorSpaceTransferFn diff --git a/docs/xml/SkiaSharp/SKColorTable.xml b/docs/xml/SkiaSharp/SKColorTable.xml index 31046e9bd6..5f5e5cf267 100644 --- a/docs/xml/SkiaSharp/SKColorTable.xml +++ b/docs/xml/SkiaSharp/SKColorTable.xml @@ -8,11 +8,17 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject + + + System.Obsolete("The Index8 color type and color table is no longer supported.") + + Holds a premultiplied color table for indexed 8-bit bitmaps. This class is used to represent a color lookup table for indexed bitmap images. The table can contain up to (256) colors (8 bits). The colors are stored are premultiplied 32-bit colors. @@ -29,6 +35,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -47,6 +54,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -68,6 +76,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -89,6 +98,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -110,6 +120,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -133,6 +144,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -156,6 +168,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPMColor[] @@ -177,6 +190,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -198,6 +212,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -222,6 +237,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -247,6 +263,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPMColor @@ -272,6 +289,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -293,6 +311,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -315,6 +334,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor[] diff --git a/docs/xml/SkiaSharp/SKColorType.xml b/docs/xml/SkiaSharp/SKColorType.xml index 1480a5fdc2..0c7a81469c 100644 --- a/docs/xml/SkiaSharp/SKColorType.xml +++ b/docs/xml/SkiaSharp/SKColorType.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorType @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorType @@ -59,7 +62,7 @@ - + Field @@ -68,18 +71,19 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorType - 5 + 6 Represents a 32-bit color with the format BGRA. - + Field @@ -88,11 +92,12 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorType - 7 + 9 Represents a 8-bit grayscale color. @@ -117,6 +122,23 @@ Represents a 8-bit indexed color. + + + + + Field + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKColorType + + 8 + + To be added. + + @@ -128,6 +150,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorType @@ -137,6 +160,40 @@ Represents a 16-bit color with the format RGB, with the red and blue components being 5-bits and the green component being 6-bits. + + + + + Field + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKColorType + + 5 + + To be added. + + + + + + + Field + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKColorType + + 7 + + To be added. + + @@ -148,6 +205,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorType @@ -159,7 +217,7 @@ - + Field @@ -168,11 +226,12 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorType - 8 + 10 Represents a floating-point based color with the format RGBA. @@ -188,6 +247,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorType diff --git a/docs/xml/SkiaSharp/SKColors.xml b/docs/xml/SkiaSharp/SKColors.xml index ef456b0934..7d1153066b 100644 --- a/docs/xml/SkiaSharp/SKColors.xml +++ b/docs/xml/SkiaSharp/SKColors.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -49,6 +51,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -69,6 +72,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -89,6 +93,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -109,6 +114,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -129,6 +135,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -149,6 +156,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -169,6 +177,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -189,6 +198,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -209,6 +219,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -229,6 +240,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -249,6 +261,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -269,6 +282,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -289,6 +303,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -309,6 +324,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -329,6 +345,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -349,6 +366,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -369,6 +387,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -389,6 +408,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -409,6 +429,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -429,6 +450,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -449,6 +471,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -469,6 +492,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -489,6 +513,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -509,6 +534,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -529,6 +555,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -549,6 +576,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -569,6 +597,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -589,6 +618,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -609,6 +639,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -629,6 +660,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -649,6 +681,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -669,6 +702,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -689,6 +723,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -709,6 +744,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -729,6 +765,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -749,6 +786,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -769,6 +807,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -789,6 +828,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -809,6 +849,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -829,6 +870,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -849,6 +891,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -869,6 +912,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -890,6 +934,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -910,6 +955,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -930,6 +976,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -950,6 +997,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -970,6 +1018,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -990,6 +1039,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1010,6 +1060,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1030,6 +1081,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1050,6 +1102,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1070,6 +1123,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1090,6 +1144,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1110,6 +1165,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1130,6 +1186,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1150,6 +1207,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1170,6 +1228,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1190,6 +1249,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1210,6 +1270,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1230,6 +1291,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1250,6 +1312,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1270,6 +1333,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1290,6 +1354,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1310,6 +1375,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1330,6 +1396,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1350,6 +1417,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1370,6 +1438,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1390,6 +1459,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1410,6 +1480,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1430,6 +1501,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1450,6 +1522,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1470,6 +1543,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1490,6 +1564,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1510,6 +1585,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1530,6 +1606,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1550,6 +1627,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1570,6 +1648,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1590,6 +1669,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1610,6 +1690,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1630,6 +1711,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1650,6 +1732,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1670,6 +1753,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1690,6 +1774,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1710,6 +1795,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1730,6 +1816,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1750,6 +1837,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1770,6 +1858,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1790,6 +1879,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1810,6 +1900,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1830,6 +1921,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1850,6 +1942,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1870,6 +1963,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1890,6 +1984,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1910,6 +2005,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1930,6 +2026,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1950,6 +2047,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1970,6 +2068,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -1990,6 +2089,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2010,6 +2110,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2030,6 +2131,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2050,6 +2152,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2070,6 +2173,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2090,6 +2194,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2110,6 +2215,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2130,6 +2236,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2150,6 +2257,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2170,6 +2278,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2190,6 +2299,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2210,6 +2320,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2230,6 +2341,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2250,6 +2362,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2270,6 +2383,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2290,6 +2404,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2310,6 +2425,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2330,6 +2446,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2350,6 +2467,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2370,6 +2488,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2390,6 +2509,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2410,6 +2530,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2430,6 +2551,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2450,6 +2572,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2470,6 +2593,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2490,6 +2614,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2510,6 +2635,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2530,6 +2656,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2550,6 +2677,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2570,6 +2698,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2590,6 +2719,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2610,6 +2740,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2630,6 +2761,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2650,6 +2782,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2670,6 +2803,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2690,6 +2824,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2710,6 +2845,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2730,6 +2866,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2750,6 +2887,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2770,6 +2908,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2790,6 +2929,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2810,6 +2950,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2830,6 +2971,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -2850,6 +2992,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor diff --git a/docs/xml/SkiaSharp/SKCropRectFlags.xml b/docs/xml/SkiaSharp/SKCropRectFlags.xml index 0f9c4d533c..aeaffd0541 100644 --- a/docs/xml/SkiaSharp/SKCropRectFlags.xml +++ b/docs/xml/SkiaSharp/SKCropRectFlags.xml @@ -8,12 +8,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum - + System.Flags @@ -33,6 +34,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCropRectFlags @@ -53,6 +55,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCropRectFlags @@ -73,6 +76,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCropRectFlags @@ -91,6 +95,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCropRectFlags @@ -111,6 +116,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCropRectFlags @@ -131,6 +137,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCropRectFlags diff --git a/docs/xml/SkiaSharp/SKData.xml b/docs/xml/SkiaSharp/SKData.xml index ef6c9f4050..cad27f6ce4 100644 --- a/docs/xml/SkiaSharp/SKData.xml +++ b/docs/xml/SkiaSharp/SKData.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -133,6 +134,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.IO.Stream @@ -155,6 +157,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.IO.Stream @@ -179,6 +182,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -204,6 +208,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -228,6 +233,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -252,6 +258,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -277,6 +284,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -301,6 +309,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -327,6 +336,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -353,6 +363,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -380,6 +391,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -406,6 +418,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -432,6 +445,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -458,6 +472,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -485,6 +500,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -514,6 +530,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -545,6 +562,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -570,6 +588,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -597,6 +616,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -624,6 +644,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -645,6 +666,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -669,6 +691,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -724,6 +747,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -745,6 +769,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -769,6 +794,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int64 @@ -790,6 +816,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -817,6 +844,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Byte[] diff --git a/docs/xml/SkiaSharp/SKDataReleaseDelegate.xml b/docs/xml/SkiaSharp/SKDataReleaseDelegate.xml index 6243c04551..90793a8166 100644 --- a/docs/xml/SkiaSharp/SKDataReleaseDelegate.xml +++ b/docs/xml/SkiaSharp/SKDataReleaseDelegate.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Delegate diff --git a/docs/xml/SkiaSharp/SKDisplacementMapEffectChannelSelectorType.xml b/docs/xml/SkiaSharp/SKDisplacementMapEffectChannelSelectorType.xml index f5d8af7a26..4814505a06 100644 --- a/docs/xml/SkiaSharp/SKDisplacementMapEffectChannelSelectorType.xml +++ b/docs/xml/SkiaSharp/SKDisplacementMapEffectChannelSelectorType.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKDisplacementMapEffectChannelSelectorType @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKDisplacementMapEffectChannelSelectorType @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKDisplacementMapEffectChannelSelectorType @@ -88,6 +92,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKDisplacementMapEffectChannelSelectorType @@ -108,6 +113,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKDisplacementMapEffectChannelSelectorType diff --git a/docs/xml/SkiaSharp/SKDocument.xml b/docs/xml/SkiaSharp/SKDocument.xml index 9ffe4d4823..2a7212e4e8 100644 --- a/docs/xml/SkiaSharp/SKDocument.xml +++ b/docs/xml/SkiaSharp/SKDocument.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -38,6 +39,7 @@ canvas, and then complete the page with a call to 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -59,6 +61,7 @@ canvas, and then complete the page with a call to 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCanvas @@ -86,6 +89,7 @@ canvas, and then complete the page with a call to 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCanvas @@ -115,6 +119,7 @@ canvas, and then complete the page with a call to 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -126,7 +131,53 @@ canvas, and then complete the page with a call to - + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKDocument + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKDocument + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + Method @@ -136,7 +187,13 @@ canvas, and then complete the page with a call to 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use CreatePdf(SKWStream) instead.") + + SkiaSharp.SKDocument @@ -163,11 +220,15 @@ canvas, and then complete the page with a call to 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Obsolete("Use CreatePdf(SKWStream, float) instead.") + + System.Obsolete("Use CreatePdf(SKWStream) instead.") + SkiaSharp.SKDocument @@ -185,7 +246,7 @@ canvas, and then complete the page with a call to - + Method @@ -195,7 +256,13 @@ canvas, and then complete the page with a call to 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use CreatePdf(SKWStream, SKDocumentPdfMetadata) instead.") + + SkiaSharp.SKDocument @@ -224,6 +291,7 @@ canvas, and then complete the page with a call to 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKDocument @@ -251,9 +319,10 @@ canvas, and then complete the page with a call to 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 - + System.Obsolete("Use CreateXps(SKWStream, float) instead.") @@ -283,6 +352,7 @@ canvas, and then complete the page with a call to 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -304,6 +374,7 @@ canvas, and then complete the page with a call to 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -328,6 +399,7 @@ canvas, and then complete the page with a call to 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp/SKDocumentPdfMetadata.xml b/docs/xml/SkiaSharp/SKDocumentPdfMetadata.xml index 3a3d227dbe..cc9e8807a9 100644 --- a/docs/xml/SkiaSharp/SKDocumentPdfMetadata.xml +++ b/docs/xml/SkiaSharp/SKDocumentPdfMetadata.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.String @@ -50,6 +52,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Nullable<System.DateTime> @@ -71,6 +74,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.String @@ -92,6 +96,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.String @@ -113,6 +118,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Nullable<System.DateTime> @@ -134,6 +140,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.String @@ -155,6 +162,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.String @@ -176,6 +184,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.String diff --git a/docs/xml/SkiaSharp/SKDropShadowImageFilterShadowMode.xml b/docs/xml/SkiaSharp/SKDropShadowImageFilterShadowMode.xml index c82ba22b86..7a1d61ae0c 100644 --- a/docs/xml/SkiaSharp/SKDropShadowImageFilterShadowMode.xml +++ b/docs/xml/SkiaSharp/SKDropShadowImageFilterShadowMode.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKDropShadowImageFilterShadowMode @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKDropShadowImageFilterShadowMode diff --git a/docs/xml/SkiaSharp/SKDynamicMemoryWStream.xml b/docs/xml/SkiaSharp/SKDynamicMemoryWStream.xml index fe5109fdc9..cb9479f7ec 100644 --- a/docs/xml/SkiaSharp/SKDynamicMemoryWStream.xml +++ b/docs/xml/SkiaSharp/SKDynamicMemoryWStream.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKWStream @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -46,7 +48,11 @@ 1.57.0.0 1.58.0.0 1.59.0.0 + 1.57.0.0 + 1.58.0.0 + 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -72,6 +78,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -96,6 +103,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -118,6 +126,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -140,6 +149,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKStreamAsset @@ -162,6 +172,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp/SKEncodedImageFormat.xml b/docs/xml/SkiaSharp/SKEncodedImageFormat.xml index 37b836827d..20dbcc5ff4 100644 --- a/docs/xml/SkiaSharp/SKEncodedImageFormat.xml +++ b/docs/xml/SkiaSharp/SKEncodedImageFormat.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKEncodedImageFormat @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKEncodedImageFormat @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKEncodedImageFormat @@ -88,6 +92,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKEncodedImageFormat @@ -108,6 +113,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKEncodedImageFormat @@ -128,6 +134,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKEncodedImageFormat @@ -148,6 +155,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKEncodedImageFormat @@ -168,6 +176,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKEncodedImageFormat @@ -188,6 +197,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKEncodedImageFormat @@ -208,6 +218,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKEncodedImageFormat @@ -228,6 +239,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKEncodedImageFormat diff --git a/docs/xml/SkiaSharp/SKEncodedOrigin.xml b/docs/xml/SkiaSharp/SKEncodedOrigin.xml new file mode 100644 index 0000000000..26de991d16 --- /dev/null +++ b/docs/xml/SkiaSharp/SKEncodedOrigin.xml @@ -0,0 +1,171 @@ + + + + + + SkiaSharp + 1.68.0.0 + + + System.Enum + + + To be added. + To be added. + + + + + + + Field + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKEncodedOrigin + + 4 + + To be added. + + + + + + + Field + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKEncodedOrigin + + 3 + + To be added. + + + + + + + Field + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKEncodedOrigin + + 1 + + To be added. + + + + + + + Field + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKEncodedOrigin + + 8 + + To be added. + + + + + + + Field + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKEncodedOrigin + + 5 + + To be added. + + + + + + + Field + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKEncodedOrigin + + 7 + + To be added. + + + + + + + Field + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKEncodedOrigin + + 6 + + To be added. + + + + + + + Field + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKEncodedOrigin + + 1 + + To be added. + + + + + + + Field + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKEncodedOrigin + + 2 + + To be added. + + + + diff --git a/docs/xml/SkiaSharp/SKEncoding.xml b/docs/xml/SkiaSharp/SKEncoding.xml index 730bd42d21..d378c867af 100644 --- a/docs/xml/SkiaSharp/SKEncoding.xml +++ b/docs/xml/SkiaSharp/SKEncoding.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKEncoding @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKEncoding @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKEncoding diff --git a/docs/xml/SkiaSharp/SKFileStream.xml b/docs/xml/SkiaSharp/SKFileStream.xml index 98696988a4..7725e317bc 100644 --- a/docs/xml/SkiaSharp/SKFileStream.xml +++ b/docs/xml/SkiaSharp/SKFileStream.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKStreamAsset @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -50,6 +52,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -71,6 +74,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -93,6 +97,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKStreamAsset diff --git a/docs/xml/SkiaSharp/SKFileWStream.xml b/docs/xml/SkiaSharp/SKFileWStream.xml index 7207de5b58..73c0659ea5 100644 --- a/docs/xml/SkiaSharp/SKFileWStream.xml +++ b/docs/xml/SkiaSharp/SKFileWStream.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKWStream @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -50,6 +52,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -71,6 +74,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -93,6 +97,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKWStream diff --git a/docs/xml/SkiaSharp/SKFilterQuality.xml b/docs/xml/SkiaSharp/SKFilterQuality.xml index 95eb33e54d..eed2680e01 100644 --- a/docs/xml/SkiaSharp/SKFilterQuality.xml +++ b/docs/xml/SkiaSharp/SKFilterQuality.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFilterQuality @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFilterQuality @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFilterQuality @@ -88,6 +92,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFilterQuality diff --git a/docs/xml/SkiaSharp/SKFontManager.xml b/docs/xml/SkiaSharp/SKFontManager.xml index 2e8a2b43b0..3d3fa24ab2 100644 --- a/docs/xml/SkiaSharp/SKFontManager.xml +++ b/docs/xml/SkiaSharp/SKFontManager.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -18,6 +19,47 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKFontManager + + + + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKFontStyleSet + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -29,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontManager @@ -50,6 +93,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -74,6 +118,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -84,6 +129,102 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKTypeface + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKTypeface + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKTypeface + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKTypeface + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -95,6 +236,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.String @@ -120,6 +262,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.String[] @@ -142,6 +285,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTypeface @@ -167,6 +311,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTypeface @@ -192,6 +337,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTypeface @@ -219,6 +365,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTypeface @@ -246,6 +393,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTypeface @@ -275,6 +423,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTypeface @@ -293,6 +442,34 @@ Note that is a combination of ISO 639, 15924, and 3166-1 codes, so it is fine to just pass a ISO 639 here. The first item is the least significant fallback, and the last is the most significant. If no specified codes match, any font with the requested character will be matched. + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKTypeface + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -304,6 +481,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTypeface @@ -339,6 +517,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTypeface @@ -374,6 +553,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTypeface @@ -398,5 +578,80 @@ Note that is a combination of ISO 639, 15924, and 3166-1 codes, so it is fine to just pass a ISO 639 here. The first item is the least significant fallback, and the last is the most significant. If no specified codes match, any font with the requested character will be matched. + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKFontStyleSet + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKTypeface + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + + System.Obsolete + + + + SkiaSharp.SKTypeface + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + diff --git a/docs/xml/SkiaSharp/SKFontMetrics.xml b/docs/xml/SkiaSharp/SKFontMetrics.xml index 29bf948556..0dacc4b57a 100644 --- a/docs/xml/SkiaSharp/SKFontMetrics.xml +++ b/docs/xml/SkiaSharp/SKFontMetrics.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -50,6 +52,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -71,6 +74,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -92,6 +96,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -113,6 +118,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -134,6 +140,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -155,6 +162,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -165,6 +173,42 @@ Will be >= 0. + + + + + Property + + SkiaSharp + 1.68.0.0 + + + System.Nullable<System.Single> + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + System.Nullable<System.Single> + + + To be added. + To be added. + To be added. + + @@ -176,6 +220,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -197,6 +242,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Nullable<System.Single> @@ -223,6 +269,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Nullable<System.Single> @@ -247,6 +294,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -268,6 +316,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -289,6 +338,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single diff --git a/docs/xml/SkiaSharp/SKFontStyle.xml b/docs/xml/SkiaSharp/SKFontStyle.xml new file mode 100644 index 0000000000..fbae5566d4 --- /dev/null +++ b/docs/xml/SkiaSharp/SKFontStyle.xml @@ -0,0 +1,225 @@ + + + + + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKObject + + + + To be added. + To be added. + + + + + + + Constructor + + SkiaSharp + 1.68.0.0 + + + + To be added. + To be added. + + + + + + + Constructor + + SkiaSharp + 1.68.0.0 + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Constructor + + SkiaSharp + 1.68.0.0 + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKFontStyle + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKFontStyle + + + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Void + + + + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKFontStyle + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKFontStyle + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKFontStyleSlant + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + System.Int32 + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + System.Int32 + + + To be added. + To be added. + To be added. + + + + diff --git a/docs/xml/SkiaSharp/SKFontStyleSet.xml b/docs/xml/SkiaSharp/SKFontStyleSet.xml new file mode 100644 index 0000000000..e81e7ed7a6 --- /dev/null +++ b/docs/xml/SkiaSharp/SKFontStyleSet.xml @@ -0,0 +1,142 @@ + + + + + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKObject + + + + To be added. + To be added. + + + + + + + Constructor + + SkiaSharp + 1.68.0.0 + + + + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + System.Int32 + + + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKTypeface + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKTypeface + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Void + + + + + + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Void + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + diff --git a/docs/xml/SkiaSharp/SKFontStyleSlant.xml b/docs/xml/SkiaSharp/SKFontStyleSlant.xml index 8a8685641a..e0cc60c6f8 100644 --- a/docs/xml/SkiaSharp/SKFontStyleSlant.xml +++ b/docs/xml/SkiaSharp/SKFontStyleSlant.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleSlant @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleSlant @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleSlant diff --git a/docs/xml/SkiaSharp/SKFontStyleWeight.xml b/docs/xml/SkiaSharp/SKFontStyleWeight.xml index 6deca0ae82..d57922c4c2 100644 --- a/docs/xml/SkiaSharp/SKFontStyleWeight.xml +++ b/docs/xml/SkiaSharp/SKFontStyleWeight.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleWeight @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleWeight @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleWeight @@ -88,6 +92,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleWeight @@ -108,6 +113,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleWeight @@ -128,6 +134,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleWeight @@ -148,6 +155,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleWeight @@ -168,6 +176,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleWeight @@ -188,6 +197,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleWeight @@ -208,6 +218,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleWeight @@ -228,6 +239,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleWeight diff --git a/docs/xml/SkiaSharp/SKFontStyleWidth.xml b/docs/xml/SkiaSharp/SKFontStyleWidth.xml index a41f98bfe4..76e9e93af7 100644 --- a/docs/xml/SkiaSharp/SKFontStyleWidth.xml +++ b/docs/xml/SkiaSharp/SKFontStyleWidth.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleWidth @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleWidth @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleWidth @@ -88,6 +92,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleWidth @@ -108,6 +113,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleWidth @@ -128,6 +134,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleWidth @@ -148,6 +155,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleWidth @@ -192,6 +200,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleWidth @@ -212,6 +221,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleWidth diff --git a/docs/xml/SkiaSharp/SKFrontBufferedManagedStream.xml b/docs/xml/SkiaSharp/SKFrontBufferedManagedStream.xml index 4987f59a40..5ea0180b88 100644 --- a/docs/xml/SkiaSharp/SKFrontBufferedManagedStream.xml +++ b/docs/xml/SkiaSharp/SKFrontBufferedManagedStream.xml @@ -5,6 +5,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKAbstractManagedStream @@ -23,6 +24,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 @@ -43,6 +45,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 @@ -63,6 +66,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 @@ -85,6 +89,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 @@ -107,6 +112,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -128,6 +134,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -147,6 +154,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -166,6 +174,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -185,6 +194,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -204,6 +214,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -223,6 +234,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -242,6 +254,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -264,6 +277,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -288,6 +302,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -312,6 +327,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -331,6 +347,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean diff --git a/docs/xml/SkiaSharp/SKFrontBufferedStream.xml b/docs/xml/SkiaSharp/SKFrontBufferedStream.xml index 69bdf2f466..4152734363 100644 --- a/docs/xml/SkiaSharp/SKFrontBufferedStream.xml +++ b/docs/xml/SkiaSharp/SKFrontBufferedStream.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.IO.Stream @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -50,6 +52,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -73,6 +76,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -96,6 +100,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -121,6 +126,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -142,6 +148,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -163,6 +170,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -184,6 +192,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -205,6 +214,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -229,6 +239,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -250,6 +261,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int64 @@ -271,6 +283,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int64 @@ -292,6 +305,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -321,6 +335,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int64 @@ -348,6 +363,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -372,6 +388,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp/SKHighContrastConfig.xml b/docs/xml/SkiaSharp/SKHighContrastConfig.xml index b383eab673..61d3738156 100644 --- a/docs/xml/SkiaSharp/SKHighContrastConfig.xml +++ b/docs/xml/SkiaSharp/SKHighContrastConfig.xml @@ -7,6 +7,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType @@ -27,6 +28,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -51,6 +53,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -71,6 +74,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKHighContrastConfig @@ -90,6 +94,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -110,6 +115,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKHighContrastConfigInvertStyle @@ -130,6 +136,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean diff --git a/docs/xml/SkiaSharp/SKHighContrastConfigInvertStyle.xml b/docs/xml/SkiaSharp/SKHighContrastConfigInvertStyle.xml index 944f7cd3be..3311fec381 100644 --- a/docs/xml/SkiaSharp/SKHighContrastConfigInvertStyle.xml +++ b/docs/xml/SkiaSharp/SKHighContrastConfigInvertStyle.xml @@ -7,6 +7,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -26,6 +27,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKHighContrastConfigInvertStyle @@ -45,6 +47,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKHighContrastConfigInvertStyle @@ -64,6 +67,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKHighContrastConfigInvertStyle diff --git a/docs/xml/SkiaSharp/SKImage.xml b/docs/xml/SkiaSharp/SKImage.xml index 96ee1951b3..b1004cf090 100644 --- a/docs/xml/SkiaSharp/SKImage.xml +++ b/docs/xml/SkiaSharp/SKImage.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -35,6 +36,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKAlphaType @@ -56,6 +58,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -78,6 +81,42 @@ + + + + + Property + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKColorSpace + + + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKColorType + + + To be added. + To be added. + To be added. + + @@ -89,6 +128,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -114,6 +154,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -138,6 +179,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -157,6 +199,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -182,6 +225,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -229,6 +273,24 @@ + + + + + Property + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKData + + + To be added. + To be added. + To be added. + + @@ -240,7 +302,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use FromAdoptedTexture(GRContext, GRBackendTexture, GRSurfaceOrigin, SKColorType) instead.") + + SkiaSharp.SKImage @@ -264,7 +332,13 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use FromAdoptedTexture(GRContext, GRBackendTexture, GRSurfaceOrigin, SKColorType) instead.") + + SkiaSharp.SKImage @@ -280,6 +354,32 @@ SkiaSharp will delete or recycle the OpenGL texture when the image is released. + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKImage + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -291,7 +391,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use FromAdoptedTexture(GRContext, GRBackendTexture, GRSurfaceOrigin, SKColorType, SKAlphaType) instead.") + + SkiaSharp.SKImage @@ -317,7 +423,13 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use FromAdoptedTexture(GRContext, GRBackendTexture, GRSurfaceOrigin, SKColorType, SKAlphaType) instead.") + + SkiaSharp.SKImage @@ -335,6 +447,96 @@ SkiaSharp will delete or recycle the texture when the image is released. + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKImage + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKImage + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKImage + + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -346,6 +548,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -431,6 +634,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -456,6 +660,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -483,6 +688,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -510,6 +716,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -539,6 +746,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -568,6 +776,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -599,6 +808,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -624,6 +834,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -651,6 +862,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -680,7 +892,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("The Index8 color type and color table is no longer supported. Use FromPixelCopy(SKImageInfo, IntPtr, int) instead.") + + SkiaSharp.SKImage @@ -711,6 +929,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -740,6 +959,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -765,6 +985,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -792,6 +1013,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -819,6 +1041,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -848,6 +1071,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -877,7 +1101,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use FromTexture(GRContext, GRBackendTexture, GRSurfaceOrigin, SKColorType) instead.") + + SkiaSharp.SKImage @@ -901,7 +1131,13 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use FromTexture(GRContext, GRBackendTexture, GRSurfaceOrigin, SKColorType) instead.") + + SkiaSharp.SKImage @@ -917,6 +1153,32 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKImage + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -928,7 +1190,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use FromTexture(GRContext, GRBackendTexture, GRSurfaceOrigin, SKColorType, SKAlphaType) instead.") + + SkiaSharp.SKImage @@ -954,7 +1222,13 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use FromTexture(GRContext, GRBackendTexture, GRSurfaceOrigin, SKColorType, SKAlphaType) instead.") + + SkiaSharp.SKImage @@ -972,6 +1246,34 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKImage + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -983,7 +1285,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use FromTexture(GRContext, GRBackendTexture, GRSurfaceOrigin, SKColorType, SKAlphaType, SKColorSpace, SKImageTextureReleaseDelegate) instead.") + + SkiaSharp.SKImage @@ -1011,7 +1319,13 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use FromTexture(GRContext, GRBackendTexture, GRSurfaceOrigin, SKColorType, SKAlphaType, SKColorSpace, SKImageTextureReleaseDelegate) instead.") + + SkiaSharp.SKImage @@ -1031,6 +1345,36 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKImage + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -1042,7 +1386,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use FromTexture(GRContext, GRBackendTexture, GRSurfaceOrigin, SKColorType, SKAlphaType, SKColorSpace, SKImageTextureReleaseDelegate, object) instead.") + + SkiaSharp.SKImage @@ -1072,7 +1422,13 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use FromTexture(GRContext, GRBackendTexture, GRSurfaceOrigin, SKColorType, SKAlphaType, SKColorSpace, SKImageTextureReleaseDelegate, object) instead.") + + SkiaSharp.SKImage @@ -1094,6 +1450,108 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKImage + + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKImage + + + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKImage + + + + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -1105,6 +1563,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -1126,6 +1585,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1144,6 +1604,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1165,6 +1626,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1186,6 +1648,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPixmap @@ -1208,6 +1671,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1233,6 +1697,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1262,6 +1727,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1293,6 +1759,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1326,6 +1793,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1361,6 +1829,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1388,6 +1857,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1417,6 +1887,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -1442,6 +1913,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -1464,6 +1936,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShader @@ -1491,6 +1964,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShader @@ -1520,6 +1994,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.UInt32 @@ -1541,6 +2016,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 diff --git a/docs/xml/SkiaSharp/SKImageCachingHint.xml b/docs/xml/SkiaSharp/SKImageCachingHint.xml index f2950648f9..28304e9847 100644 --- a/docs/xml/SkiaSharp/SKImageCachingHint.xml +++ b/docs/xml/SkiaSharp/SKImageCachingHint.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageCachingHint @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageCachingHint diff --git a/docs/xml/SkiaSharp/SKImageFilter+CropRect.xml b/docs/xml/SkiaSharp/SKImageFilter+CropRect.xml index d862e0a4e2..fa04965cb2 100644 --- a/docs/xml/SkiaSharp/SKImageFilter+CropRect.xml +++ b/docs/xml/SkiaSharp/SKImageFilter+CropRect.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -47,6 +49,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -70,6 +73,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -94,6 +98,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCropRectFlags @@ -115,6 +120,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect diff --git a/docs/xml/SkiaSharp/SKImageFilter.xml b/docs/xml/SkiaSharp/SKImageFilter.xml index 55e60666ea..ccb80143f0 100644 --- a/docs/xml/SkiaSharp/SKImageFilter.xml +++ b/docs/xml/SkiaSharp/SKImageFilter.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -60,6 +62,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -99,6 +102,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -130,6 +134,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -161,6 +166,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -190,6 +196,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -256,6 +263,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -287,6 +295,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -322,6 +331,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -357,6 +367,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -394,6 +405,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -433,6 +445,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -463,6 +476,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -487,6 +501,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -543,6 +558,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -574,6 +590,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -603,6 +620,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -634,7 +652,57 @@ - + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKImageFilter + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKImageFilter + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + Method @@ -644,7 +712,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use CreateMerge(SKImageFilter[], SKImageFilter.CropRect) instead.") + + SkiaSharp.SKImageFilter @@ -673,7 +747,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use CreateMerge(SKImageFilter, SKImageFilter, SKImageFilter.CropRect) instead.") + + SkiaSharp.SKImageFilter @@ -704,6 +784,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -734,6 +815,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -761,6 +843,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -786,6 +869,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -842,6 +926,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -877,6 +962,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -914,6 +1000,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -955,6 +1042,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -998,6 +1086,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -1027,6 +1116,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp/SKImageInfo.xml b/docs/xml/SkiaSharp/SKImageInfo.xml index c794b0b3ae..e4d168152d 100644 --- a/docs/xml/SkiaSharp/SKImageInfo.xml +++ b/docs/xml/SkiaSharp/SKImageInfo.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -52,6 +54,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -77,6 +80,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -103,6 +107,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -132,6 +137,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKAlphaType @@ -153,6 +159,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -174,6 +181,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -195,6 +203,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -216,6 +225,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int64 @@ -236,6 +246,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorSpace @@ -257,6 +268,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorType @@ -278,6 +290,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageInfo @@ -298,6 +311,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -319,6 +333,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -340,6 +355,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -361,6 +377,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -381,6 +398,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -401,6 +419,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -421,6 +440,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -441,6 +461,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorType @@ -461,6 +482,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -482,6 +504,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -503,6 +526,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int64 @@ -524,6 +548,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSizeI @@ -545,6 +570,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -563,6 +589,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageInfo @@ -585,6 +612,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageInfo @@ -607,6 +635,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageInfo @@ -621,5 +650,29 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKImageInfo + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + diff --git a/docs/xml/SkiaSharp/SKImageRasterReleaseDelegate.xml b/docs/xml/SkiaSharp/SKImageRasterReleaseDelegate.xml index 7a80a642fe..e948864fcd 100644 --- a/docs/xml/SkiaSharp/SKImageRasterReleaseDelegate.xml +++ b/docs/xml/SkiaSharp/SKImageRasterReleaseDelegate.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Delegate diff --git a/docs/xml/SkiaSharp/SKImageTextureReleaseDelegate.xml b/docs/xml/SkiaSharp/SKImageTextureReleaseDelegate.xml index ef91b55171..2d265fc67b 100644 --- a/docs/xml/SkiaSharp/SKImageTextureReleaseDelegate.xml +++ b/docs/xml/SkiaSharp/SKImageTextureReleaseDelegate.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Delegate diff --git a/docs/xml/SkiaSharp/SKJpegEncoderAlphaOption.xml b/docs/xml/SkiaSharp/SKJpegEncoderAlphaOption.xml index b11c74a228..1b17e4bb41 100644 --- a/docs/xml/SkiaSharp/SKJpegEncoderAlphaOption.xml +++ b/docs/xml/SkiaSharp/SKJpegEncoderAlphaOption.xml @@ -5,6 +5,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Enum @@ -22,6 +23,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKJpegEncoderAlphaOption @@ -39,6 +41,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKJpegEncoderAlphaOption diff --git a/docs/xml/SkiaSharp/SKJpegEncoderDownsample.xml b/docs/xml/SkiaSharp/SKJpegEncoderDownsample.xml index 76729b3e8c..96c6ac0487 100644 --- a/docs/xml/SkiaSharp/SKJpegEncoderDownsample.xml +++ b/docs/xml/SkiaSharp/SKJpegEncoderDownsample.xml @@ -5,6 +5,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Enum @@ -22,6 +23,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKJpegEncoderDownsample @@ -39,6 +41,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKJpegEncoderDownsample @@ -56,6 +59,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKJpegEncoderDownsample diff --git a/docs/xml/SkiaSharp/SKJpegEncoderOptions.xml b/docs/xml/SkiaSharp/SKJpegEncoderOptions.xml index d10d63fce4..f64f10a1a9 100644 --- a/docs/xml/SkiaSharp/SKJpegEncoderOptions.xml +++ b/docs/xml/SkiaSharp/SKJpegEncoderOptions.xml @@ -5,6 +5,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.ValueType @@ -23,6 +24,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 @@ -45,6 +47,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 @@ -69,6 +72,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKJpegEncoderAlphaOption @@ -87,6 +91,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTransferFunctionBehavior @@ -105,6 +110,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKJpegEncoderOptions @@ -122,6 +128,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKJpegEncoderDownsample @@ -140,6 +147,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Int32 diff --git a/docs/xml/SkiaSharp/SKLattice.xml b/docs/xml/SkiaSharp/SKLattice.xml index d32b1d15da..4342a17894 100644 --- a/docs/xml/SkiaSharp/SKLattice.xml +++ b/docs/xml/SkiaSharp/SKLattice.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Nullable<SkiaSharp.SKRectI> @@ -39,6 +41,24 @@ + + + + + Property + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKColor[] + + + To be added. + To be added. + To be added. + + @@ -60,6 +80,24 @@ + + + + + Property + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKLatticeRectType[] + + + To be added. + To be added. + To be added. + + @@ -71,6 +109,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32[] @@ -92,6 +131,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32[] diff --git a/docs/xml/SkiaSharp/SKLatticeRectType.xml b/docs/xml/SkiaSharp/SKLatticeRectType.xml new file mode 100644 index 0000000000..021ffecac0 --- /dev/null +++ b/docs/xml/SkiaSharp/SKLatticeRectType.xml @@ -0,0 +1,69 @@ + + + + + + SkiaSharp + 1.68.0.0 + + + System.Enum + + + To be added. + To be added. + + + + + + + Field + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKLatticeRectType + + 0 + + To be added. + + + + + + + Field + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKLatticeRectType + + 2 + + To be added. + + + + + + + Field + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKLatticeRectType + + 1 + + To be added. + + + + diff --git a/docs/xml/SkiaSharp/SKManagedPixelSerializer.xml b/docs/xml/SkiaSharp/SKManagedPixelSerializer.xml index 47461a9c45..cef57c2743 100644 --- a/docs/xml/SkiaSharp/SKManagedPixelSerializer.xml +++ b/docs/xml/SkiaSharp/SKManagedPixelSerializer.xml @@ -1,15 +1,21 @@ - + SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPixelSerializer + + + System.Obsolete("Use SKPixelSerializer instead.") + + Represents a mechanism for serializing pixels. @@ -23,6 +29,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 diff --git a/docs/xml/SkiaSharp/SKManagedStream.xml b/docs/xml/SkiaSharp/SKManagedStream.xml index 7383806eb2..0565505255 100644 --- a/docs/xml/SkiaSharp/SKManagedStream.xml +++ b/docs/xml/SkiaSharp/SKManagedStream.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKAbstractManagedStream @@ -63,6 +64,7 @@ public static void BitmapShader (SKCanvas canvas, int width, int height) 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -84,6 +86,7 @@ public static void BitmapShader (SKCanvas canvas, int width, int height) 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -107,6 +110,7 @@ public static void BitmapShader (SKCanvas canvas, int width, int height) 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -128,6 +132,7 @@ public static void BitmapShader (SKCanvas canvas, int width, int height) SkiaSharp 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -147,6 +152,7 @@ public static void BitmapShader (SKCanvas canvas, int width, int height) SkiaSharp 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -166,6 +172,7 @@ public static void BitmapShader (SKCanvas canvas, int width, int height) SkiaSharp 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -185,6 +192,7 @@ public static void BitmapShader (SKCanvas canvas, int width, int height) SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -204,6 +212,7 @@ public static void BitmapShader (SKCanvas canvas, int width, int height) SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -223,6 +232,7 @@ public static void BitmapShader (SKCanvas canvas, int width, int height) SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -242,6 +252,7 @@ public static void BitmapShader (SKCanvas canvas, int width, int height) SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -264,6 +275,7 @@ public static void BitmapShader (SKCanvas canvas, int width, int height) SkiaSharp 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -288,6 +300,7 @@ public static void BitmapShader (SKCanvas canvas, int width, int height) SkiaSharp 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -312,6 +325,7 @@ public static void BitmapShader (SKCanvas canvas, int width, int height) SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -331,6 +345,7 @@ public static void BitmapShader (SKCanvas canvas, int width, int height) SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean diff --git a/docs/xml/SkiaSharp/SKManagedWStream.xml b/docs/xml/SkiaSharp/SKManagedWStream.xml index 64f002170a..0c04cb9f5c 100644 --- a/docs/xml/SkiaSharp/SKManagedWStream.xml +++ b/docs/xml/SkiaSharp/SKManagedWStream.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKWStream @@ -30,6 +31,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -51,6 +53,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -74,6 +77,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -95,6 +99,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -114,6 +119,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -132,6 +138,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean diff --git a/docs/xml/SkiaSharp/SKMask.xml b/docs/xml/SkiaSharp/SKMask.xml index 4aeaa84ff9..8fcd9d07dc 100644 --- a/docs/xml/SkiaSharp/SKMask.xml +++ b/docs/xml/SkiaSharp/SKMask.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -54,6 +56,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -81,6 +84,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int64 @@ -103,6 +107,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -118,7 +123,7 @@ - + Property @@ -128,6 +133,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -149,6 +155,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int64 @@ -181,6 +188,7 @@ If there is an overflow of 32bits, then returns 0. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int64 @@ -203,6 +211,7 @@ If there is an overflow of 32bits, then returns 0. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMask @@ -224,7 +233,7 @@ If there is an overflow of 32bits, then returns 0. - + Property @@ -234,6 +243,7 @@ If there is an overflow of 32bits, then returns 0. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMaskFormat @@ -255,6 +265,7 @@ If there is an overflow of 32bits, then returns 0. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -276,6 +287,7 @@ If there is an overflow of 32bits, then returns 0. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -300,6 +312,7 @@ If there is an overflow of 32bits, then returns 0. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -338,6 +351,7 @@ give unspecified results. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Byte @@ -365,6 +379,7 @@ give unspecified results. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.UInt16 @@ -392,6 +407,7 @@ give unspecified results. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.UInt32 @@ -419,6 +435,7 @@ give unspecified results. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Byte @@ -436,7 +453,7 @@ give unspecified results. - + Property @@ -446,6 +463,7 @@ give unspecified results. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -467,6 +485,7 @@ give unspecified results. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -478,7 +497,7 @@ give unspecified results. - + Property @@ -488,6 +507,7 @@ give unspecified results. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.UInt32 diff --git a/docs/xml/SkiaSharp/SKMaskFilter.xml b/docs/xml/SkiaSharp/SKMaskFilter.xml index ea06936340..123ef423f3 100644 --- a/docs/xml/SkiaSharp/SKMaskFilter.xml +++ b/docs/xml/SkiaSharp/SKMaskFilter.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -54,6 +56,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -79,6 +82,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMaskFilter @@ -106,7 +110,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use CreateBlur(SKBlurStyle, float) instead.") + + SkiaSharp.SKMaskFilter @@ -135,6 +145,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMaskFilter @@ -164,7 +175,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use CreateBlur(SKBlurStyle, float, SKRect) instead.") + + SkiaSharp.SKMaskFilter @@ -184,6 +201,34 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKMaskFilter + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -195,6 +240,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMaskFilter @@ -222,6 +268,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMaskFilter @@ -247,6 +294,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMaskFilter @@ -272,6 +320,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -285,5 +334,23 @@ To be added. + + + + + Field + + SkiaSharp + 1.68.0.0 + + + System.Int32 + + 256 + + To be added. + To be added. + + diff --git a/docs/xml/SkiaSharp/SKMaskFormat.xml b/docs/xml/SkiaSharp/SKMaskFormat.xml index d92da88856..fb2079bc00 100644 --- a/docs/xml/SkiaSharp/SKMaskFormat.xml +++ b/docs/xml/SkiaSharp/SKMaskFormat.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMaskFormat @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMaskFormat @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMaskFormat @@ -88,6 +92,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMaskFormat @@ -108,6 +113,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMaskFormat diff --git a/docs/xml/SkiaSharp/SKMatrix.xml b/docs/xml/SkiaSharp/SKMatrix.xml index edb22805ea..53b995b32d 100644 --- a/docs/xml/SkiaSharp/SKMatrix.xml +++ b/docs/xml/SkiaSharp/SKMatrix.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -57,6 +59,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -85,6 +88,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -109,6 +113,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix @@ -131,6 +136,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix @@ -156,6 +162,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix @@ -185,6 +192,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix @@ -210,6 +218,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix @@ -239,6 +248,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix @@ -266,6 +276,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix @@ -297,6 +308,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix @@ -324,6 +336,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix @@ -351,6 +364,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -376,6 +390,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -403,6 +418,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint[] @@ -428,6 +444,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -454,6 +471,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -479,6 +497,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -504,6 +523,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -532,6 +552,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -559,6 +580,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint[] @@ -584,6 +606,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -641,6 +664,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -662,6 +686,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -683,6 +708,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -704,6 +730,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -730,6 +757,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -756,6 +784,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -782,6 +811,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -808,6 +838,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -834,6 +865,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -864,6 +896,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -890,6 +923,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -920,6 +954,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -941,6 +976,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -962,6 +998,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -992,6 +1029,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -1013,6 +1051,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -1034,6 +1073,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -1055,6 +1095,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -1076,6 +1117,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1101,6 +1143,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single[] diff --git a/docs/xml/SkiaSharp/SKMatrix44.xml b/docs/xml/SkiaSharp/SKMatrix44.xml index 7ea24709c6..cf924f31e8 100644 --- a/docs/xml/SkiaSharp/SKMatrix44.xml +++ b/docs/xml/SkiaSharp/SKMatrix44.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -47,6 +49,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -89,6 +93,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -112,6 +117,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix44 @@ -134,6 +140,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix44 @@ -165,6 +172,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix44 @@ -196,6 +204,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix44 @@ -225,6 +234,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix44 @@ -254,6 +264,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Double @@ -276,6 +287,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -300,6 +312,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -327,6 +340,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix44 @@ -352,6 +366,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix44 @@ -377,6 +392,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix44 @@ -399,6 +415,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -424,6 +441,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -451,6 +469,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -476,6 +495,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint[] @@ -501,6 +521,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single[] @@ -526,6 +547,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -552,6 +574,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single[] @@ -583,6 +606,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single[] @@ -611,6 +635,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -637,6 +662,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix @@ -658,6 +684,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -682,6 +709,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -710,6 +738,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -738,6 +767,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -762,6 +792,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -790,6 +821,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -815,6 +847,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -843,6 +876,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -867,6 +901,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -893,6 +928,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -914,6 +950,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -944,6 +981,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -974,6 +1012,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1004,6 +1043,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1028,6 +1068,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1056,6 +1097,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1084,6 +1126,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single[] @@ -1106,6 +1149,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1130,6 +1174,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single[] @@ -1152,6 +1197,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1176,6 +1222,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1197,6 +1244,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix44TypeMask diff --git a/docs/xml/SkiaSharp/SKMatrix44TypeMask.xml b/docs/xml/SkiaSharp/SKMatrix44TypeMask.xml index 30d4bf4707..0a0d9f9dd1 100644 --- a/docs/xml/SkiaSharp/SKMatrix44TypeMask.xml +++ b/docs/xml/SkiaSharp/SKMatrix44TypeMask.xml @@ -8,12 +8,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum - + System.Flags @@ -33,6 +34,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix44TypeMask @@ -53,6 +55,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix44TypeMask @@ -73,6 +76,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix44TypeMask @@ -93,6 +97,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix44TypeMask @@ -113,6 +118,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrix44TypeMask diff --git a/docs/xml/SkiaSharp/SKMatrixConvolutionTileMode.xml b/docs/xml/SkiaSharp/SKMatrixConvolutionTileMode.xml index 1efa3c4fa4..70882cf8c4 100644 --- a/docs/xml/SkiaSharp/SKMatrixConvolutionTileMode.xml +++ b/docs/xml/SkiaSharp/SKMatrixConvolutionTileMode.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrixConvolutionTileMode @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrixConvolutionTileMode @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMatrixConvolutionTileMode diff --git a/docs/xml/SkiaSharp/SKMemoryStream.xml b/docs/xml/SkiaSharp/SKMemoryStream.xml index 0fdb3a9de3..dca6cdb7bf 100644 --- a/docs/xml/SkiaSharp/SKMemoryStream.xml +++ b/docs/xml/SkiaSharp/SKMemoryStream.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKStreamMemory @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -47,6 +49,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -89,6 +93,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -110,6 +115,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -134,6 +140,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp/SKNWayCanvas.xml b/docs/xml/SkiaSharp/SKNWayCanvas.xml index 553203fa3e..37c2c6b8d2 100644 --- a/docs/xml/SkiaSharp/SKNWayCanvas.xml +++ b/docs/xml/SkiaSharp/SKNWayCanvas.xml @@ -5,6 +5,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKNoDrawCanvas @@ -23,6 +24,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 @@ -43,6 +45,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -64,6 +67,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -82,6 +86,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp/SKNativeObject.xml b/docs/xml/SkiaSharp/SKNativeObject.xml index 8b6d6983fb..48dff6b2db 100644 --- a/docs/xml/SkiaSharp/SKNativeObject.xml +++ b/docs/xml/SkiaSharp/SKNativeObject.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Object @@ -36,6 +37,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -57,6 +59,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -81,6 +84,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -102,6 +106,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.IntPtr diff --git a/docs/xml/SkiaSharp/SKNoDrawCanvas.xml b/docs/xml/SkiaSharp/SKNoDrawCanvas.xml index 939a5a0327..2a8fcf4d44 100644 --- a/docs/xml/SkiaSharp/SKNoDrawCanvas.xml +++ b/docs/xml/SkiaSharp/SKNoDrawCanvas.xml @@ -5,6 +5,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCanvas @@ -23,6 +24,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 diff --git a/docs/xml/SkiaSharp/SKObject.xml b/docs/xml/SkiaSharp/SKObject.xml index e1b0121a55..07059dec4e 100644 --- a/docs/xml/SkiaSharp/SKObject.xml +++ b/docs/xml/SkiaSharp/SKObject.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKNativeObject @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -53,6 +55,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -74,6 +77,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean diff --git a/docs/xml/SkiaSharp/SKOverdrawCanvas.xml b/docs/xml/SkiaSharp/SKOverdrawCanvas.xml new file mode 100644 index 0000000000..a74845caf4 --- /dev/null +++ b/docs/xml/SkiaSharp/SKOverdrawCanvas.xml @@ -0,0 +1,37 @@ + + + + + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKNWayCanvas + + + + To be added. + To be added. + + + + + + + Constructor + + SkiaSharp + 1.68.0.0 + + + + + + To be added. + To be added. + To be added. + + + + diff --git a/docs/xml/SkiaSharp/SKPMColor.xml b/docs/xml/SkiaSharp/SKPMColor.xml index b124794e3e..fc15b0aab6 100644 --- a/docs/xml/SkiaSharp/SKPMColor.xml +++ b/docs/xml/SkiaSharp/SKPMColor.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -50,6 +52,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Byte @@ -71,6 +74,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Byte @@ -92,6 +96,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -117,6 +122,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -139,6 +145,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Byte @@ -160,6 +167,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -187,6 +195,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPMColor @@ -212,6 +221,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -237,6 +247,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.UInt32 @@ -262,6 +273,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPMColor @@ -287,6 +299,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -314,6 +327,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPMColor @@ -339,6 +353,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPMColor[] @@ -364,6 +379,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Byte @@ -385,6 +401,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.String @@ -407,6 +424,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -432,6 +450,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor[] diff --git a/docs/xml/SkiaSharp/SKPaint.xml b/docs/xml/SkiaSharp/SKPaint.xml index 275c690962..f475ab719f 100644 --- a/docs/xml/SkiaSharp/SKPaint.xml +++ b/docs/xml/SkiaSharp/SKPaint.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -151,6 +152,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -169,6 +171,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKBlendMode @@ -187,6 +190,7 @@ The example above produces the following: SkiaSharp 1.60.0.0 + 1.68.0.0 System.Int64 @@ -214,6 +218,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int64 @@ -241,6 +246,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int64 @@ -267,6 +273,7 @@ The example above produces the following: SkiaSharp 1.60.0.0 + 1.68.0.0 System.Int64 @@ -296,6 +303,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int64 @@ -325,6 +333,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int64 @@ -353,6 +362,7 @@ The example above produces the following: SkiaSharp 1.60.0.0 + 1.68.0.0 System.Int64 @@ -384,6 +394,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPaint @@ -406,6 +417,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColor @@ -427,6 +439,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorFilter @@ -448,6 +461,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -469,6 +483,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -493,6 +508,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -514,6 +530,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFilterQuality @@ -535,6 +552,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontMetrics @@ -556,6 +574,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -577,6 +596,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -606,6 +626,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -637,6 +658,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -664,6 +686,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPath @@ -691,6 +714,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPath @@ -718,6 +742,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPath @@ -747,6 +772,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPath @@ -776,6 +802,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPath @@ -805,6 +832,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPath @@ -836,6 +864,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPaintHinting @@ -857,6 +886,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageFilter @@ -878,6 +908,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -899,6 +930,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -920,6 +952,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -941,6 +974,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -962,6 +996,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -983,6 +1018,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1004,6 +1040,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1034,6 +1071,7 @@ its glyphs vertically rather than horizontally. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1056,6 +1094,7 @@ its glyphs vertically rather than horizontally. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKMaskFilter @@ -1077,6 +1116,7 @@ its glyphs vertically rather than horizontally. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -1102,6 +1142,7 @@ its glyphs vertically rather than horizontally. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -1127,6 +1168,7 @@ its glyphs vertically rather than horizontally. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -1154,6 +1196,7 @@ its glyphs vertically rather than horizontally. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -1181,6 +1224,7 @@ its glyphs vertically rather than horizontally. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -1208,6 +1252,7 @@ its glyphs vertically rather than horizontally. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -1240,6 +1285,7 @@ its glyphs vertically rather than horizontally. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathEffect @@ -1261,6 +1307,7 @@ its glyphs vertically rather than horizontally. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShader @@ -1300,6 +1347,7 @@ its glyphs vertically rather than horizontally. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKStrokeCap @@ -1321,6 +1369,7 @@ its glyphs vertically rather than horizontally. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKStrokeJoin @@ -1342,6 +1391,7 @@ its glyphs vertically rather than horizontally. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -1363,6 +1413,7 @@ its glyphs vertically rather than horizontally. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -1384,6 +1435,7 @@ its glyphs vertically rather than horizontally. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPaintStyle @@ -1405,6 +1457,7 @@ its glyphs vertically rather than horizontally. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1426,6 +1479,7 @@ its glyphs vertically rather than horizontally. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTextAlign @@ -1447,6 +1501,7 @@ its glyphs vertically rather than horizontally. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTextEncoding @@ -1468,6 +1523,7 @@ its glyphs vertically rather than horizontally. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -1489,6 +1545,7 @@ its glyphs vertically rather than horizontally. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -1510,6 +1567,7 @@ its glyphs vertically rather than horizontally. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -1531,6 +1589,7 @@ its glyphs vertically rather than horizontally. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTypeface diff --git a/docs/xml/SkiaSharp/SKPaintHinting.xml b/docs/xml/SkiaSharp/SKPaintHinting.xml index 6dd1ce5df5..f33b023a00 100644 --- a/docs/xml/SkiaSharp/SKPaintHinting.xml +++ b/docs/xml/SkiaSharp/SKPaintHinting.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPaintHinting @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPaintHinting @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPaintHinting @@ -88,6 +92,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPaintHinting diff --git a/docs/xml/SkiaSharp/SKPaintStyle.xml b/docs/xml/SkiaSharp/SKPaintStyle.xml index 69793712fe..50e557dca7 100644 --- a/docs/xml/SkiaSharp/SKPaintStyle.xml +++ b/docs/xml/SkiaSharp/SKPaintStyle.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -33,6 +34,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPaintStyle @@ -53,6 +55,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPaintStyle @@ -73,6 +76,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPaintStyle diff --git a/docs/xml/SkiaSharp/SKPath+Iterator.xml b/docs/xml/SkiaSharp/SKPath+Iterator.xml index 83338f0c0e..640cee23c6 100644 --- a/docs/xml/SkiaSharp/SKPath+Iterator.xml +++ b/docs/xml/SkiaSharp/SKPath+Iterator.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKNativeObject @@ -36,6 +37,7 @@ Iterators are created by calling the 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -65,6 +67,7 @@ Only valid if the current segment return by 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -89,6 +92,7 @@ Only valid if the current segment return by 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -111,6 +115,7 @@ Only valid if the current segment return by 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -133,6 +138,7 @@ Only valid if the current segment return by 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathVerb diff --git a/docs/xml/SkiaSharp/SKPath+OpBuilder.xml b/docs/xml/SkiaSharp/SKPath+OpBuilder.xml index 718d5c69c6..5cb1a56cdd 100644 --- a/docs/xml/SkiaSharp/SKPath+OpBuilder.xml +++ b/docs/xml/SkiaSharp/SKPath+OpBuilder.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKNativeObject @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -47,6 +49,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -73,6 +76,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -97,6 +101,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean diff --git a/docs/xml/SkiaSharp/SKPath+RawIterator.xml b/docs/xml/SkiaSharp/SKPath+RawIterator.xml index e8ac017dcb..38bce884d5 100644 --- a/docs/xml/SkiaSharp/SKPath+RawIterator.xml +++ b/docs/xml/SkiaSharp/SKPath+RawIterator.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKNativeObject @@ -37,6 +38,7 @@ method. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -59,6 +61,7 @@ method. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -83,6 +86,7 @@ method. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathVerb @@ -108,6 +112,7 @@ method. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathVerb diff --git a/docs/xml/SkiaSharp/SKPath.xml b/docs/xml/SkiaSharp/SKPath.xml index efd232a201..af45c19e8c 100644 --- a/docs/xml/SkiaSharp/SKPath.xml +++ b/docs/xml/SkiaSharp/SKPath.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -47,6 +49,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -96,6 +100,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -126,6 +131,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -182,6 +188,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -240,6 +247,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -302,6 +310,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -332,6 +341,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -356,6 +366,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -382,6 +393,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -408,6 +420,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -436,9 +449,10 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 - + System.Obsolete("Use AddRoundRect instead.") @@ -468,6 +482,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -491,6 +506,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -516,6 +532,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -546,6 +563,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -574,6 +592,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -613,6 +632,7 @@ contour to the start of the arc. However, if the path is empty, then we call 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -645,6 +665,7 @@ contour to the start of the arc. However, if the path is empty, then we call 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -677,6 +698,7 @@ contour to the start of the arc. However, if the path is empty, then we call 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -713,6 +735,7 @@ contour to the start of the arc. However, if the path is empty, then we call 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -734,6 +757,7 @@ contour to the start of the arc. However, if the path is empty, then we call 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -754,6 +778,7 @@ contour to the start of the arc. However, if the path is empty, then we call 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -780,6 +805,7 @@ contour to the start of the arc. However, if the path is empty, then we call 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -815,6 +841,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -854,6 +881,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -881,6 +909,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint[] @@ -914,6 +943,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -949,6 +979,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -984,6 +1015,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathConvexity @@ -1005,6 +1037,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPath+Iterator @@ -1038,6 +1071,7 @@ do not desire to get verbs that have been cleaned up, use the 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPath+RawIterator @@ -1068,6 +1102,7 @@ elements contained in the path. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1103,6 +1138,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1144,6 +1180,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1168,6 +1205,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathFillType @@ -1189,6 +1227,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1214,6 +1253,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -1239,6 +1279,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint[] @@ -1264,6 +1305,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -1291,6 +1333,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1316,6 +1359,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1337,6 +1381,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1358,6 +1403,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1379,6 +1425,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -1404,6 +1451,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -1425,6 +1473,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1456,6 +1505,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1489,6 +1539,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1513,6 +1564,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1539,6 +1591,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1563,6 +1616,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1589,6 +1643,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPath @@ -1616,6 +1671,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -1645,6 +1701,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPath @@ -1670,6 +1727,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -1691,6 +1749,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint[] @@ -1720,6 +1779,7 @@ return a subset of the points in the path, use 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1756,6 +1816,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1796,6 +1857,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1828,6 +1890,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1864,6 +1927,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1899,6 +1963,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1938,6 +2003,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1973,6 +2039,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2014,6 +2081,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2035,6 +2103,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2056,6 +2125,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2087,6 +2157,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2120,6 +2191,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2144,6 +2216,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2170,6 +2243,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2203,6 +2277,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2240,6 +2315,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathSegmentMask @@ -2261,6 +2337,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPath @@ -2283,6 +2360,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -2308,6 +2386,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -2329,6 +2408,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.String @@ -2351,6 +2431,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -2375,6 +2456,7 @@ the first point is automatically set to (0, 0). 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 diff --git a/docs/xml/SkiaSharp/SKPath1DPathEffectStyle.xml b/docs/xml/SkiaSharp/SKPath1DPathEffectStyle.xml index 9e29744d9e..a1586ca26e 100644 --- a/docs/xml/SkiaSharp/SKPath1DPathEffectStyle.xml +++ b/docs/xml/SkiaSharp/SKPath1DPathEffectStyle.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -33,6 +34,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPath1DPathEffectStyle @@ -53,6 +55,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPath1DPathEffectStyle @@ -73,6 +76,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPath1DPathEffectStyle diff --git a/docs/xml/SkiaSharp/SKPathAddMode.xml b/docs/xml/SkiaSharp/SKPathAddMode.xml index 44b6f8962f..5e3d35d671 100644 --- a/docs/xml/SkiaSharp/SKPathAddMode.xml +++ b/docs/xml/SkiaSharp/SKPathAddMode.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathAddMode @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathAddMode diff --git a/docs/xml/SkiaSharp/SKPathArcSize.xml b/docs/xml/SkiaSharp/SKPathArcSize.xml index 127c56f9e7..903e8c2868 100644 --- a/docs/xml/SkiaSharp/SKPathArcSize.xml +++ b/docs/xml/SkiaSharp/SKPathArcSize.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathArcSize @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathArcSize diff --git a/docs/xml/SkiaSharp/SKPathConvexity.xml b/docs/xml/SkiaSharp/SKPathConvexity.xml index 1f654cbf7c..3b2e8cee5d 100644 --- a/docs/xml/SkiaSharp/SKPathConvexity.xml +++ b/docs/xml/SkiaSharp/SKPathConvexity.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathConvexity @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathConvexity @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathConvexity diff --git a/docs/xml/SkiaSharp/SKPathDirection.xml b/docs/xml/SkiaSharp/SKPathDirection.xml index 55d3a468c3..145425a12a 100644 --- a/docs/xml/SkiaSharp/SKPathDirection.xml +++ b/docs/xml/SkiaSharp/SKPathDirection.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathDirection @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathDirection diff --git a/docs/xml/SkiaSharp/SKPathEffect.xml b/docs/xml/SkiaSharp/SKPathEffect.xml index ae91b09736..6e69cffebe 100644 --- a/docs/xml/SkiaSharp/SKPathEffect.xml +++ b/docs/xml/SkiaSharp/SKPathEffect.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -64,6 +65,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathEffect @@ -95,6 +97,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathEffect @@ -122,6 +125,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathEffect @@ -173,6 +177,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathEffect @@ -200,6 +205,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathEffect @@ -225,6 +231,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathEffect @@ -255,6 +262,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathEffect @@ -284,6 +292,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathEffect @@ -311,6 +320,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp/SKPathFillType.xml b/docs/xml/SkiaSharp/SKPathFillType.xml index f81d9368ac..453bd5df60 100644 --- a/docs/xml/SkiaSharp/SKPathFillType.xml +++ b/docs/xml/SkiaSharp/SKPathFillType.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathFillType @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathFillType @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathFillType @@ -88,6 +92,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathFillType diff --git a/docs/xml/SkiaSharp/SKPathMeasure.xml b/docs/xml/SkiaSharp/SKPathMeasure.xml index 91ef39b84a..a9e72337db 100644 --- a/docs/xml/SkiaSharp/SKPathMeasure.xml +++ b/docs/xml/SkiaSharp/SKPathMeasure.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -47,6 +49,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -72,6 +75,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -129,6 +133,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -158,6 +163,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -185,6 +191,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -214,6 +221,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -245,6 +253,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -272,6 +281,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -293,6 +303,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -314,6 +325,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -336,6 +348,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp/SKPathMeasureMatrixFlags.xml b/docs/xml/SkiaSharp/SKPathMeasureMatrixFlags.xml index 68d337f6ba..b25a105180 100644 --- a/docs/xml/SkiaSharp/SKPathMeasureMatrixFlags.xml +++ b/docs/xml/SkiaSharp/SKPathMeasureMatrixFlags.xml @@ -8,12 +8,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum - + System.Flags @@ -33,6 +34,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathMeasureMatrixFlags @@ -53,6 +55,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathMeasureMatrixFlags @@ -73,6 +76,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathMeasureMatrixFlags diff --git a/docs/xml/SkiaSharp/SKPathOp.xml b/docs/xml/SkiaSharp/SKPathOp.xml index a224122181..e7a97c1080 100644 --- a/docs/xml/SkiaSharp/SKPathOp.xml +++ b/docs/xml/SkiaSharp/SKPathOp.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathOp @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathOp @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathOp @@ -88,6 +92,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathOp @@ -108,6 +113,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathOp diff --git a/docs/xml/SkiaSharp/SKPathSegmentMask.xml b/docs/xml/SkiaSharp/SKPathSegmentMask.xml index c94a80499f..f0979a5c99 100644 --- a/docs/xml/SkiaSharp/SKPathSegmentMask.xml +++ b/docs/xml/SkiaSharp/SKPathSegmentMask.xml @@ -8,12 +8,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum - + System.Flags @@ -33,6 +34,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathSegmentMask @@ -53,6 +55,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathSegmentMask @@ -73,6 +76,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathSegmentMask @@ -93,6 +97,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathSegmentMask diff --git a/docs/xml/SkiaSharp/SKPathVerb.xml b/docs/xml/SkiaSharp/SKPathVerb.xml index e3add5e43a..feedd7dd04 100644 --- a/docs/xml/SkiaSharp/SKPathVerb.xml +++ b/docs/xml/SkiaSharp/SKPathVerb.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathVerb @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathVerb @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathVerb @@ -88,6 +92,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathVerb @@ -108,6 +113,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathVerb @@ -128,6 +134,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathVerb @@ -148,6 +155,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPathVerb diff --git a/docs/xml/SkiaSharp/SKPicture.xml b/docs/xml/SkiaSharp/SKPicture.xml index d25e9d6e65..f185dda1fc 100644 --- a/docs/xml/SkiaSharp/SKPicture.xml +++ b/docs/xml/SkiaSharp/SKPicture.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -54,6 +55,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -75,6 +77,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -99,6 +102,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.UInt32 diff --git a/docs/xml/SkiaSharp/SKPictureRecorder.xml b/docs/xml/SkiaSharp/SKPictureRecorder.xml index 027862d403..3737f49fe8 100644 --- a/docs/xml/SkiaSharp/SKPictureRecorder.xml +++ b/docs/xml/SkiaSharp/SKPictureRecorder.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -47,6 +49,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCanvas @@ -72,6 +75,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -96,6 +100,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPicture @@ -126,6 +131,7 @@ This invalidates the canvas returned by 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCanvas diff --git a/docs/xml/SkiaSharp/SKPixelGeometry.xml b/docs/xml/SkiaSharp/SKPixelGeometry.xml index 78981e3674..7c16914215 100644 --- a/docs/xml/SkiaSharp/SKPixelGeometry.xml +++ b/docs/xml/SkiaSharp/SKPixelGeometry.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPixelGeometry @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPixelGeometry @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPixelGeometry @@ -88,6 +92,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPixelGeometry @@ -108,6 +113,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPixelGeometry diff --git a/docs/xml/SkiaSharp/SKPixelSerializer.xml b/docs/xml/SkiaSharp/SKPixelSerializer.xml index b55626278e..1e7f351628 100644 --- a/docs/xml/SkiaSharp/SKPixelSerializer.xml +++ b/docs/xml/SkiaSharp/SKPixelSerializer.xml @@ -1,20 +1,41 @@ - - + + SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject + System.Object - + + + System.IDisposable + + Represents a mechanism for serializing pixels. + + + + + Constructor + + SkiaSharp + 1.68.0.0 + + + + To be added. + To be added. + + @@ -23,6 +44,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPixelSerializer @@ -45,6 +67,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPixelSerializer @@ -62,13 +85,35 @@ - - + + + + Method + + M:System.IDisposable.Dispose + + + SkiaSharp + 1.68.0.0 + + + System.Void + + + + To be added. + To be added. + + + + + Method SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -90,6 +135,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -104,6 +150,52 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKData + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -112,6 +204,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean diff --git a/docs/xml/SkiaSharp/SKPixmap.xml b/docs/xml/SkiaSharp/SKPixmap.xml index 956b81f034..ac467a148b 100644 --- a/docs/xml/SkiaSharp/SKPixmap.xml +++ b/docs/xml/SkiaSharp/SKPixmap.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -47,6 +49,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -60,7 +63,29 @@ - + + + + Constructor + + SkiaSharp + 1.68.0.0 + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + Constructor @@ -70,7 +95,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("The Index8 color type and color table is no longer supported. Use SKPixmap(SKImageInfo, IntPtr, int) instead.") + + @@ -97,6 +128,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKAlphaType @@ -118,6 +150,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -128,6 +161,24 @@ + + + + + Property + + SkiaSharp + 1.68.0.0 + + + System.Int32 + + + To be added. + To be added. + To be added. + + @@ -138,6 +189,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorSpace @@ -159,7 +211,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("The Index8 color type and color table is no longer supported.") + + SkiaSharp.SKColorTable @@ -180,6 +238,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKColorType @@ -201,6 +260,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -222,6 +282,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -244,6 +305,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -266,6 +328,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -291,6 +354,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKData @@ -315,6 +379,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -339,6 +404,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -363,6 +429,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -390,6 +457,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -416,6 +484,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -442,6 +511,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -468,6 +538,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -494,6 +565,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -525,6 +597,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -545,6 +618,122 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKPixmap + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKColor + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -556,6 +745,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -567,6 +757,30 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.IntPtr + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -578,6 +792,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -599,6 +814,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImageInfo @@ -618,6 +834,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -641,6 +858,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -668,6 +886,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -695,6 +914,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -717,6 +937,56 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKRectI + + + To be added. + To be added. + To be added. + + @@ -728,6 +998,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -739,7 +1010,32 @@ - + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Void + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + Method @@ -749,7 +1045,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("The Index8 color type and color table is no longer supported. Use Reset(SKImageInfo, IntPtr, int) instead.") + + System.Void @@ -779,7 +1081,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use ScalePixels(SKPixmap, SKFilterQuality) instead.") + + System.Boolean @@ -808,6 +1116,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -818,6 +1127,48 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Property + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSizeI + + + To be added. + To be added. + To be added. + + @@ -829,6 +1180,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -847,6 +1199,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPixmap @@ -869,6 +1222,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPixmap @@ -891,6 +1245,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPixmap diff --git a/docs/xml/SkiaSharp/SKPngEncoderFilterFlags.xml b/docs/xml/SkiaSharp/SKPngEncoderFilterFlags.xml index 94f78feea8..09346b688a 100644 --- a/docs/xml/SkiaSharp/SKPngEncoderFilterFlags.xml +++ b/docs/xml/SkiaSharp/SKPngEncoderFilterFlags.xml @@ -5,12 +5,13 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Enum - + System.Flags @@ -27,6 +28,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPngEncoderFilterFlags @@ -44,6 +46,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPngEncoderFilterFlags @@ -61,6 +64,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPngEncoderFilterFlags @@ -78,6 +82,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPngEncoderFilterFlags @@ -95,6 +100,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPngEncoderFilterFlags @@ -112,6 +118,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPngEncoderFilterFlags @@ -129,6 +136,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPngEncoderFilterFlags diff --git a/docs/xml/SkiaSharp/SKPngEncoderOptions.xml b/docs/xml/SkiaSharp/SKPngEncoderOptions.xml index 43bbc76f2b..fc3f958781 100644 --- a/docs/xml/SkiaSharp/SKPngEncoderOptions.xml +++ b/docs/xml/SkiaSharp/SKPngEncoderOptions.xml @@ -5,6 +5,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.ValueType @@ -23,6 +24,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 @@ -43,6 +45,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 @@ -65,6 +68,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPngEncoderOptions @@ -82,6 +86,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPngEncoderFilterFlags @@ -104,6 +109,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTransferFunctionBehavior @@ -122,6 +128,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Int32 diff --git a/docs/xml/SkiaSharp/SKPoint.xml b/docs/xml/SkiaSharp/SKPoint.xml index e87550933a..5ae7b73ca7 100644 --- a/docs/xml/SkiaSharp/SKPoint.xml +++ b/docs/xml/SkiaSharp/SKPoint.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -52,6 +54,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -79,6 +82,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -106,6 +110,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -133,6 +138,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -160,6 +166,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -180,6 +187,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -205,6 +213,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -227,6 +236,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -248,6 +258,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -272,6 +283,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -298,6 +310,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -325,6 +338,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -352,6 +366,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -379,6 +394,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -406,6 +422,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -433,6 +450,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -460,6 +478,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -487,6 +506,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -514,6 +534,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -541,6 +562,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -568,6 +590,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -595,6 +618,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -622,6 +646,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -649,6 +674,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -676,6 +702,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.String @@ -698,6 +725,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -719,6 +747,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single diff --git a/docs/xml/SkiaSharp/SKPoint3.xml b/docs/xml/SkiaSharp/SKPoint3.xml index 7e7c66e9b7..9cf7fe7834 100644 --- a/docs/xml/SkiaSharp/SKPoint3.xml +++ b/docs/xml/SkiaSharp/SKPoint3.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -54,6 +56,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint3 @@ -81,6 +84,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint3 @@ -101,6 +105,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -126,6 +131,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -148,6 +154,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -169,6 +176,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint3 @@ -196,6 +204,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -223,6 +232,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -250,6 +260,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint3 @@ -277,6 +288,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint3 @@ -304,6 +316,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.String @@ -326,6 +339,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -347,6 +361,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -368,6 +383,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single diff --git a/docs/xml/SkiaSharp/SKPointI.xml b/docs/xml/SkiaSharp/SKPointI.xml index 16c9966906..31c8ebed29 100644 --- a/docs/xml/SkiaSharp/SKPointI.xml +++ b/docs/xml/SkiaSharp/SKPointI.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -50,6 +52,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -73,6 +76,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointI @@ -100,6 +104,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointI @@ -127,6 +132,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointI @@ -152,6 +158,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointI @@ -172,6 +179,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -197,6 +205,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -219,6 +228,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -240,6 +250,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -264,6 +275,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -290,6 +302,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointI @@ -317,6 +330,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointI @@ -344,6 +358,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -371,6 +386,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSizeI @@ -396,6 +412,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -421,6 +438,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -448,6 +466,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointI @@ -475,6 +494,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointI @@ -502,6 +522,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointI @@ -527,6 +548,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointI @@ -554,6 +576,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointI @@ -581,6 +604,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.String @@ -603,6 +627,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointI @@ -628,6 +653,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -649,6 +675,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 diff --git a/docs/xml/SkiaSharp/SKPointMode.xml b/docs/xml/SkiaSharp/SKPointMode.xml index 118a13a7fa..1c3ba0cfc8 100644 --- a/docs/xml/SkiaSharp/SKPointMode.xml +++ b/docs/xml/SkiaSharp/SKPointMode.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointMode @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointMode @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointMode diff --git a/docs/xml/SkiaSharp/SKRect.xml b/docs/xml/SkiaSharp/SKRect.xml index fd5930e2a1..90dd8c25d2 100644 --- a/docs/xml/SkiaSharp/SKRect.xml +++ b/docs/xml/SkiaSharp/SKRect.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -56,6 +58,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -81,6 +84,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -106,6 +110,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -127,6 +132,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -152,6 +158,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -177,6 +184,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -204,6 +212,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -229,6 +238,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -256,6 +266,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -283,6 +294,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -314,6 +326,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -334,6 +347,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -359,6 +373,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -381,6 +396,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -402,6 +418,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -426,6 +443,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -452,6 +470,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -481,6 +500,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -505,6 +525,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -532,6 +553,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -557,6 +579,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -582,6 +605,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -603,6 +627,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -624,6 +649,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -645,6 +671,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -666,6 +693,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -687,6 +715,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -711,6 +740,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -737,6 +767,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -764,6 +795,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -789,6 +821,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -816,6 +849,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -837,6 +871,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -858,6 +893,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -879,6 +915,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -900,6 +937,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.String @@ -922,6 +960,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -946,6 +985,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -973,6 +1013,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single diff --git a/docs/xml/SkiaSharp/SKRectI.xml b/docs/xml/SkiaSharp/SKRectI.xml index 84e6544d0b..d39055fa8d 100644 --- a/docs/xml/SkiaSharp/SKRectI.xml +++ b/docs/xml/SkiaSharp/SKRectI.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -56,6 +58,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -81,6 +84,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -106,6 +110,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -127,6 +132,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -151,6 +157,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -178,6 +185,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -203,6 +211,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -228,6 +237,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -255,6 +265,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -280,6 +291,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -307,6 +319,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -334,6 +347,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -365,6 +379,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -385,6 +400,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -409,6 +425,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -433,6 +450,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -460,6 +478,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -482,6 +501,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -503,6 +523,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -527,6 +548,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -553,6 +575,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -582,6 +605,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -606,6 +630,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -633,6 +658,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -658,6 +684,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -679,6 +706,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -700,6 +728,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointI @@ -721,6 +750,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -742,6 +772,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -763,6 +794,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -787,6 +819,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -813,6 +846,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -840,6 +874,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -867,6 +902,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -888,6 +924,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -913,6 +950,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSizeI @@ -934,6 +972,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -955,6 +994,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -976,6 +1016,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.String @@ -998,6 +1039,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -1023,6 +1065,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -1047,6 +1090,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -1074,6 +1118,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 diff --git a/docs/xml/SkiaSharp/SKRegion.xml b/docs/xml/SkiaSharp/SKRegion.xml index db2df7ed98..4e1ce26c0b 100644 --- a/docs/xml/SkiaSharp/SKRegion.xml +++ b/docs/xml/SkiaSharp/SKRegion.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -47,6 +49,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRectI @@ -89,6 +93,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -114,6 +119,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -139,6 +145,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -166,6 +173,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -191,6 +199,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -216,6 +225,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -243,6 +253,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -270,6 +281,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -303,6 +315,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -328,6 +341,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -355,6 +369,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -380,6 +395,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean diff --git a/docs/xml/SkiaSharp/SKRegionOperation.xml b/docs/xml/SkiaSharp/SKRegionOperation.xml index 1bdd8af244..fb99100afa 100644 --- a/docs/xml/SkiaSharp/SKRegionOperation.xml +++ b/docs/xml/SkiaSharp/SKRegionOperation.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRegionOperation @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRegionOperation @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRegionOperation @@ -88,6 +92,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRegionOperation @@ -108,6 +113,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRegionOperation @@ -128,6 +134,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRegionOperation diff --git a/docs/xml/SkiaSharp/SKRoundRect.xml b/docs/xml/SkiaSharp/SKRoundRect.xml index 91a3b8c23d..356fbe6b39 100644 --- a/docs/xml/SkiaSharp/SKRoundRect.xml +++ b/docs/xml/SkiaSharp/SKRoundRect.xml @@ -5,6 +5,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -23,6 +24,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 @@ -38,6 +40,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 @@ -56,6 +59,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 @@ -74,6 +78,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 @@ -96,6 +101,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -114,6 +120,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -136,6 +143,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -158,6 +166,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -179,6 +188,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -202,6 +212,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -223,6 +234,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -245,6 +257,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Single @@ -263,6 +276,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -284,6 +298,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -307,6 +322,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Boolean @@ -325,6 +341,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -346,6 +363,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -369,6 +387,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRect @@ -387,6 +406,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -405,6 +425,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -434,6 +455,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -455,6 +477,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -476,6 +499,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -501,6 +525,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -524,6 +549,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRoundRect @@ -546,6 +572,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRoundRectType @@ -564,6 +591,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Single diff --git a/docs/xml/SkiaSharp/SKRoundRectCorner.xml b/docs/xml/SkiaSharp/SKRoundRectCorner.xml index 8b01bdbe52..ee6bd0eb89 100644 --- a/docs/xml/SkiaSharp/SKRoundRectCorner.xml +++ b/docs/xml/SkiaSharp/SKRoundRectCorner.xml @@ -5,6 +5,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Enum @@ -22,6 +23,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRoundRectCorner @@ -39,6 +41,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRoundRectCorner @@ -56,6 +59,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRoundRectCorner @@ -73,6 +77,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRoundRectCorner diff --git a/docs/xml/SkiaSharp/SKRoundRectType.xml b/docs/xml/SkiaSharp/SKRoundRectType.xml index e08691571e..93831bff46 100644 --- a/docs/xml/SkiaSharp/SKRoundRectType.xml +++ b/docs/xml/SkiaSharp/SKRoundRectType.xml @@ -5,6 +5,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Enum @@ -22,6 +23,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRoundRectType @@ -39,6 +41,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRoundRectType @@ -56,6 +59,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRoundRectType @@ -73,6 +77,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRoundRectType @@ -90,6 +95,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRoundRectType @@ -107,6 +113,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKRoundRectType diff --git a/docs/xml/SkiaSharp/SKShader.xml b/docs/xml/SkiaSharp/SKShader.xml index 361c380253..d9e88f6762 100644 --- a/docs/xml/SkiaSharp/SKShader.xml +++ b/docs/xml/SkiaSharp/SKShader.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -263,6 +264,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShader @@ -295,6 +297,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShader @@ -329,6 +332,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShader @@ -354,6 +358,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShader @@ -431,6 +436,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShader @@ -458,6 +464,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShader @@ -520,6 +527,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShader @@ -590,6 +598,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShader @@ -623,6 +632,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShader @@ -658,6 +668,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShader @@ -685,6 +696,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShader @@ -716,6 +728,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShader @@ -749,6 +762,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShader @@ -780,6 +794,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShader @@ -813,6 +828,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShader @@ -846,6 +862,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShader @@ -881,6 +898,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShader @@ -910,6 +928,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShader @@ -941,6 +960,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShader @@ -978,6 +998,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShader @@ -1017,6 +1038,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp/SKShaderTileMode.xml b/docs/xml/SkiaSharp/SKShaderTileMode.xml index 64b1d70c42..1c2286af82 100644 --- a/docs/xml/SkiaSharp/SKShaderTileMode.xml +++ b/docs/xml/SkiaSharp/SKShaderTileMode.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShaderTileMode @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShaderTileMode @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKShaderTileMode diff --git a/docs/xml/SkiaSharp/SKSize.xml b/docs/xml/SkiaSharp/SKSize.xml index 9cad247ff9..bd84aca236 100644 --- a/docs/xml/SkiaSharp/SKSize.xml +++ b/docs/xml/SkiaSharp/SKSize.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -50,6 +52,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -73,6 +76,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -100,6 +104,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -120,6 +125,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -145,6 +151,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -167,6 +174,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single @@ -188,6 +196,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -209,6 +218,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -236,6 +246,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -263,6 +274,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -288,6 +300,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -313,6 +326,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -340,6 +354,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -367,6 +382,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSize @@ -394,6 +410,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPoint @@ -416,6 +433,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSizeI @@ -438,6 +456,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.String @@ -460,6 +479,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Single diff --git a/docs/xml/SkiaSharp/SKSizeI.xml b/docs/xml/SkiaSharp/SKSizeI.xml index ce1397ea47..ae30d03eb4 100644 --- a/docs/xml/SkiaSharp/SKSizeI.xml +++ b/docs/xml/SkiaSharp/SKSizeI.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -50,6 +52,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -73,6 +76,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSizeI @@ -100,6 +104,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSizeI @@ -120,6 +125,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -145,6 +151,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -167,6 +174,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -188,6 +196,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -209,6 +218,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSizeI @@ -236,6 +246,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -263,6 +274,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointI @@ -288,6 +300,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -315,6 +328,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSizeI @@ -342,6 +356,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSizeI @@ -369,6 +384,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPointI @@ -391,6 +407,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.String @@ -413,6 +430,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 diff --git a/docs/xml/SkiaSharp/SKStream.xml b/docs/xml/SkiaSharp/SKStream.xml index 94cdd6c45b..6349e890be 100644 --- a/docs/xml/SkiaSharp/SKStream.xml +++ b/docs/xml/SkiaSharp/SKStream.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.IntPtr @@ -51,6 +53,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -72,6 +75,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -93,6 +97,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -114,6 +119,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -135,6 +141,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -157,6 +164,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Int32 @@ -184,6 +192,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -205,6 +214,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -232,6 +242,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -248,6 +259,47 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -259,6 +311,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Byte @@ -270,6 +323,28 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -281,6 +356,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int16 @@ -292,6 +368,28 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -303,6 +401,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -314,6 +413,28 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -325,6 +446,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.SByte @@ -336,6 +458,28 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -347,6 +491,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.UInt16 @@ -358,6 +503,28 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -369,6 +536,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.UInt32 @@ -380,6 +548,28 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.Boolean + + + + + + To be added. + To be added. + To be added. + To be added. + + @@ -391,6 +581,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -413,6 +604,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -438,6 +630,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 diff --git a/docs/xml/SkiaSharp/SKStreamAsset.xml b/docs/xml/SkiaSharp/SKStreamAsset.xml index 55405c102f..b8d4b0a0e5 100644 --- a/docs/xml/SkiaSharp/SKStreamAsset.xml +++ b/docs/xml/SkiaSharp/SKStreamAsset.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKStreamSeekable diff --git a/docs/xml/SkiaSharp/SKStreamMemory.xml b/docs/xml/SkiaSharp/SKStreamMemory.xml index 7e277f3723..50098680b9 100644 --- a/docs/xml/SkiaSharp/SKStreamMemory.xml +++ b/docs/xml/SkiaSharp/SKStreamMemory.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKStreamAsset diff --git a/docs/xml/SkiaSharp/SKStreamRewindable.xml b/docs/xml/SkiaSharp/SKStreamRewindable.xml index 4094fc32dc..2c82a521f9 100644 --- a/docs/xml/SkiaSharp/SKStreamRewindable.xml +++ b/docs/xml/SkiaSharp/SKStreamRewindable.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKStream diff --git a/docs/xml/SkiaSharp/SKStreamSeekable.xml b/docs/xml/SkiaSharp/SKStreamSeekable.xml index a211e4996f..a8822c0373 100644 --- a/docs/xml/SkiaSharp/SKStreamSeekable.xml +++ b/docs/xml/SkiaSharp/SKStreamSeekable.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKStreamRewindable diff --git a/docs/xml/SkiaSharp/SKStrokeCap.xml b/docs/xml/SkiaSharp/SKStrokeCap.xml index 2ebe5b989b..495c3e09a8 100644 --- a/docs/xml/SkiaSharp/SKStrokeCap.xml +++ b/docs/xml/SkiaSharp/SKStrokeCap.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKStrokeCap @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKStrokeCap @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKStrokeCap diff --git a/docs/xml/SkiaSharp/SKStrokeJoin.xml b/docs/xml/SkiaSharp/SKStrokeJoin.xml index 8cb22f4253..cc991fc3b8 100644 --- a/docs/xml/SkiaSharp/SKStrokeJoin.xml +++ b/docs/xml/SkiaSharp/SKStrokeJoin.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKStrokeJoin @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKStrokeJoin @@ -92,6 +95,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKStrokeJoin diff --git a/docs/xml/SkiaSharp/SKSurface.xml b/docs/xml/SkiaSharp/SKSurface.xml index d74f881656..03f7328443 100644 --- a/docs/xml/SkiaSharp/SKSurface.xml +++ b/docs/xml/SkiaSharp/SKSurface.xml @@ -1,6 +1,6 @@ - + SkiaSharp @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -78,6 +79,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCanvas @@ -99,6 +101,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface @@ -123,6 +126,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface @@ -148,7 +152,13 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use Create(GRContext, GRBackendRenderTarget, GRSurfaceOrigin, SKColorType) instead.") + + SkiaSharp.SKSurface @@ -175,7 +185,13 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use Create(GRContext, GRBackendTexture, GRSurfaceOrigin, int, SKColorType) instead.") + + SkiaSharp.SKSurface @@ -199,7 +215,13 @@ The example above produces the following: SkiaSharp 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use Create(GRContext, GRBackendTexture, GRSurfaceOrigin, int, SKColorType) instead.") + + SkiaSharp.SKSurface @@ -226,6 +248,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface @@ -242,6 +265,54 @@ The example above produces the following: This will create a buffer with the parameters specified in and the properties specified in . + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -252,6 +323,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface @@ -268,6 +340,32 @@ The example above produces the following: + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -279,7 +377,13 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use Create(GRContext, GRBackendRenderTarget, GRSurfaceOrigin, SKColorType, SKSurfaceProps) instead.") + + SkiaSharp.SKSurface @@ -297,6 +401,32 @@ The example above produces the following: + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -308,7 +438,13 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use Create(GRContext, GRBackendTexture, GRSurfaceOrigin, int, SKColorType, SKSurfaceProps) instead.") + + SkiaSharp.SKSurface @@ -334,7 +470,13 @@ The example above produces the following: SkiaSharp 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use Create(GRContext, GRBackendTexture, GRSurfaceOrigin, int, SKColorType, SKSurfaceProps) instead.") + + SkiaSharp.SKSurface @@ -363,6 +505,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface @@ -381,6 +524,58 @@ The example above produces the following: + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -392,6 +587,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface @@ -410,6 +606,146 @@ The example above produces the following: This will create a buffer that will be backend by the in-memory buffer provided in . + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -421,6 +757,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface @@ -452,6 +789,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface @@ -483,7 +821,13 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use Create(SKImageInfo) instead.") + + SkiaSharp.SKSurface @@ -504,106 +848,495 @@ The example above produces the following: - - - + + + Method SkiaSharp - 1.57.0.0 - 1.58.0.0 - 1.59.0.0 - 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface - - - - + + + + - The graphics context. - Whether an allocation should count against a cache budget. - The image configuration parameters. - The number of samples. - The surface property configuration. - Creates a new surface whose contents will be drawn to an offscreen render target, allocated by the surface. - Returns the new surface if it could be created and the configuration is supported, otherwise . - + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. - - - + + + Method SkiaSharp - 1.57.0.0 - 1.58.0.0 - 1.59.0.0 - 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface - - + + + - - The desired width for the surface. - The desired height for the surface. - The color type to use for the surface. - The transparency mode to use for the surface. - The surface property configuration. - Creates a new surface with the specified image parameters and surface properties. - Returns the new surface if it could be created and the configuration is supported, otherwise . - + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. - - - + + + Method SkiaSharp - 1.57.0.0 - 1.58.0.0 - 1.59.0.0 - 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurface - - + + + - - - + - The desired width for the surface. - The desired height for the surface. - The color type to use for the surface. - The transparency mode to use for the surface. - The pointer to an in memory-buffer that can hold the image as specified. - The number of bytes per row in the pixel buffer. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.57.0.0 + 1.58.0.0 + 1.59.0.0 + 1.60.0.0 + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + + + The graphics context. + Whether an allocation should count against a cache budget. + The image configuration parameters. + The number of samples. + The surface property configuration. + Creates a new surface whose contents will be drawn to an offscreen render target, allocated by the surface. + Returns the new surface if it could be created and the configuration is supported, otherwise . + + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.57.0.0 + 1.58.0.0 + 1.59.0.0 + 1.60.0.0 + 1.68.0.0 + + + + System.Obsolete("Use Create(SKImageInfo, SKSurfaceProps) instead.") + + + + SkiaSharp.SKSurface + + + + + + + + + + The desired width for the surface. + The desired height for the surface. + The color type to use for the surface. + The transparency mode to use for the surface. + The surface property configuration. + Creates a new surface with the specified image parameters and surface properties. + Returns the new surface if it could be created and the configuration is supported, otherwise . + + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.57.0.0 + 1.58.0.0 + 1.59.0.0 + 1.60.0.0 + 1.68.0.0 + + + + System.Obsolete("Use Create(SKImageInfo, IntPtr, int) instead.") + + + + SkiaSharp.SKSurface + + + + + + + + + + + The desired width for the surface. + The desired height for the surface. + The color type to use for the surface. + The transparency mode to use for the surface. + The pointer to an in memory-buffer that can hold the image as specified. + The number of bytes per row in the pixel buffer. Creates a new surface with the specified image parameters using a provided buffer. Returns the new surface if it could be created and the configuration is supported, otherwise . + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -615,7 +1348,13 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use Create(SKImageInfo, IntPtr, int, SKSurfaceProps) instead.") + + SkiaSharp.SKSurface @@ -652,7 +1391,13 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use CreateAsRenderTarget(GRContext, GRBackendTexture, GRSurfaceOrigin, int, SKColorType) instead.") + + SkiaSharp.SKSurface @@ -676,7 +1421,13 @@ The example above produces the following: SkiaSharp 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use CreateAsRenderTarget(GRContext, GRBackendTexture, GRSurfaceOrigin, int, SKColorType) instead.") + + SkiaSharp.SKSurface @@ -692,6 +1443,32 @@ The example above produces the following: The flag must be set on for this to succeed. The texture must remain valid for the lifetime of the surface. + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -703,7 +1480,13 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use CreateAsRenderTarget(GRContext, GRBackendTexture, GRSurfaceOrigin, int, SKColorType, SKSurfaceProps) instead.") + + SkiaSharp.SKSurface @@ -729,7 +1512,13 @@ The example above produces the following: SkiaSharp 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use CreateAsRenderTarget(GRContext, GRBackendTexture, GRSurfaceOrigin, int, SKColorType, SKSurfaceProps) instead.") + + SkiaSharp.SKSurface @@ -747,6 +1536,244 @@ The example above produces the following: The flag must be set on for this to succeed. The texture must remain valid for the lifetime of the surface. + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKSurface + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + @@ -758,6 +1785,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -782,6 +1810,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -812,6 +1841,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPixmap @@ -834,6 +1864,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -859,6 +1890,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -892,6 +1924,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKImage @@ -914,6 +1947,7 @@ The example above produces the following: 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurfaceProps diff --git a/docs/xml/SkiaSharp/SKSurfaceProps.xml b/docs/xml/SkiaSharp/SKSurfaceProps.xml index 4ca5a89a31..3d30cefaf0 100644 --- a/docs/xml/SkiaSharp/SKSurfaceProps.xml +++ b/docs/xml/SkiaSharp/SKSurfaceProps.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.ValueType @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurfacePropsFlags @@ -50,6 +52,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKPixelGeometry diff --git a/docs/xml/SkiaSharp/SKSurfacePropsFlags.xml b/docs/xml/SkiaSharp/SKSurfacePropsFlags.xml index b35a1674ce..1be1515642 100644 --- a/docs/xml/SkiaSharp/SKSurfacePropsFlags.xml +++ b/docs/xml/SkiaSharp/SKSurfacePropsFlags.xml @@ -8,12 +8,13 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum - + System.Flags @@ -31,6 +32,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurfacePropsFlags @@ -51,6 +53,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKSurfacePropsFlags diff --git a/docs/xml/SkiaSharp/SKSurfaceReleaseDelegate.xml b/docs/xml/SkiaSharp/SKSurfaceReleaseDelegate.xml new file mode 100644 index 0000000000..292d7b5434 --- /dev/null +++ b/docs/xml/SkiaSharp/SKSurfaceReleaseDelegate.xml @@ -0,0 +1,25 @@ + + + + + + SkiaSharp + 1.68.0.0 + + + System.Delegate + + + + + + + System.Void + + + To be added. + To be added. + To be added. + To be added. + + diff --git a/docs/xml/SkiaSharp/SKSvgCanvas.xml b/docs/xml/SkiaSharp/SKSvgCanvas.xml index 112e7d887a..4599ff9037 100644 --- a/docs/xml/SkiaSharp/SKSvgCanvas.xml +++ b/docs/xml/SkiaSharp/SKSvgCanvas.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Object @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKCanvas diff --git a/docs/xml/SkiaSharp/SKSwizzle.xml b/docs/xml/SkiaSharp/SKSwizzle.xml index 26203502c0..d429854abf 100644 --- a/docs/xml/SkiaSharp/SKSwizzle.xml +++ b/docs/xml/SkiaSharp/SKSwizzle.xml @@ -5,6 +5,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Object @@ -23,6 +24,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void @@ -46,6 +48,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp/SKTextAlign.xml b/docs/xml/SkiaSharp/SKTextAlign.xml index 8ac95e885b..ee0065aa9e 100644 --- a/docs/xml/SkiaSharp/SKTextAlign.xml +++ b/docs/xml/SkiaSharp/SKTextAlign.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTextAlign @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTextAlign @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTextAlign diff --git a/docs/xml/SkiaSharp/SKTextEncoding.xml b/docs/xml/SkiaSharp/SKTextEncoding.xml index 0dd8f7b9fd..795b8a5aad 100644 --- a/docs/xml/SkiaSharp/SKTextEncoding.xml +++ b/docs/xml/SkiaSharp/SKTextEncoding.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTextEncoding @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTextEncoding @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTextEncoding @@ -88,6 +92,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTextEncoding diff --git a/docs/xml/SkiaSharp/SKTransferFunctionBehavior.xml b/docs/xml/SkiaSharp/SKTransferFunctionBehavior.xml index 7c18f05bff..0ca3711cd3 100644 --- a/docs/xml/SkiaSharp/SKTransferFunctionBehavior.xml +++ b/docs/xml/SkiaSharp/SKTransferFunctionBehavior.xml @@ -6,6 +6,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -24,6 +25,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTransferFunctionBehavior @@ -42,6 +44,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTransferFunctionBehavior diff --git a/docs/xml/SkiaSharp/SKTypeface.xml b/docs/xml/SkiaSharp/SKTypeface.xml index cbd622fc12..bbd141c6c8 100644 --- a/docs/xml/SkiaSharp/SKTypeface.xml +++ b/docs/xml/SkiaSharp/SKTypeface.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -42,6 +43,7 @@ Typeface objects are immutable, and so they can be shared between threads. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -69,6 +71,7 @@ Typeface objects are immutable, and so they can be shared between threads. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -100,6 +103,7 @@ Typeface objects are immutable, and so they can be shared between threads. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -125,6 +129,7 @@ Typeface objects are immutable, and so they can be shared between threads. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -154,6 +159,7 @@ Typeface objects are immutable, and so they can be shared between threads. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -178,6 +184,7 @@ Typeface objects are immutable, and so they can be shared between threads. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.String @@ -199,6 +206,7 @@ Typeface objects are immutable, and so they can be shared between threads. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKFontStyleSlant @@ -209,6 +217,24 @@ Typeface objects are immutable, and so they can be shared between threads. This may be one of the values in . + + + + + Property + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKFontStyle + + + To be added. + To be added. + To be added. + + @@ -220,6 +246,7 @@ Typeface objects are immutable, and so they can be shared between threads. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -241,6 +268,7 @@ Typeface objects are immutable, and so they can be shared between threads. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -260,6 +288,7 @@ Typeface objects are immutable, and so they can be shared between threads. SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTypeface @@ -277,7 +306,53 @@ Typeface objects are immutable, and so they can be shared between threads. - + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKTypeface + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKTypeface + + + + + + + To be added. + To be added. + To be added. + To be added. + To be added. + + + + Method @@ -287,7 +362,13 @@ Typeface objects are immutable, and so they can be shared between threads. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use FromFamilyName(string, SKFontStyleWeight, SKFontStyleWidth, SKFontStyleSlant) instead.") + + SkiaSharp.SKTypeface @@ -314,6 +395,7 @@ Typeface objects are immutable, and so they can be shared between threads. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTypeface @@ -345,6 +427,7 @@ Typeface objects are immutable, and so they can be shared between threads. 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTypeface @@ -409,6 +492,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTypeface @@ -436,6 +520,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTypeface @@ -463,6 +548,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTypeface @@ -480,7 +566,7 @@ using (var surface = SKSurface.Create(info)) { - + Method @@ -490,7 +576,13 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete + + SkiaSharp.SKTypeface @@ -517,6 +609,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Byte[] @@ -542,6 +635,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.UInt32[] @@ -564,6 +658,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKStreamAsset @@ -586,6 +681,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKStreamAsset @@ -611,7 +707,13 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 + + + System.Obsolete("Use FontWeight and FontSlant instead.") + + SkiaSharp.SKTypefaceStyle @@ -632,6 +734,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -659,6 +762,7 @@ using (var surface = SKSurface.Create(info)) { 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 diff --git a/docs/xml/SkiaSharp/SKTypefaceStyle.xml b/docs/xml/SkiaSharp/SKTypefaceStyle.xml index f78e454aa5..eb7481074e 100644 --- a/docs/xml/SkiaSharp/SKTypefaceStyle.xml +++ b/docs/xml/SkiaSharp/SKTypefaceStyle.xml @@ -8,14 +8,18 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum - + System.Flags + + System.Obsolete("Use SKFontStyleWeight and SKFontStyleSlant instead.") + Specifies the intrinsic style attributes of a given typeface. @@ -33,6 +37,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTypefaceStyle @@ -53,6 +58,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTypefaceStyle @@ -73,6 +79,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTypefaceStyle @@ -93,6 +100,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTypefaceStyle diff --git a/docs/xml/SkiaSharp/SKVertexMode.xml b/docs/xml/SkiaSharp/SKVertexMode.xml index 560338114e..2e8d94be13 100644 --- a/docs/xml/SkiaSharp/SKVertexMode.xml +++ b/docs/xml/SkiaSharp/SKVertexMode.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKVertexMode @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKVertexMode @@ -68,6 +71,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKVertexMode diff --git a/docs/xml/SkiaSharp/SKVertices.xml b/docs/xml/SkiaSharp/SKVertices.xml index de7c74cb33..7711b70de4 100644 --- a/docs/xml/SkiaSharp/SKVertices.xml +++ b/docs/xml/SkiaSharp/SKVertices.xml @@ -6,6 +6,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -25,6 +26,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKVertices @@ -52,6 +54,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKVertices @@ -81,6 +84,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKVertices @@ -112,6 +116,7 @@ SkiaSharp 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp/SKWStream.xml b/docs/xml/SkiaSharp/SKWStream.xml index 92a543aa88..43fd20b907 100644 --- a/docs/xml/SkiaSharp/SKWStream.xml +++ b/docs/xml/SkiaSharp/SKWStream.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -50,6 +52,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void @@ -71,6 +74,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 @@ -96,6 +100,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -118,6 +123,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -145,6 +151,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -170,6 +177,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -195,6 +203,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -220,6 +229,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -247,6 +257,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -272,6 +283,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -297,6 +309,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -324,6 +337,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -349,6 +363,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -374,6 +389,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -399,6 +415,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -426,6 +443,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean diff --git a/docs/xml/SkiaSharp/SKWebpEncoderCompression.xml b/docs/xml/SkiaSharp/SKWebpEncoderCompression.xml index 5a1be85ac3..4892394b88 100644 --- a/docs/xml/SkiaSharp/SKWebpEncoderCompression.xml +++ b/docs/xml/SkiaSharp/SKWebpEncoderCompression.xml @@ -5,6 +5,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Enum @@ -22,6 +23,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKWebpEncoderCompression @@ -39,6 +41,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKWebpEncoderCompression diff --git a/docs/xml/SkiaSharp/SKWebpEncoderOptions.xml b/docs/xml/SkiaSharp/SKWebpEncoderOptions.xml index ea69c2133c..739f7b6a39 100644 --- a/docs/xml/SkiaSharp/SKWebpEncoderOptions.xml +++ b/docs/xml/SkiaSharp/SKWebpEncoderOptions.xml @@ -5,6 +5,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.ValueType @@ -23,6 +24,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 @@ -43,6 +45,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 @@ -65,6 +68,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKWebpEncoderCompression @@ -83,6 +87,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKWebpEncoderOptions @@ -100,6 +105,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.Single @@ -121,6 +127,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 SkiaSharp.SKTransferFunctionBehavior diff --git a/docs/xml/SkiaSharp/SKXmlStreamWriter.xml b/docs/xml/SkiaSharp/SKXmlStreamWriter.xml index 600f6b4f94..e83b9b1a46 100644 --- a/docs/xml/SkiaSharp/SKXmlStreamWriter.xml +++ b/docs/xml/SkiaSharp/SKXmlStreamWriter.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKXmlWriter @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 @@ -50,6 +52,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Void diff --git a/docs/xml/SkiaSharp/SKXmlWriter.xml b/docs/xml/SkiaSharp/SKXmlWriter.xml index f65ba93e9d..333715a282 100644 --- a/docs/xml/SkiaSharp/SKXmlWriter.xml +++ b/docs/xml/SkiaSharp/SKXmlWriter.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKObject diff --git a/docs/xml/SkiaSharp/SKZeroInitialized.xml b/docs/xml/SkiaSharp/SKZeroInitialized.xml index 6805c02099..304ac1cd45 100644 --- a/docs/xml/SkiaSharp/SKZeroInitialized.xml +++ b/docs/xml/SkiaSharp/SKZeroInitialized.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Enum @@ -28,6 +29,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKZeroInitialized @@ -48,6 +50,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 SkiaSharp.SKZeroInitialized diff --git a/docs/xml/SkiaSharp/SkiaExtensions.xml b/docs/xml/SkiaSharp/SkiaExtensions.xml index 51f0eecf68..36294eef59 100644 --- a/docs/xml/SkiaSharp/SkiaExtensions.xml +++ b/docs/xml/SkiaSharp/SkiaExtensions.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Object @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -54,6 +56,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -79,6 +82,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -104,6 +108,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Boolean @@ -118,5 +123,120 @@ + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.SKColorType + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + + System.Obsolete + + + + SkiaSharp.SKFilterQuality + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + SkiaSharp.GRPixelConfig + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.UInt32 + + + + + + To be added. + To be added. + To be added. + To be added. + + + + + + + Method + + SkiaSharp + 1.68.0.0 + + + System.UInt32 + + + + + + To be added. + To be added. + To be added. + To be added. + + diff --git a/docs/xml/SkiaSharp/StringUtilities.xml b/docs/xml/SkiaSharp/StringUtilities.xml index 46630cf6b7..67c3ba066e 100644 --- a/docs/xml/SkiaSharp/StringUtilities.xml +++ b/docs/xml/SkiaSharp/StringUtilities.xml @@ -8,6 +8,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Object @@ -29,6 +30,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Byte[] @@ -56,6 +58,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.String @@ -83,6 +86,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.String @@ -109,6 +113,7 @@ SkiaSharp 1.60.0.0 + 1.68.0.0 System.String @@ -140,6 +145,7 @@ 1.58.0.0 1.59.0.0 1.60.0.0 + 1.68.0.0 System.Int32 diff --git a/docs/xml/index.xml b/docs/xml/index.xml index 4c9b5bf18d..b0ed35e61d 100644 --- a/docs/xml/index.xml +++ b/docs/xml/index.xml @@ -1,21 +1,21 @@ - + [00 24 00 00 04 80 00 00 94 00 00 00 06 02 00 00 00 24 00 00 52 53 41 31 00 04 00 00 01 00 01 00 79 15 99 77 d2 d0 3a 8e 6b ea 7a 2e 74 e8 d1 af cc 93 e8 85 19 74 95 2b b4 80 a1 2c 91 34 47 4d 04 06 24 47 c3 7e 0e 68 c0 80 53 6f cf 3c 3f be 2f f9 c9 79 ce 99 84 75 e5 06 e8 ce 82 dd 5b 0f 35 0d c1 0e 93 bf 2e ee cf 87 4b 24 77 0c 50 81 db ea 74 47 fd da fa 27 7b 22 de 47 d6 ff ea 44 96 74 a4 f9 fc cf 84 d1 50 69 08 93 80 28 4d bd d3 5f 46 cd ff 12 a1 bd 78 e4 ef 00 65 d0 16 df ] - + System.Diagnostics.Debuggable(System.Diagnostics.DebuggableAttribute+DebuggingModes.Default | System.Diagnostics.DebuggableAttribute+DebuggingModes.DisableOptimizations | System.Diagnostics.DebuggableAttribute+DebuggingModes.IgnoreSymbolStoreSequencePoints | System.Diagnostics.DebuggableAttribute+DebuggingModes.EnableEditAndContinue) - + System.Reflection.AssemblyCompany("Xamarin Inc.") - + System.Reflection.AssemblyConfiguration("Debug") - + System.Reflection.AssemblyCopyright("© Microsoft Corporation. All rights reserved.") - + System.Reflection.AssemblyDescription("SkiaSharp is a cross-platform 2D graphics API for .NET platforms that can be used across mobile, server and desktop models to render images.") @@ -24,25 +24,25 @@ System.Reflection.AssemblyInformationalVersion("1.60.3.0") - + System.Reflection.AssemblyProduct("SkiaSharp") - + System.Reflection.AssemblyTitle("SkiaSharp") - + System.Resources.NeutralResourcesLanguage("en") - + System.Runtime.CompilerServices.CompilationRelaxations(8) - + System.Runtime.CompilerServices.InternalsVisibleTo("SkiaSharp.Tests, PublicKey=002400000480000094000000060200000024000052534131000400000100010079159977d2d03a8e6bea7a2e74e8d1afcc93e8851974952bb480a12c9134474d04062447c37e0e68c080536fcf3c3fbe2ff9c979ce998475e506e8ce82dd5b0f350dc10e93bf2eeecf874b24770c5081dbea7447fddafa277b22de47d6ffea449674a4f9fccf84d15069089380284dbdd35f46cdff12a1bd78e4ef0065d016df") - + System.Runtime.CompilerServices.RuntimeCompatibility(WrapNonExceptionThrows=true) - + System.Runtime.Versioning.TargetFramework(".NETStandard,Version=v1.3", FrameworkDisplayName="") @@ -126,24 +126,30 @@ System.Reflection.AssemblyInformationalVersion("1.60.2.0") + + System.Reflection.AssemblyFileVersion("1.68.0.0") + + + System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d") + - + [00 24 00 00 04 80 00 00 94 00 00 00 06 02 00 00 00 24 00 00 52 53 41 31 00 04 00 00 01 00 01 00 79 15 99 77 d2 d0 3a 8e 6b ea 7a 2e 74 e8 d1 af cc 93 e8 85 19 74 95 2b b4 80 a1 2c 91 34 47 4d 04 06 24 47 c3 7e 0e 68 c0 80 53 6f cf 3c 3f be 2f f9 c9 79 ce 99 84 75 e5 06 e8 ce 82 dd 5b 0f 35 0d c1 0e 93 bf 2e ee cf 87 4b 24 77 0c 50 81 db ea 74 47 fd da fa 27 7b 22 de 47 d6 ff ea 44 96 74 a4 f9 fc cf 84 d1 50 69 08 93 80 28 4d bd d3 5f 46 cd ff 12 a1 bd 78 e4 ef 00 65 d0 16 df ] - + System.Diagnostics.Debuggable(System.Diagnostics.DebuggableAttribute+DebuggingModes.IgnoreSymbolStoreSequencePoints) - + System.Reflection.AssemblyCompany("Xamarin Inc.") - + System.Reflection.AssemblyConfiguration("Release") - + System.Reflection.AssemblyCopyright("© Microsoft Corporation. All rights reserved.") - + System.Reflection.AssemblyDescription("SkiaSharp Views & Layers are a set of platform-specific views and containers that can be used to draw on the screen.") @@ -152,22 +158,22 @@ System.Reflection.AssemblyInformationalVersion("1.60.3.0") - + System.Reflection.AssemblyProduct("SkiaSharp.Views") - + System.Reflection.AssemblyTitle("SkiaSharp.Views") - + System.Resources.NeutralResourcesLanguage("en") - + System.Runtime.CompilerServices.CompilationRelaxations(8) - + System.Runtime.CompilerServices.RuntimeCompatibility(WrapNonExceptionThrows=true) - + System.Runtime.Versioning.TargetFramework("MonoAndroid,Version=v4.0.3", FrameworkDisplayName="Xamarin.Android v4.0.3 Support") @@ -260,24 +266,30 @@ System.Reflection.AssemblyInformationalVersion("1.60.2.0") + + System.Reflection.AssemblyFileVersion("1.68.0.0") + + + System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d") + - + [00 24 00 00 04 80 00 00 94 00 00 00 06 02 00 00 00 24 00 00 52 53 41 31 00 04 00 00 01 00 01 00 79 15 99 77 d2 d0 3a 8e 6b ea 7a 2e 74 e8 d1 af cc 93 e8 85 19 74 95 2b b4 80 a1 2c 91 34 47 4d 04 06 24 47 c3 7e 0e 68 c0 80 53 6f cf 3c 3f be 2f f9 c9 79 ce 99 84 75 e5 06 e8 ce 82 dd 5b 0f 35 0d c1 0e 93 bf 2e ee cf 87 4b 24 77 0c 50 81 db ea 74 47 fd da fa 27 7b 22 de 47 d6 ff ea 44 96 74 a4 f9 fc cf 84 d1 50 69 08 93 80 28 4d bd d3 5f 46 cd ff 12 a1 bd 78 e4 ef 00 65 d0 16 df ] - + System.Diagnostics.Debuggable(System.Diagnostics.DebuggableAttribute+DebuggingModes.IgnoreSymbolStoreSequencePoints) - + System.Reflection.AssemblyCompany("Xamarin Inc.") - + System.Reflection.AssemblyConfiguration("Release") - + System.Reflection.AssemblyCopyright("© Microsoft Corporation. All rights reserved.") - + System.Reflection.AssemblyDescription("SkiaSharp Views & Layers are a set of platform-specific views and containers that can be used to draw on the screen.") @@ -286,22 +298,22 @@ System.Reflection.AssemblyInformationalVersion("1.60.3.0") - + System.Reflection.AssemblyProduct("SkiaSharp.Views") - + System.Reflection.AssemblyTitle("SkiaSharp.Views") - + System.Resources.NeutralResourcesLanguage("en") - + System.Runtime.CompilerServices.CompilationRelaxations(8) - + System.Runtime.CompilerServices.RuntimeCompatibility(WrapNonExceptionThrows=true) - + System.Runtime.Versioning.TargetFramework(".NETFramework,Version=v4.5", FrameworkDisplayName=".NET Framework 4.5") @@ -388,24 +400,30 @@ System.Reflection.AssemblyInformationalVersion("1.60.2.0") + + System.Reflection.AssemblyFileVersion("1.68.0.0") + + + System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d") + - + [00 24 00 00 04 80 00 00 94 00 00 00 06 02 00 00 00 24 00 00 52 53 41 31 00 04 00 00 01 00 01 00 79 15 99 77 d2 d0 3a 8e 6b ea 7a 2e 74 e8 d1 af cc 93 e8 85 19 74 95 2b b4 80 a1 2c 91 34 47 4d 04 06 24 47 c3 7e 0e 68 c0 80 53 6f cf 3c 3f be 2f f9 c9 79 ce 99 84 75 e5 06 e8 ce 82 dd 5b 0f 35 0d c1 0e 93 bf 2e ee cf 87 4b 24 77 0c 50 81 db ea 74 47 fd da fa 27 7b 22 de 47 d6 ff ea 44 96 74 a4 f9 fc cf 84 d1 50 69 08 93 80 28 4d bd d3 5f 46 cd ff 12 a1 bd 78 e4 ef 00 65 d0 16 df ] - + System.Diagnostics.Debuggable(System.Diagnostics.DebuggableAttribute+DebuggingModes.IgnoreSymbolStoreSequencePoints) - + System.Reflection.AssemblyCompany("Xamarin Inc.") - + System.Reflection.AssemblyConfiguration("Release") - + System.Reflection.AssemblyCopyright("© Microsoft Corporation. All rights reserved.") - + System.Reflection.AssemblyDescription("SkiaSharp Views & Layers are a set of platform-specific views and containers that can be used to draw on the screen.") @@ -414,22 +432,22 @@ System.Reflection.AssemblyInformationalVersion("1.60.3.0") - + System.Reflection.AssemblyProduct("SkiaSharp.Views") - + System.Reflection.AssemblyTitle("SkiaSharp.Views") - + System.Resources.NeutralResourcesLanguage("en") - + System.Runtime.CompilerServices.CompilationRelaxations(8) - + System.Runtime.CompilerServices.RuntimeCompatibility(WrapNonExceptionThrows=true) - + System.Runtime.Versioning.TargetFramework(".NETFramework,Version=v4.5", FrameworkDisplayName=".NET Framework 4.5") @@ -462,24 +480,30 @@ System.Reflection.AssemblyInformationalVersion("1.60.2.0") + + System.Reflection.AssemblyFileVersion("1.68.0.0") + + + System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d") + - + [00 24 00 00 04 80 00 00 94 00 00 00 06 02 00 00 00 24 00 00 52 53 41 31 00 04 00 00 01 00 01 00 79 15 99 77 d2 d0 3a 8e 6b ea 7a 2e 74 e8 d1 af cc 93 e8 85 19 74 95 2b b4 80 a1 2c 91 34 47 4d 04 06 24 47 c3 7e 0e 68 c0 80 53 6f cf 3c 3f be 2f f9 c9 79 ce 99 84 75 e5 06 e8 ce 82 dd 5b 0f 35 0d c1 0e 93 bf 2e ee cf 87 4b 24 77 0c 50 81 db ea 74 47 fd da fa 27 7b 22 de 47 d6 ff ea 44 96 74 a4 f9 fc cf 84 d1 50 69 08 93 80 28 4d bd d3 5f 46 cd ff 12 a1 bd 78 e4 ef 00 65 d0 16 df ] - + System.Diagnostics.Debuggable(System.Diagnostics.DebuggableAttribute+DebuggingModes.IgnoreSymbolStoreSequencePoints) - + System.Reflection.AssemblyCompany("Xamarin Inc.") - + System.Reflection.AssemblyConfiguration("Release") - + System.Reflection.AssemblyCopyright("© Microsoft Corporation. All rights reserved.") - + System.Reflection.AssemblyDescription("SkiaSharp Views & Layers are a set of platform-specific views and containers that can be used to draw on the screen.") @@ -488,22 +512,22 @@ System.Reflection.AssemblyInformationalVersion("1.60.3.0") - + System.Reflection.AssemblyProduct("SkiaSharp.Views") - + System.Reflection.AssemblyTitle("SkiaSharp.Views") - + System.Resources.NeutralResourcesLanguage("en") - + System.Runtime.CompilerServices.CompilationRelaxations(8) - + System.Runtime.CompilerServices.RuntimeCompatibility(WrapNonExceptionThrows=true) - + System.Runtime.Versioning.TargetFramework(".NETFramework,Version=v4.5", FrameworkDisplayName=".NET Framework 4.5") @@ -590,24 +614,30 @@ System.Reflection.AssemblyInformationalVersion("1.60.2.0") + + System.Reflection.AssemblyFileVersion("1.68.0.0") + + + System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d") + - + [00 24 00 00 04 80 00 00 94 00 00 00 06 02 00 00 00 24 00 00 52 53 41 31 00 04 00 00 01 00 01 00 79 15 99 77 d2 d0 3a 8e 6b ea 7a 2e 74 e8 d1 af cc 93 e8 85 19 74 95 2b b4 80 a1 2c 91 34 47 4d 04 06 24 47 c3 7e 0e 68 c0 80 53 6f cf 3c 3f be 2f f9 c9 79 ce 99 84 75 e5 06 e8 ce 82 dd 5b 0f 35 0d c1 0e 93 bf 2e ee cf 87 4b 24 77 0c 50 81 db ea 74 47 fd da fa 27 7b 22 de 47 d6 ff ea 44 96 74 a4 f9 fc cf 84 d1 50 69 08 93 80 28 4d bd d3 5f 46 cd ff 12 a1 bd 78 e4 ef 00 65 d0 16 df ] - + System.Diagnostics.Debuggable(System.Diagnostics.DebuggableAttribute+DebuggingModes.IgnoreSymbolStoreSequencePoints) - + System.Reflection.AssemblyCompany("Xamarin Inc.") - + System.Reflection.AssemblyConfiguration("Release") - + System.Reflection.AssemblyCopyright("© Microsoft Corporation. All rights reserved.") - + System.Reflection.AssemblyDescription("SkiaSharp Views & Layers are a set of platform-specific views and containers that can be used to draw on the screen.") @@ -616,22 +646,22 @@ System.Reflection.AssemblyInformationalVersion("1.60.3.0") - + System.Reflection.AssemblyProduct("SkiaSharp.Views") - + System.Reflection.AssemblyTitle("SkiaSharp.Views") - + System.Resources.NeutralResourcesLanguage("en") - + System.Runtime.CompilerServices.CompilationRelaxations(8) - + System.Runtime.CompilerServices.RuntimeCompatibility(WrapNonExceptionThrows=true) - + System.Runtime.Versioning.TargetFramework("Tizen,Version=v4.0", FrameworkDisplayName="") @@ -646,24 +676,30 @@ System.Reflection.AssemblyInformationalVersion("1.60.2.0") + + System.Reflection.AssemblyFileVersion("1.68.0.0") + + + System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d") + - + [00 24 00 00 04 80 00 00 94 00 00 00 06 02 00 00 00 24 00 00 52 53 41 31 00 04 00 00 01 00 01 00 79 15 99 77 d2 d0 3a 8e 6b ea 7a 2e 74 e8 d1 af cc 93 e8 85 19 74 95 2b b4 80 a1 2c 91 34 47 4d 04 06 24 47 c3 7e 0e 68 c0 80 53 6f cf 3c 3f be 2f f9 c9 79 ce 99 84 75 e5 06 e8 ce 82 dd 5b 0f 35 0d c1 0e 93 bf 2e ee cf 87 4b 24 77 0c 50 81 db ea 74 47 fd da fa 27 7b 22 de 47 d6 ff ea 44 96 74 a4 f9 fc cf 84 d1 50 69 08 93 80 28 4d bd d3 5f 46 cd ff 12 a1 bd 78 e4 ef 00 65 d0 16 df ] - + System.Diagnostics.Debuggable(System.Diagnostics.DebuggableAttribute+DebuggingModes.IgnoreSymbolStoreSequencePoints) - + System.Reflection.AssemblyCompany("Xamarin Inc.") - + System.Reflection.AssemblyConfiguration("Release") - + System.Reflection.AssemblyCopyright("© Microsoft Corporation. All rights reserved.") - + System.Reflection.AssemblyDescription("SkiaSharp Views & Layers are a set of platform-specific views and containers that can be used to draw on the screen.") @@ -672,22 +708,22 @@ System.Reflection.AssemblyInformationalVersion("1.60.3.0") - + System.Reflection.AssemblyProduct("SkiaSharp.Views") - + System.Reflection.AssemblyTitle("SkiaSharp.Views") - + System.Resources.NeutralResourcesLanguage("en") - + System.Runtime.CompilerServices.CompilationRelaxations(8) - + System.Runtime.CompilerServices.RuntimeCompatibility(WrapNonExceptionThrows=true) - + System.Runtime.Versioning.TargetFramework(".NETCore,Version=v5.0", FrameworkDisplayName=".NET for Windows Universal") @@ -774,24 +810,30 @@ System.Reflection.AssemblyInformationalVersion("1.60.2.0") + + System.Reflection.AssemblyFileVersion("1.68.0.0") + + + System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d") + - + [00 24 00 00 04 80 00 00 94 00 00 00 06 02 00 00 00 24 00 00 52 53 41 31 00 04 00 00 01 00 01 00 79 15 99 77 d2 d0 3a 8e 6b ea 7a 2e 74 e8 d1 af cc 93 e8 85 19 74 95 2b b4 80 a1 2c 91 34 47 4d 04 06 24 47 c3 7e 0e 68 c0 80 53 6f cf 3c 3f be 2f f9 c9 79 ce 99 84 75 e5 06 e8 ce 82 dd 5b 0f 35 0d c1 0e 93 bf 2e ee cf 87 4b 24 77 0c 50 81 db ea 74 47 fd da fa 27 7b 22 de 47 d6 ff ea 44 96 74 a4 f9 fc cf 84 d1 50 69 08 93 80 28 4d bd d3 5f 46 cd ff 12 a1 bd 78 e4 ef 00 65 d0 16 df ] - + System.Diagnostics.Debuggable(System.Diagnostics.DebuggableAttribute+DebuggingModes.IgnoreSymbolStoreSequencePoints) - + System.Reflection.AssemblyCompany("Xamarin Inc.") - + System.Reflection.AssemblyConfiguration("Release") - + System.Reflection.AssemblyCopyright("© Microsoft Corporation. All rights reserved.") - + System.Reflection.AssemblyDescription("SkiaSharp Views & Layers are a set of platform-specific views and containers that can be used to draw on the screen.") @@ -800,22 +842,22 @@ System.Reflection.AssemblyInformationalVersion("1.60.3.0") - + System.Reflection.AssemblyProduct("SkiaSharp.Views") - + System.Reflection.AssemblyTitle("SkiaSharp.Views") - + System.Resources.NeutralResourcesLanguage("en") - + System.Runtime.CompilerServices.CompilationRelaxations(8) - + System.Runtime.CompilerServices.RuntimeCompatibility(WrapNonExceptionThrows=true) - + System.Runtime.Versioning.TargetFramework("Xamarin.iOS,Version=v1.0", FrameworkDisplayName="Xamarin.iOS") @@ -905,24 +947,30 @@ System.Reflection.AssemblyInformationalVersion("1.60.2.0") + + System.Reflection.AssemblyFileVersion("1.68.0.0") + + + System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d") + - + [00 24 00 00 04 80 00 00 94 00 00 00 06 02 00 00 00 24 00 00 52 53 41 31 00 04 00 00 01 00 01 00 79 15 99 77 d2 d0 3a 8e 6b ea 7a 2e 74 e8 d1 af cc 93 e8 85 19 74 95 2b b4 80 a1 2c 91 34 47 4d 04 06 24 47 c3 7e 0e 68 c0 80 53 6f cf 3c 3f be 2f f9 c9 79 ce 99 84 75 e5 06 e8 ce 82 dd 5b 0f 35 0d c1 0e 93 bf 2e ee cf 87 4b 24 77 0c 50 81 db ea 74 47 fd da fa 27 7b 22 de 47 d6 ff ea 44 96 74 a4 f9 fc cf 84 d1 50 69 08 93 80 28 4d bd d3 5f 46 cd ff 12 a1 bd 78 e4 ef 00 65 d0 16 df ] - + System.Diagnostics.Debuggable(System.Diagnostics.DebuggableAttribute+DebuggingModes.IgnoreSymbolStoreSequencePoints) - + System.Reflection.AssemblyCompany("Xamarin Inc.") - + System.Reflection.AssemblyConfiguration("Release") - + System.Reflection.AssemblyCopyright("© Microsoft Corporation. All rights reserved.") - + System.Reflection.AssemblyDescription("SkiaSharp Views & Layers are a set of platform-specific views and containers that can be used to draw on the screen.") @@ -931,22 +979,22 @@ System.Reflection.AssemblyInformationalVersion("1.60.3.0") - + System.Reflection.AssemblyProduct("SkiaSharp.Views") - + System.Reflection.AssemblyTitle("SkiaSharp.Views") - + System.Resources.NeutralResourcesLanguage("en") - + System.Runtime.CompilerServices.CompilationRelaxations(8) - + System.Runtime.CompilerServices.RuntimeCompatibility(WrapNonExceptionThrows=true) - + System.Runtime.Versioning.TargetFramework("Xamarin.Mac,Version=v2.0", FrameworkDisplayName="Xamarin.Mac") @@ -1036,24 +1084,30 @@ System.Reflection.AssemblyInformationalVersion("1.60.2.0") + + System.Reflection.AssemblyFileVersion("1.68.0.0") + + + System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d") + - + [00 24 00 00 04 80 00 00 94 00 00 00 06 02 00 00 00 24 00 00 52 53 41 31 00 04 00 00 01 00 01 00 79 15 99 77 d2 d0 3a 8e 6b ea 7a 2e 74 e8 d1 af cc 93 e8 85 19 74 95 2b b4 80 a1 2c 91 34 47 4d 04 06 24 47 c3 7e 0e 68 c0 80 53 6f cf 3c 3f be 2f f9 c9 79 ce 99 84 75 e5 06 e8 ce 82 dd 5b 0f 35 0d c1 0e 93 bf 2e ee cf 87 4b 24 77 0c 50 81 db ea 74 47 fd da fa 27 7b 22 de 47 d6 ff ea 44 96 74 a4 f9 fc cf 84 d1 50 69 08 93 80 28 4d bd d3 5f 46 cd ff 12 a1 bd 78 e4 ef 00 65 d0 16 df ] - + System.Diagnostics.Debuggable(System.Diagnostics.DebuggableAttribute+DebuggingModes.IgnoreSymbolStoreSequencePoints) - + System.Reflection.AssemblyCompany("Xamarin Inc.") - + System.Reflection.AssemblyConfiguration("Release") - + System.Reflection.AssemblyCopyright("© Microsoft Corporation. All rights reserved.") - + System.Reflection.AssemblyDescription("SkiaSharp Views & Layers are a set of platform-specific views and containers that can be used to draw on the screen.") @@ -1062,22 +1116,22 @@ System.Reflection.AssemblyInformationalVersion("1.60.3.0") - + System.Reflection.AssemblyProduct("SkiaSharp.Views") - + System.Reflection.AssemblyTitle("SkiaSharp.Views") - + System.Resources.NeutralResourcesLanguage("en") - + System.Runtime.CompilerServices.CompilationRelaxations(8) - + System.Runtime.CompilerServices.RuntimeCompatibility(WrapNonExceptionThrows=true) - + System.Runtime.Versioning.TargetFramework("Xamarin.TVOS,Version=v1.0", FrameworkDisplayName="Xamarin.TVOS") @@ -1167,24 +1221,30 @@ System.Reflection.AssemblyInformationalVersion("1.60.2.0") + + System.Reflection.AssemblyFileVersion("1.68.0.0") + + + System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d") + - + [00 24 00 00 04 80 00 00 94 00 00 00 06 02 00 00 00 24 00 00 52 53 41 31 00 04 00 00 01 00 01 00 79 15 99 77 d2 d0 3a 8e 6b ea 7a 2e 74 e8 d1 af cc 93 e8 85 19 74 95 2b b4 80 a1 2c 91 34 47 4d 04 06 24 47 c3 7e 0e 68 c0 80 53 6f cf 3c 3f be 2f f9 c9 79 ce 99 84 75 e5 06 e8 ce 82 dd 5b 0f 35 0d c1 0e 93 bf 2e ee cf 87 4b 24 77 0c 50 81 db ea 74 47 fd da fa 27 7b 22 de 47 d6 ff ea 44 96 74 a4 f9 fc cf 84 d1 50 69 08 93 80 28 4d bd d3 5f 46 cd ff 12 a1 bd 78 e4 ef 00 65 d0 16 df ] - + System.Diagnostics.Debuggable(System.Diagnostics.DebuggableAttribute+DebuggingModes.IgnoreSymbolStoreSequencePoints) - + System.Reflection.AssemblyCompany("Xamarin Inc.") - + System.Reflection.AssemblyConfiguration("Release") - + System.Reflection.AssemblyCopyright("© Microsoft Corporation. All rights reserved.") - + System.Reflection.AssemblyDescription("SkiaSharp Views & Layers are a set of platform-specific views and containers that can be used to draw on the screen.") @@ -1193,22 +1253,22 @@ System.Reflection.AssemblyInformationalVersion("1.60.3.0") - + System.Reflection.AssemblyProduct("SkiaSharp.Views") - + System.Reflection.AssemblyTitle("SkiaSharp.Views") - + System.Resources.NeutralResourcesLanguage("en") - + System.Runtime.CompilerServices.CompilationRelaxations(8) - + System.Runtime.CompilerServices.RuntimeCompatibility(WrapNonExceptionThrows=true) - + System.Runtime.Versioning.TargetFramework("Xamarin.WatchOS,Version=v1.0", FrameworkDisplayName="Xamarin.WatchOS") @@ -1241,23 +1301,29 @@ System.Reflection.AssemblyInformationalVersion("1.60.2.0") + + System.Reflection.AssemblyFileVersion("1.68.0.0") + + + System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d") + - + - + System.Diagnostics.Debuggable(System.Diagnostics.DebuggableAttribute+DebuggingModes.IgnoreSymbolStoreSequencePoints) - + System.Reflection.AssemblyCompany("Xamarin Inc.") - + System.Reflection.AssemblyConfiguration("Release") - + System.Reflection.AssemblyCopyright("© Microsoft Corporation. All rights reserved.") - + System.Reflection.AssemblyDescription("SkiaSharp for Xamarin.Forms is a set of views that can be used to draw on the screen.") @@ -1266,22 +1332,22 @@ System.Reflection.AssemblyInformationalVersion("1.60.3.0") - + System.Reflection.AssemblyProduct("SkiaSharp.Views.Forms") - + System.Reflection.AssemblyTitle("SkiaSharp.Views.Forms") - + System.Resources.NeutralResourcesLanguage("en") - + System.Runtime.CompilerServices.CompilationRelaxations(8) - + System.Runtime.CompilerServices.RuntimeCompatibility(WrapNonExceptionThrows=true) - + System.Runtime.Versioning.TargetFramework(".NETStandard,Version=v1.3", FrameworkDisplayName="") @@ -1371,24 +1437,30 @@ System.Reflection.AssemblyInformationalVersion("1.60.2.0") + + System.Reflection.AssemblyFileVersion("1.68.0.0") + + + System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d") + [00 24 00 00 04 80 00 00 94 00 00 00 06 02 00 00 00 24 00 00 52 53 41 31 00 04 00 00 01 00 01 00 79 15 99 77 d2 d0 3a 8e 6b ea 7a 2e 74 e8 d1 af cc 93 e8 85 19 74 95 2b b4 80 a1 2c 91 34 47 4d 04 06 24 47 c3 7e 0e 68 c0 80 53 6f cf 3c 3f be 2f f9 c9 79 ce 99 84 75 e5 06 e8 ce 82 dd 5b 0f 35 0d c1 0e 93 bf 2e ee cf 87 4b 24 77 0c 50 81 db ea 74 47 fd da fa 27 7b 22 de 47 d6 ff ea 44 96 74 a4 f9 fc cf 84 d1 50 69 08 93 80 28 4d bd d3 5f 46 cd ff 12 a1 bd 78 e4 ef 00 65 d0 16 df ] - + System.Diagnostics.Debuggable(System.Diagnostics.DebuggableAttribute+DebuggingModes.Default | System.Diagnostics.DebuggableAttribute+DebuggingModes.DisableOptimizations | System.Diagnostics.DebuggableAttribute+DebuggingModes.IgnoreSymbolStoreSequencePoints | System.Diagnostics.DebuggableAttribute+DebuggingModes.EnableEditAndContinue) - + System.Reflection.AssemblyCompany("Xamarin Inc.") - + System.Reflection.AssemblyConfiguration("Debug") - + System.Reflection.AssemblyCopyright("© Microsoft Corporation. All rights reserved.") - + System.Reflection.AssemblyDescription("HarfBuzzSharp is a cross-platform OpenType text shaping engine for .NET platforms.") @@ -1397,22 +1469,22 @@ System.Reflection.AssemblyInformationalVersion("1.4.6.1") - + System.Reflection.AssemblyProduct("HarfBuzzSharp") - + System.Reflection.AssemblyTitle("HarfBuzzSharp") - + System.Resources.NeutralResourcesLanguage("en") - + System.Runtime.CompilerServices.CompilationRelaxations(8) - + System.Runtime.CompilerServices.RuntimeCompatibility(WrapNonExceptionThrows=true) - + System.Runtime.Versioning.TargetFramework(".NETStandard,Version=v1.3", FrameworkDisplayName="") @@ -1442,24 +1514,30 @@ System.Reflection.AssemblyInformationalVersion("1.4.6.0-c1ca16") + + System.Reflection.AssemblyFileVersion("1.4.6.2") + + + System.Reflection.AssemblyInformationalVersion("1.4.6.2-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d") + - + [00 24 00 00 04 80 00 00 94 00 00 00 06 02 00 00 00 24 00 00 52 53 41 31 00 04 00 00 01 00 01 00 79 15 99 77 d2 d0 3a 8e 6b ea 7a 2e 74 e8 d1 af cc 93 e8 85 19 74 95 2b b4 80 a1 2c 91 34 47 4d 04 06 24 47 c3 7e 0e 68 c0 80 53 6f cf 3c 3f be 2f f9 c9 79 ce 99 84 75 e5 06 e8 ce 82 dd 5b 0f 35 0d c1 0e 93 bf 2e ee cf 87 4b 24 77 0c 50 81 db ea 74 47 fd da fa 27 7b 22 de 47 d6 ff ea 44 96 74 a4 f9 fc cf 84 d1 50 69 08 93 80 28 4d bd d3 5f 46 cd ff 12 a1 bd 78 e4 ef 00 65 d0 16 df ] - + System.Diagnostics.Debuggable(System.Diagnostics.DebuggableAttribute+DebuggingModes.IgnoreSymbolStoreSequencePoints) - + System.Reflection.AssemblyCompany("Xamarin Inc.") - + System.Reflection.AssemblyConfiguration("Release") - + System.Reflection.AssemblyCopyright("© Microsoft Corporation. All rights reserved.") - + System.Reflection.AssemblyDescription("This package adds text shaping support to SkiaSharp via HarfBuzz.") @@ -1468,22 +1546,22 @@ System.Reflection.AssemblyInformationalVersion("1.60.3.0") - + System.Reflection.AssemblyProduct("SkiaSharp.HarfBuzz") - + System.Reflection.AssemblyTitle("SkiaSharp.HarfBuzz") - + System.Resources.NeutralResourcesLanguage("en") - + System.Runtime.CompilerServices.CompilationRelaxations(8) - + System.Runtime.CompilerServices.RuntimeCompatibility(WrapNonExceptionThrows=true) - + System.Runtime.Versioning.TargetFramework(".NETStandard,Version=v1.3", FrameworkDisplayName="") @@ -1516,6 +1594,12 @@ System.Reflection.AssemblyInformationalVersion("1.60.2.0") + + System.Reflection.AssemblyFileVersion("1.68.0.0") + + + System.Reflection.AssemblyInformationalVersion("1.68.0.0-8bc5f4e7b7bb91aa9f34c17a0e4daed27d42b22d") + @@ -1537,8 +1621,10 @@ + + @@ -1547,6 +1633,7 @@ + @@ -1571,6 +1658,7 @@ + @@ -1600,12 +1688,15 @@ + + + @@ -1627,6 +1718,7 @@ + @@ -1642,6 +1734,7 @@ + @@ -1697,6 +1790,7 @@ + @@ -2037,6 +2131,116 @@ + + + + + + + + + ExtensionMethod + + SkiaSharp.SKColorType + + + + + + To be added. + To be added. + + + + + + + + + + + + + ExtensionMethod + + SkiaSharp.SKFilterQuality + + + + + + To be added. + To be added. + + + + + + + + + + + + + ExtensionMethod + + SkiaSharp.GRPixelConfig + + + + + + To be added. + To be added. + + + + + + + + + + + + + ExtensionMethod + + System.UInt32 + + + + + + To be added. + To be added. + + + + + + + + + + + + + ExtensionMethod + + System.UInt32 + + + + + + To be added. + To be added. + + + + @@ -5757,6 +5961,50 @@ + + + + + + + + + ExtensionMethod + + ElmSharp.Size + + + + + + To be added. + To be added. + + + + + + + + + + + + + ExtensionMethod + + ElmSharp.Size + + + + + + To be added. + To be added. + + + + @@ -5867,6 +6115,50 @@ + + + + + + + + + ExtensionMethod + + SkiaSharp.SKSize + + + + + + To be added. + To be added. + + + + + + + + + + + + + ExtensionMethod + + SkiaSharp.SKSizeI + + + + + + To be added. + To be added. + + + + From 9746592f902b290816a45d6837761663df9568df Mon Sep 17 00:00:00 2001 From: Matthew Leibowitz Date: Fri, 28 Sep 2018 05:29:02 +0200 Subject: [PATCH 7/9] Added some real docs --- .../SkiaSharp.Views.Android/SKCanvasView.xml | 37 ++++- docs/xml/SkiaSharp/GRBackend.xml | 2 +- docs/xml/SkiaSharp/GRBackendRenderTarget.xml | 100 ++++++------ .../SkiaSharp/GRBackendRenderTargetDesc.xml | 4 +- docs/xml/SkiaSharp/SKCodec.xml | 20 +-- .../SKCodecAnimationDisposalMethod.xml | 10 +- docs/xml/SkiaSharp/SKCodecFrameInfo.xml | 6 +- docs/xml/SkiaSharp/SKCodecOptions.xml | 14 +- docs/xml/SkiaSharp/SKCodecResult.xml | 4 +- docs/xml/SkiaSharp/SKColorFilter.xml | 4 +- docs/xml/SkiaSharp/SKColorType.xml | 10 +- docs/xml/SkiaSharp/SKDocument.xml | 18 +-- docs/xml/SkiaSharp/SKSurface.xml | 142 +++++++++--------- .../SkiaSharp/SKSurfaceReleaseDelegate.xml | 8 +- docs/xml/SkiaSharp/SKTypeface.xml | 24 +-- 15 files changed, 222 insertions(+), 181 deletions(-) diff --git a/docs/xml/SkiaSharp.Views.Android/SKCanvasView.xml b/docs/xml/SkiaSharp.Views.Android/SKCanvasView.xml index d83bd2771b..e0a7fb465e 100644 --- a/docs/xml/SkiaSharp.Views.Android/SKCanvasView.xml +++ b/docs/xml/SkiaSharp.Views.Android/SKCanvasView.xml @@ -285,9 +285,38 @@ protected override void OnDraw(SKSurface surface, SKImageInfo info) - To be added. - To be added. - To be added. + The event arguments that contain the drawing surface and information. + Implement this to draw on the canvas. + + +method, or by attaching a handler to the + +event. If the method is overridden, then the base must be called. + +## Examples + +```csharp +protected override void OnPaintSurface(SKPaintSurfaceEventArgs e) +{ + // call the base method + base.OnPaintSurface(e); + + var surface = e.Surface; + var surfaceWidth = e.Info.Width; + var surfaceHeight = e.Info.Height; + + var canvas = surface.Canvas; + + // draw on the canvas + canvas.Flush(); +} +``` +]]> + @@ -344,7 +373,7 @@ protected override void OnDraw(SKSurface surface, SKImageInfo info) ## Remarks There are two ways to draw on this surface: by overriding the - + method, or by attaching a handler to the event. diff --git a/docs/xml/SkiaSharp/GRBackend.xml b/docs/xml/SkiaSharp/GRBackend.xml index c87a096ccc..4516d2983e 100644 --- a/docs/xml/SkiaSharp/GRBackend.xml +++ b/docs/xml/SkiaSharp/GRBackend.xml @@ -32,7 +32,7 @@ 0 - To be added. + Use the Metal 3D backend. (not yet supported) diff --git a/docs/xml/SkiaSharp/GRBackendRenderTarget.xml b/docs/xml/SkiaSharp/GRBackendRenderTarget.xml index 5e2a39d612..f9b84c5bcf 100644 --- a/docs/xml/SkiaSharp/GRBackendRenderTarget.xml +++ b/docs/xml/SkiaSharp/GRBackendRenderTarget.xml @@ -11,8 +11,20 @@ - To be added. - To be added. + Wrap an existing render target created by the client in the 3D API. + + + @@ -34,10 +46,10 @@ - To be added. - To be added. - To be added. - To be added. + The backend to use. + The description of the backend render target. + Creates a new with the properties from the specified description. + @@ -57,13 +69,13 @@ - To be added. - To be added. - To be added. - To be added. - To be added. - To be added. - To be added. + The width of the render target. + The height of the render target. + The number of samples per pixel. + The number of bits of stencil per pixel. + The OpenGL framebuffer information. + Creates a new OpenGL with the specified properties and framebuffer. + @@ -79,9 +91,9 @@ SkiaSharp.GRBackend - To be added. - To be added. - To be added. + Gets the backend for this render target. + + @@ -119,9 +131,9 @@ - To be added. - To be added. - To be added. + Returns the framebuffer info that this object wraps. + Returns the framebuffer info, if this object wraps an OpenGL texture, otherwise an empty info instance. + @@ -140,10 +152,10 @@ - To be added. - To be added. - To be added. - To be added. + The framebuffer info, if this object wraps an OpenGL texture. + Returns the framebuffer info that this object wraps. + Returns true if this object wraps an OpenGL texture, otherwise false. + @@ -159,9 +171,9 @@ System.Int32 - To be added. - To be added. - To be added. + Gets the height in pixels. + + @@ -177,9 +189,9 @@ System.Boolean - To be added. - To be added. - To be added. + Gets a value indicating whether or not the GRBackendRenderTarget was initialized. + + @@ -195,9 +207,9 @@ SkiaSharp.SKRectI - To be added. - To be added. - To be added. + Gets a rectangle with the current width and height. + + @@ -213,9 +225,9 @@ System.Int32 - To be added. - To be added. - To be added. + Gets the number of samples per pixel. + + This is used to influence decisions about applying other forms of anti-aliasing. @@ -231,9 +243,9 @@ SkiaSharp.SKSizeI - To be added. - To be added. - To be added. + Gets the current size of the 3D API object. + + @@ -249,9 +261,9 @@ System.Int32 - To be added. - To be added. - To be added. + Gets the number of bits of stencil per-pixel. + + @@ -267,9 +279,9 @@ System.Int32 - To be added. - To be added. - To be added. + Gets the width in pixels. + + diff --git a/docs/xml/SkiaSharp/GRBackendRenderTargetDesc.xml b/docs/xml/SkiaSharp/GRBackendRenderTargetDesc.xml index a9cd6aba3a..c800af7407 100644 --- a/docs/xml/SkiaSharp/GRBackendRenderTargetDesc.xml +++ b/docs/xml/SkiaSharp/GRBackendRenderTargetDesc.xml @@ -31,7 +31,7 @@ at least as long as the GRRenderTarget object wrapping it. We require the client to explicitly provide information about the target, such as width, height, and pixel configuration, rather than querying the 3D API for these values. We expect these properties to be immutable even if the 3D API -doesn't require this (OpenGL). +doesn't require this (eg: OpenGL). ]]> @@ -207,7 +207,7 @@ doesn't require this (OpenGL). System.Int32 - Gets or sets the number of bits of stencil per-pixel. + Gets or sets the number of bits of stencil per pixel. diff --git a/docs/xml/SkiaSharp/SKCodec.xml b/docs/xml/SkiaSharp/SKCodec.xml index 9e7898090a..fb5cf14ed0 100644 --- a/docs/xml/SkiaSharp/SKCodec.xml +++ b/docs/xml/SkiaSharp/SKCodec.xml @@ -88,11 +88,11 @@ - To be added. - To be added. - To be added. - To be added. - To be added. + The stream to use when creating the codec. + The result of the creation operation. + Creates a codec from the specified stream. + Returns the new instance of the codec, or null if there was an error. + If null is returned, the stream is deleted immediately. Otherwise, the codec takes ownership of it, and will delete it when done with it. @@ -224,11 +224,11 @@ - To be added. - To be added. - To be added. - To be added. - To be added. + The index of the frame to retrieve. + The information about the frame. + Gets information about a specific frame in the encoded image. + Returns true if the frame was successfully read, otherwise false. + May require reading through the stream to determine info about the frames. As such, future decoding calls may require a rewind. diff --git a/docs/xml/SkiaSharp/SKCodecAnimationDisposalMethod.xml b/docs/xml/SkiaSharp/SKCodecAnimationDisposalMethod.xml index 17c1382eb4..44c722bcf1 100644 --- a/docs/xml/SkiaSharp/SKCodecAnimationDisposalMethod.xml +++ b/docs/xml/SkiaSharp/SKCodecAnimationDisposalMethod.xml @@ -10,8 +10,8 @@ System.Enum - To be added. - To be added. + Represents how the next frame in the image is based on the current frame. + @@ -28,7 +28,7 @@ 1 - To be added. + The next frame should be drawn on top of this one. @@ -45,7 +45,7 @@ 2 - To be added. + The area inside this frame's rectangle should be cleared to the background color before drawing the next frame. @@ -62,7 +62,7 @@ 3 - To be added. + The next frame should be drawn on top of the previous frame - i.e. disregarding this one. diff --git a/docs/xml/SkiaSharp/SKCodecFrameInfo.xml b/docs/xml/SkiaSharp/SKCodecFrameInfo.xml index f3331f76e0..6833857dab 100644 --- a/docs/xml/SkiaSharp/SKCodecFrameInfo.xml +++ b/docs/xml/SkiaSharp/SKCodecFrameInfo.xml @@ -52,9 +52,9 @@ SkiaSharp.SKCodecAnimationDisposalMethod - To be added. - To be added. - To be added. + Gets or sets the method indicating how the current frame should be modified before decoding the next one. + + diff --git a/docs/xml/SkiaSharp/SKCodecOptions.xml b/docs/xml/SkiaSharp/SKCodecOptions.xml index acc57e5498..54765e02d6 100644 --- a/docs/xml/SkiaSharp/SKCodecOptions.xml +++ b/docs/xml/SkiaSharp/SKCodecOptions.xml @@ -76,9 +76,9 @@ - To be added. - To be added. - To be added. + The frame to decode. + Create a new instance of with the specified frame index. + @@ -142,10 +142,10 @@ - To be added. - To be added. - To be added. - To be added. + The frame to decode. + The previous frame to decode. + Create a new instance of . + diff --git a/docs/xml/SkiaSharp/SKCodecResult.xml b/docs/xml/SkiaSharp/SKCodecResult.xml index c2f535b536..447ff4edb6 100644 --- a/docs/xml/SkiaSharp/SKCodecResult.xml +++ b/docs/xml/SkiaSharp/SKCodecResult.xml @@ -53,7 +53,7 @@ 2 - To be added. + There was an error in the imput data. If returned from an incremental decode, decoding cannot continue, even with more data. @@ -91,7 +91,7 @@ 8 - To be added. + An internal memory occurred, such as an out-of-memory error. diff --git a/docs/xml/SkiaSharp/SKColorFilter.xml b/docs/xml/SkiaSharp/SKColorFilter.xml index abb24e92f8..0063201bf0 100644 --- a/docs/xml/SkiaSharp/SKColorFilter.xml +++ b/docs/xml/SkiaSharp/SKColorFilter.xml @@ -563,8 +563,8 @@ 256 - To be added. - To be added. + The size of a color table for a color component. + diff --git a/docs/xml/SkiaSharp/SKColorType.xml b/docs/xml/SkiaSharp/SKColorType.xml index 0c7a81469c..b05265da6a 100644 --- a/docs/xml/SkiaSharp/SKColorType.xml +++ b/docs/xml/SkiaSharp/SKColorType.xml @@ -99,7 +99,7 @@ 9 - Represents a 8-bit grayscale color. + Represents an opaque 8-bit grayscale color. @@ -136,7 +136,7 @@ 8 - To be added. + Represents an opaque 32-bit color with the format RGB, with 10 bits per color component. @@ -157,7 +157,7 @@ 2 - Represents a 16-bit color with the format RGB, with the red and blue components being 5-bits and the green component being 6-bits. + Represents an opaque 16-bit color with the format RGB, with the red and blue components being 5 bits and the green component being 6 bits. @@ -174,7 +174,7 @@ 5 - To be added. + Represents an opaque 32-bit color with the format RGB, with 8 bits per color component. @@ -191,7 +191,7 @@ 7 - To be added. + Represents a 32-bit color with the format RGB, with 10 bits per color component and 2 bits for the alpha component. diff --git a/docs/xml/SkiaSharp/SKDocument.xml b/docs/xml/SkiaSharp/SKDocument.xml index 2a7212e4e8..6230a4f2e0 100644 --- a/docs/xml/SkiaSharp/SKDocument.xml +++ b/docs/xml/SkiaSharp/SKDocument.xml @@ -146,10 +146,10 @@ canvas, and then complete the page with a call to - To be added. - To be added. - To be added. - To be added. + The stream to write to. + Create a PDF-backed document, writing the results into a stream. + Returns the new PDF-backed document. + @@ -169,11 +169,11 @@ canvas, and then complete the page with a call to - To be added. - To be added. - To be added. - To be added. - To be added. + The stream to write to. + The document metadata to include. + Create a PDF-backed document, writing the results into a stream. + Returns the new PDF-backed document. + diff --git a/docs/xml/SkiaSharp/SKSurface.xml b/docs/xml/SkiaSharp/SKSurface.xml index 03f7328443..00ef0992ea 100644 --- a/docs/xml/SkiaSharp/SKSurface.xml +++ b/docs/xml/SkiaSharp/SKSurface.xml @@ -282,8 +282,8 @@ The example above produces the following: - To be added. - To be added. + The image configuration parameters. + The number of bytes per row in the pixel buffer. To be added. To be added. To be added. @@ -306,8 +306,8 @@ The example above produces the following: - To be added. - To be added. + The image configuration parameters. + The pointer to an in memory-buffer that can hold the image as specified. To be added. To be added. To be added. @@ -358,7 +358,7 @@ The example above produces the following: - To be added. + The graphics context. To be added. To be added. To be added. @@ -419,8 +419,8 @@ The example above produces the following: - To be added. - To be added. + The graphics context. + The configuration of the texture. To be added. To be added. To be added. @@ -542,9 +542,9 @@ The example above produces the following: - To be added. - To be added. - To be added. + The image configuration parameters. + The number of bytes per row in the pixel buffer. + The surface property configuration. To be added. To be added. To be added. @@ -568,9 +568,9 @@ The example above produces the following: - To be added. - To be added. - To be added. + The image configuration parameters. + The pointer to an in memory-buffer that can hold the image as specified. + The surface property configuration. To be added. To be added. To be added. @@ -625,7 +625,7 @@ The example above produces the following: - To be added. + The graphics context. To be added. To be added. To be added. @@ -653,10 +653,10 @@ The example above produces the following: - To be added. + The graphics context. To be added. To be added. - To be added. + The surface property configuration. To be added. To be added. To be added. @@ -681,8 +681,8 @@ The example above produces the following: - To be added. - To be added. + The graphics context. + The configuration of the texture. To be added. To be added. To be added. @@ -709,10 +709,10 @@ The example above produces the following: - To be added. - To be added. + The graphics context. + The configuration of the texture. To be added. - To be added. + The surface property configuration. To be added. To be added. To be added. @@ -737,10 +737,10 @@ The example above produces the following: - To be added. + The graphics context. To be added. To be added. - To be added. + The surface property configuration. To be added. To be added. To be added. @@ -867,7 +867,7 @@ The example above produces the following: - To be added. + The graphics context. To be added. To be added. To be added. @@ -897,11 +897,11 @@ The example above produces the following: - To be added. + The graphics context. To be added. To be added. To be added. - To be added. + The surface property configuration. To be added. To be added. To be added. @@ -927,11 +927,11 @@ The example above produces the following: - To be added. - To be added. + The graphics context. + The configuration of the texture. To be added. To be added. - To be added. + The surface property configuration. To be added. To be added. To be added. @@ -957,8 +957,8 @@ The example above produces the following: - To be added. - To be added. + The graphics context. + The configuration of the texture. To be added. To be added. To be added. @@ -987,7 +987,7 @@ The example above produces the following: - To be added. + The graphics context. To be added. To be added. To be added. @@ -1052,10 +1052,10 @@ The example above produces the following: To be added. - To be added. - To be added. + The pointer to an in memory-buffer that can hold the image as specified. + The number of bytes per row in the pixel buffer. To be added. - To be added. + The graphics context. To be added. To be added. To be added. @@ -1121,12 +1121,12 @@ The example above produces the following: - To be added. + The graphics context. To be added. To be added. To be added. To be added. - To be added. + The surface property configuration. To be added. To be added. To be added. @@ -1153,8 +1153,8 @@ The example above produces the following: - To be added. - To be added. + The graphics context. + The configuration of the texture. To be added. To be added. To be added. @@ -1185,12 +1185,12 @@ The example above produces the following: - To be added. - To be added. + The graphics context. + The configuration of the texture. To be added. To be added. To be added. - To be added. + The surface property configuration. To be added. To be added. To be added. @@ -1218,11 +1218,11 @@ The example above produces the following: To be added. - To be added. - To be added. + The pointer to an in memory-buffer that can hold the image as specified. + The number of bytes per row in the pixel buffer. To be added. - To be added. - To be added. + The graphics context. + The surface property configuration. To be added. To be added. To be added. @@ -1291,13 +1291,13 @@ The example above produces the following: - To be added. - To be added. + The graphics context. + The configuration of the texture. To be added. To be added. To be added. To be added. - To be added. + The surface property configuration. To be added. To be added. To be added. @@ -1325,12 +1325,12 @@ The example above produces the following: - To be added. + The graphics context. To be added. To be added. To be added. To be added. - To be added. + The surface property configuration. To be added. To be added. To be added. @@ -1461,8 +1461,8 @@ The example above produces the following: - To be added. - To be added. + The graphics context. + The configuration of the texture. To be added. To be added. To be added. @@ -1555,8 +1555,8 @@ The example above produces the following: - To be added. - To be added. + The graphics context. + The configuration of the texture. To be added. To be added. To be added. @@ -1583,10 +1583,10 @@ The example above produces the following: - To be added. - To be added. + The graphics context. + The configuration of the texture. To be added. - To be added. + The surface property configuration. To be added. To be added. To be added. @@ -1612,11 +1612,11 @@ The example above produces the following: - To be added. - To be added. + The graphics context. + The configuration of the texture. To be added. To be added. - To be added. + The surface property configuration. To be added. To be added. To be added. @@ -1642,8 +1642,8 @@ The example above produces the following: - To be added. - To be added. + The graphics context. + The configuration of the texture. To be added. To be added. To be added. @@ -1673,8 +1673,8 @@ The example above produces the following: - To be added. - To be added. + The graphics context. + The configuration of the texture. To be added. To be added. To be added. @@ -1705,12 +1705,12 @@ The example above produces the following: - To be added. - To be added. + The graphics context. + The configuration of the texture. To be added. To be added. To be added. - To be added. + The surface property configuration. To be added. To be added. To be added. @@ -1738,13 +1738,13 @@ The example above produces the following: - To be added. - To be added. + The graphics context. + The configuration of the texture. To be added. To be added. To be added. To be added. - To be added. + The surface property configuration. To be added. To be added. To be added. diff --git a/docs/xml/SkiaSharp/SKSurfaceReleaseDelegate.xml b/docs/xml/SkiaSharp/SKSurfaceReleaseDelegate.xml index 292d7b5434..8719ecd7cb 100644 --- a/docs/xml/SkiaSharp/SKSurfaceReleaseDelegate.xml +++ b/docs/xml/SkiaSharp/SKSurfaceReleaseDelegate.xml @@ -17,9 +17,9 @@ System.Void - To be added. - To be added. - To be added. - To be added. + The memory address of the pixels being released. + The user data that was provided when creating the surface. + The delegate that is used when releasing the memory for a surface. + diff --git a/docs/xml/SkiaSharp/SKTypeface.xml b/docs/xml/SkiaSharp/SKTypeface.xml index bbd141c6c8..aca97903fe 100644 --- a/docs/xml/SkiaSharp/SKTypeface.xml +++ b/docs/xml/SkiaSharp/SKTypeface.xml @@ -230,9 +230,9 @@ Typeface objects are immutable, and so they can be shared between threads. SkiaSharp.SKFontStyle - To be added. - To be added. - To be added. + Gets the font style for the typeface. + + @@ -321,10 +321,10 @@ Typeface objects are immutable, and so they can be shared between threads. - To be added. - To be added. - To be added. - To be added. + The name of the font family. May be . + Returns a new instance to a typeface that most closely matches the requested family name and style. + Returns to the closest-matching typeface. + @@ -344,11 +344,11 @@ Typeface objects are immutable, and so they can be shared between threads. - To be added. - To be added. - To be added. - To be added. - To be added. + The name of the font family. May be . + The style (normal, bold, italic) of the typeface. + Returns a new instance to a typeface that most closely matches the requested family name and style. + Returns to the closest-matching typeface. + From 4a729ec149dc91843810eb15e1df775033af5eec Mon Sep 17 00:00:00 2001 From: Matthew Leibowitz Date: Fri, 28 Sep 2018 06:31:52 +0200 Subject: [PATCH 8/9] Update more docs --- docs/xml/SkiaSharp/SKBitmap.xml | 66 +++++++++++++-------------- docs/xml/SkiaSharp/SKCodecOptions.xml | 4 +- docs/xml/SkiaSharp/SKFontMetrics.xml | 12 ++--- 3 files changed, 41 insertions(+), 41 deletions(-) diff --git a/docs/xml/SkiaSharp/SKBitmap.xml b/docs/xml/SkiaSharp/SKBitmap.xml index 5c31918b3b..2ef28a3227 100644 --- a/docs/xml/SkiaSharp/SKBitmap.xml +++ b/docs/xml/SkiaSharp/SKBitmap.xml @@ -78,10 +78,10 @@ - To be added. - To be added. - To be added. - To be added. + The description of the desired image format. + The additional flags. + Constructor that configures the bitmap based on an specification. + This constructor might throw an exception if it is not possible to create a bitmap with the specified configuration (for example, the image info requires a color table, and there is no color table). @@ -1691,13 +1691,13 @@ - To be added. - To be added. - To be added. - To be added. - To be added. - To be added. - To be added. + The image information describing the pixels. + The pixels to install. + The stride of the pixels being installed. + The delegate to invoke when the pixels are no longer referenced. + Installs the specified pixels into the bitmap. + Returns true on success, or false on failure. If there was an error, the bitmap will be set to empty. + @@ -1757,14 +1757,14 @@ - To be added. - To be added. - To be added. - To be added. - To be added. - To be added. - To be added. - To be added. + The image information describing the pixels. + The pixels to install. + The stride of the pixels being installed. + The delegate to invoke when the pixels are no longer referenced. + The user data to use when invoking the delegate. + Installs the specified pixels into the bitmap. + Returns true on success, or false on failure. If there was an error, the bitmap will be set to empty. + @@ -2333,10 +2333,10 @@ - To be added. - To be added. - To be added. - To be added. + The image information describing the pixels. + Allocates the memory for the bitmap using the specified image information. + Returns true if the allocation was successful, otherwise false. + @@ -2356,11 +2356,11 @@ - To be added. - To be added. - To be added. - To be added. - To be added. + The image information describing the pixels. + The additional flags. + Allocates the memory for the bitmap using the specified image information. + Returns true if the allocation was successful, otherwise false. + @@ -2380,11 +2380,11 @@ - To be added. - To be added. - To be added. - To be added. - To be added. + The image information describing the pixels. + The stride of the pixels being allocated. + Allocates the memory for the bitmap using the specified image information. + Returns true if the allocation was successful, otherwise false. + diff --git a/docs/xml/SkiaSharp/SKCodecOptions.xml b/docs/xml/SkiaSharp/SKCodecOptions.xml index 54765e02d6..e90f844fd0 100644 --- a/docs/xml/SkiaSharp/SKCodecOptions.xml +++ b/docs/xml/SkiaSharp/SKCodecOptions.xml @@ -78,7 +78,7 @@ The frame to decode. Create a new instance of with the specified frame index. - + Only meaningful for multi-frame images. @@ -145,7 +145,7 @@ The frame to decode. The previous frame to decode. Create a new instance of . - + Only meaningful for multi-frame images. diff --git a/docs/xml/SkiaSharp/SKFontMetrics.xml b/docs/xml/SkiaSharp/SKFontMetrics.xml index 0dacc4b57a..4b4570b01a 100644 --- a/docs/xml/SkiaSharp/SKFontMetrics.xml +++ b/docs/xml/SkiaSharp/SKFontMetrics.xml @@ -186,9 +186,9 @@ System.Nullable<System.Single> - To be added. - To be added. - To be added. + Gets the position of the bottom of the strikeout stroke relative to the baseline. + + This value is typically negative when valid. @@ -204,9 +204,9 @@ System.Nullable<System.Single> - To be added. - To be added. - To be added. + Gets the thickness of the strikeout. + + From 42afd529c7d0951eb4741887aaa51a57108a6bd9 Mon Sep 17 00:00:00 2001 From: Matthew Leibowitz Date: Fri, 28 Sep 2018 06:46:26 +0200 Subject: [PATCH 9/9] Reordered the native builds to improve build queues --- scripts/pipeline.groovy | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/pipeline.groovy b/scripts/pipeline.groovy index 62676beac8..734dc1ba7e 100644 --- a/scripts/pipeline.groovy +++ b/scripts/pipeline.groovy @@ -57,18 +57,18 @@ node("ubuntu-1604-amd64") { failFast: true, // windows - win32: createNativeBuilder("Windows", "Windows", "components-windows", ""), uwp: createNativeBuilder("UWP", "Windows", "components-windows", ""), + win32: createNativeBuilder("Windows", "Windows", "components-windows", ""), android_windows: createNativeBuilder("Android", "Windows", "components-windows", ""), tizen_windows: createNativeBuilder("Tizen", "Windows", "components-windows", ""), // macos - macos: createNativeBuilder("macOS", "macOS", "components", ""), - ios: createNativeBuilder("iOS", "macOS", "components", ""), - tvos: createNativeBuilder("tvOS", "macOS", "components", ""), - watchos: createNativeBuilder("watchOS", "macOS", "components", ""), android_macos: createNativeBuilder("Android", "macOS", "components", ""), tizen_macos: createNativeBuilder("Tizen", "macOS", "components", ""), + tvos: createNativeBuilder("tvOS", "macOS", "components", ""), + ios: createNativeBuilder("iOS", "macOS", "components", ""), + macos: createNativeBuilder("macOS", "macOS", "components", ""), + watchos: createNativeBuilder("watchOS", "macOS", "components", ""), // linux linux: createNativeBuilder("Linux", "Linux", "ubuntu-1604-amd64", nativeLinuxPackages),