Skip to content

Commit a26ea4c

Browse files
committed
Update changelogs
1 parent 3942938 commit a26ea4c

File tree

6 files changed

+7
-119
lines changed

6 files changed

+7
-119
lines changed

changelogs/HarfBuzzSharp/2.8.2.1/HarfBuzzSharp.breaking.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

changelogs/HarfBuzzSharp/2.8.2.1/HarfBuzzSharp.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
### Namespace HarfBuzzSharp
66

7-
#### Removed Type HarfBuzzSharp.Resource
8-
97
### New Namespace HarfBuzzSharp.Internals
108

119
#### New Type: HarfBuzzSharp.Internals.PlatformConfiguration

changelogs/SkiaSharp.HarfBuzz/2.88.1/SkiaSharp.HarfBuzz.md

Lines changed: 6 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -2,68 +2,19 @@
22

33
## SkiaSharp.HarfBuzz.dll
44

5-
> Assembly Version Changed: 2.88.0.0 vs 0.0.0.0
5+
### Namespace SkiaSharp.HarfBuzz
66

7-
### New Namespace SkiaSharp.HarfBuzz
7+
#### Type Changed: SkiaSharp.HarfBuzz.SKShaper+Result
88

9-
#### New Type: SkiaSharp.HarfBuzz.BlobExtensions
9+
Added constructor:
1010

1111
```csharp
12-
public static class BlobExtensions {
13-
// methods
14-
public static HarfBuzzSharp.Blob ToHarfBuzzBlob (this SkiaSharp.SKStreamAsset asset);
15-
}
12+
public SKShaper.Result (uint[] codepoints, uint[] clusters, SkiaSharp.SKPoint[] points, float width);
1613
```
1714

18-
#### New Type: SkiaSharp.HarfBuzz.CanvasExtensions
15+
Added property:
1916

2017
```csharp
21-
public static class CanvasExtensions {
22-
// methods
23-
public static void DrawShapedText (this SkiaSharp.SKCanvas canvas, string text, SkiaSharp.SKPoint p, SkiaSharp.SKPaint paint);
24-
public static void DrawShapedText (this SkiaSharp.SKCanvas canvas, SKShaper shaper, string text, SkiaSharp.SKPoint p, SkiaSharp.SKPaint paint);
25-
public static void DrawShapedText (this SkiaSharp.SKCanvas canvas, string text, float x, float y, SkiaSharp.SKPaint paint);
26-
public static void DrawShapedText (this SkiaSharp.SKCanvas canvas, SKShaper shaper, string text, float x, float y, SkiaSharp.SKPaint paint);
27-
}
28-
```
29-
30-
#### New Type: SkiaSharp.HarfBuzz.FontExtensions
31-
32-
```csharp
33-
public static class FontExtensions {
34-
// methods
35-
public static SkiaSharp.SKSizeI GetScale (this HarfBuzzSharp.Font font);
36-
public static void SetScale (this HarfBuzzSharp.Font font, SkiaSharp.SKSizeI scale);
37-
}
38-
```
39-
40-
#### New Type: SkiaSharp.HarfBuzz.SKShaper
41-
42-
```csharp
43-
public class SKShaper : System.IDisposable {
44-
// constructors
45-
public SKShaper (SkiaSharp.SKTypeface typeface);
46-
// properties
47-
public SkiaSharp.SKTypeface Typeface { get; }
48-
// methods
49-
public virtual void Dispose ();
50-
public SKShaper.Result Shape (HarfBuzzSharp.Buffer buffer, SkiaSharp.SKPaint paint);
51-
public SKShaper.Result Shape (string text, SkiaSharp.SKPaint paint);
52-
public SKShaper.Result Shape (HarfBuzzSharp.Buffer buffer, float xOffset, float yOffset, SkiaSharp.SKPaint paint);
53-
public SKShaper.Result Shape (string text, float xOffset, float yOffset, SkiaSharp.SKPaint paint);
54-
55-
// inner types
56-
public class Result {
57-
// constructors
58-
public SKShaper.Result ();
59-
public SKShaper.Result (uint[] codepoints, uint[] clusters, SkiaSharp.SKPoint[] points);
60-
public SKShaper.Result (uint[] codepoints, uint[] clusters, SkiaSharp.SKPoint[] points, float width);
61-
// properties
62-
public uint[] Clusters { get; }
63-
public uint[] Codepoints { get; }
64-
public SkiaSharp.SKPoint[] Points { get; }
65-
public float Width { get; }
66-
}
67-
}
18+
public float Width { get; }
6819
```
6920

changelogs/SkiaSharp.Vulkan.SharpVk/2.88.1/SkiaSharp.Vulkan.SharpVk.md

Lines changed: 1 addition & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -2,48 +2,5 @@
22

33
## SkiaSharp.Vulkan.SharpVk.dll
44

5-
> Assembly Version Changed: 2.88.0.0 vs 0.0.0.0
6-
7-
### New Namespace SkiaSharp
8-
9-
#### New Type: SkiaSharp.GRSharpVkBackendContext
10-
11-
```csharp
12-
public class GRSharpVkBackendContext : SkiaSharp.GRVkBackendContext, System.IDisposable {
13-
// constructors
14-
public GRSharpVkBackendContext ();
15-
// properties
16-
public GRSharpVkGetProcedureAddressDelegate GetProcedureAddress { get; set; }
17-
public SharpVk.Device VkDevice { get; set; }
18-
public SharpVk.Instance VkInstance { get; set; }
19-
public SharpVk.PhysicalDevice VkPhysicalDevice { get; set; }
20-
public SharpVk.PhysicalDeviceFeatures? VkPhysicalDeviceFeatures { get; set; }
21-
public SharpVk.Queue VkQueue { get; set; }
22-
// methods
23-
protected override void Dispose (bool disposing);
24-
}
25-
```
26-
27-
#### New Type: SkiaSharp.GRSharpVkGetProcedureAddressDelegate
28-
29-
```csharp
30-
public sealed delegate GRSharpVkGetProcedureAddressDelegate : System.MulticastDelegate, System.ICloneable, System.Runtime.Serialization.ISerializable {
31-
// constructors
32-
public GRSharpVkGetProcedureAddressDelegate (object object, IntPtr method);
33-
// methods
34-
public virtual System.IAsyncResult BeginInvoke (string name, SharpVk.Instance instance, SharpVk.Device device, System.AsyncCallback callback, object object);
35-
public virtual IntPtr EndInvoke (System.IAsyncResult result);
36-
public virtual IntPtr Invoke (string name, SharpVk.Instance instance, SharpVk.Device device);
37-
}
38-
```
39-
40-
#### New Type: SkiaSharp.GRVkExtensionsSharpVkExtensions
41-
42-
```csharp
43-
public static class GRVkExtensionsSharpVkExtensions {
44-
// methods
45-
public static void Initialize (this GRVkExtensions extensions, GRSharpVkGetProcedureAddressDelegate getProc, SharpVk.Instance instance, SharpVk.PhysicalDevice physicalDevice);
46-
public static void Initialize (this GRVkExtensions extensions, GRSharpVkGetProcedureAddressDelegate getProc, SharpVk.Instance instance, SharpVk.PhysicalDevice physicalDevice, string[] instanceExtensions, string[] deviceExtensions);
47-
}
48-
```
5+
> Assembly Version Changed: 2.88.0.0 vs 2.80.0.0
496

changelogs/SkiaSharp/2.88.1/SkiaSharp.breaking.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

changelogs/SkiaSharp/2.88.1/SkiaSharp.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ Avif = 12,
1313
```
1414

1515

16-
#### Removed Type SkiaSharp.Resource
17-
1816
### Namespace SkiaSharp.Internals
1917

2018
#### New Type: SkiaSharp.Internals.PlatformConfiguration

0 commit comments

Comments
 (0)