-
Notifications
You must be signed in to change notification settings - Fork 760
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add support for WinAppSDK 1.0-experimental1
- Loading branch information
1 parent
981ab0d
commit 31f45ea
Showing
28 changed files
with
513 additions
and
183 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
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
Empty file.
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,17 @@ | ||
#if HAS_UNO_WINUI | ||
using System; | ||
using Microsoft.Foundation; | ||
using Windows.Foundation.Metadata; | ||
|
||
namespace Microsoft.Graphics.DirectX | ||
{ | ||
[ContractVersion(typeof(LiftedContract), 65536u)] | ||
public enum DirectXAlphaMode | ||
{ | ||
Unspecified, | ||
Premultiplied, | ||
Straight, | ||
Ignore | ||
} | ||
} | ||
#endif |
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,38 @@ | ||
#if HAS_UNO_WINUI | ||
using Microsoft.Foundation; | ||
using Windows.Foundation.Metadata; | ||
|
||
namespace Microsoft.Graphics.DirectX | ||
{ | ||
[ContractVersion(typeof(LiftedContract), 65536u)] | ||
public enum DirectXColorSpace | ||
{ | ||
RgbFullG22NoneP709, | ||
RgbFullG10NoneP709, | ||
RgbStudioG22NoneP709, | ||
RgbStudioG22NoneP2020, | ||
Reserved, | ||
YccFullG22NoneP709X601, | ||
YccStudioG22LeftP601, | ||
YccFullG22LeftP601, | ||
YccStudioG22LeftP709, | ||
YccFullG22LeftP709, | ||
YccStudioG22LeftP2020, | ||
YccFullG22LeftP2020, | ||
RgbFullG2084NoneP2020, | ||
YccStudioG2084LeftP2020, | ||
RgbStudioG2084NoneP2020, | ||
YccStudioG22TopLeftP2020, | ||
YccStudioG2084TopLeftP2020, | ||
RgbFullG22NoneP2020, | ||
YccStudioGHlgTopLeftP2020, | ||
YccFullGHlgTopLeftP2020, | ||
RgbStudioG24NoneP709, | ||
RgbStudioG24NoneP2020, | ||
YccStudioG24LeftP709, | ||
YccStudioG24LeftP2020, | ||
YccStudioG24TopLeftP2020 | ||
} | ||
|
||
} | ||
#endif |
Oops, something went wrong.