-
Notifications
You must be signed in to change notification settings - Fork 549
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update the Dockerfiles * Use newer Xcode * Update Blazor WASM Sample * Update Uno Samples
- Loading branch information
1 parent
8f901fd
commit 171e086
Showing
285 changed files
with
3,023 additions
and
4,180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
changelogs/SkiaSharp.Resources/3.0.0/SkiaSharp.Resources.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# API diff: SkiaSharp.Resources.dll | ||
|
||
## SkiaSharp.Resources.dll | ||
|
||
> Assembly Version Changed: 3.0.0.0 vs 0.0.0.0 | ||
### New Namespace SkiaSharp.Resources | ||
|
||
#### New Type: SkiaSharp.Resources.CachingResourceProvider | ||
|
||
```csharp | ||
public sealed class CachingResourceProvider : SkiaSharp.Resources.ResourceProvider, SkiaSharp.ISKReferenceCounted, SkiaSharp.ISKSkipObjectRegistration { | ||
// constructors | ||
public CachingResourceProvider (ResourceProvider resourceProvider); | ||
} | ||
``` | ||
|
||
#### New Type: SkiaSharp.Resources.DataUriResourceProvider | ||
|
||
```csharp | ||
public sealed class DataUriResourceProvider : SkiaSharp.Resources.ResourceProvider, SkiaSharp.ISKReferenceCounted, SkiaSharp.ISKSkipObjectRegistration { | ||
// constructors | ||
public DataUriResourceProvider (bool preDecode); | ||
public DataUriResourceProvider (ResourceProvider fallbackProvider, bool preDecode); | ||
} | ||
``` | ||
|
||
#### New Type: SkiaSharp.Resources.FileResourceProvider | ||
|
||
```csharp | ||
public sealed class FileResourceProvider : SkiaSharp.Resources.ResourceProvider, SkiaSharp.ISKReferenceCounted, SkiaSharp.ISKSkipObjectRegistration { | ||
// constructors | ||
public FileResourceProvider (string baseDirectory, bool preDecode); | ||
} | ||
``` | ||
|
||
#### New Type: SkiaSharp.Resources.ResourceProvider | ||
|
||
```csharp | ||
public abstract class ResourceProvider : SkiaSharp.SKObject, SkiaSharp.ISKReferenceCounted, SkiaSharp.ISKSkipObjectRegistration { | ||
// methods | ||
public SkiaSharp.SKData Load (string resourceName); | ||
public SkiaSharp.SKData Load (string resourcePath, string resourceName); | ||
} | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.