Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding WIC (WindowsCodecs) support #1674

Merged
merged 7 commits into from
Sep 24, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix naming conflict for ProgressNotification
  • Loading branch information
hez2010 committed Sep 23, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 50951e66f3ddeaec438b6df0835f838fad23dbf8
Binary file modified build/cache/wic.json.gz
Binary file not shown.
4 changes: 3 additions & 1 deletion generator.json
Original file line number Diff line number Diff line change
Expand Up @@ -1628,7 +1628,9 @@
"ID2D1Device",
"ID2D1Image"
],
"rename": {},
"rename": {
"WICProgressNotification": "ProgressNotificationEnum"
},
"bakery": {
"profileNames": [
"silk.net.windowscodecs",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Silk.NET.WindowsCodecs
{
[Flags]
[NativeName("Name", "WICProgressNotification")]
public enum ProgressNotification : int
public enum ProgressNotificationEnum : int
{
[NativeName("Name", "")]
None = 0,
Expand Down