include: Add DirectXAlphaMode enum.
Needed for mingw Firefox build.
This commit is contained in:
parent
48fdc8e08c
commit
58e6c4d11c
1 changed files with 12 additions and 0 deletions
|
@ -27,6 +27,7 @@ import "windowscontracts.idl";
|
|||
import "windows.foundation.idl";
|
||||
|
||||
namespace Windows.Graphics.DirectX {
|
||||
typedef enum DirectXAlphaMode DirectXAlphaMode;
|
||||
typedef enum DirectXPixelFormat DirectXPixelFormat;
|
||||
|
||||
declare {
|
||||
|
@ -35,6 +36,17 @@ namespace Windows.Graphics.DirectX {
|
|||
interface Windows.Foundation.Collections.IVectorView<Windows.Graphics.DirectX.DirectXPixelFormat>;
|
||||
}
|
||||
|
||||
[
|
||||
contract(Windows.Foundation.UniversalApiContract, 2.0)
|
||||
]
|
||||
enum DirectXAlphaMode
|
||||
{
|
||||
Unspecified = 0,
|
||||
Premultiplied = 1,
|
||||
Straight = 2,
|
||||
Ignore = 3,
|
||||
};
|
||||
|
||||
[
|
||||
contract(Windows.Foundation.UniversalApiContract, 1.0)
|
||||
]
|
||||
|
|
Loading…
Add table
Reference in a new issue