dxgi.idl: Added DXGI_SWAP_CHAIN_FLAG enum declaration and DXGI_MWA_* flags.
This commit is contained in:
parent
08186a9c26
commit
9b1b70c711
|
@ -115,6 +115,12 @@ typedef struct DXGI_ADAPTER_DESC {
|
||||||
LUID AdapterLuid;
|
LUID AdapterLuid;
|
||||||
} DXGI_ADAPTER_DESC;
|
} DXGI_ADAPTER_DESC;
|
||||||
|
|
||||||
|
typedef enum DXGI_SWAP_CHAIN_FLAG {
|
||||||
|
DXGI_SWAP_CHAIN_FLAG_NONPREROTATED = 1,
|
||||||
|
DXGI_SWAP_CHAIN_FLAG_ALLOW_MODE_SWITCH = 2,
|
||||||
|
DXGI_SWAP_CHAIN_FLAG_GDI_COMPATIBLE = 4
|
||||||
|
} DXGI_SWAP_CHAIN_FLAG;
|
||||||
|
|
||||||
typedef struct DXGI_SWAP_CHAIN_DESC {
|
typedef struct DXGI_SWAP_CHAIN_DESC {
|
||||||
DXGI_MODE_DESC BufferDesc;
|
DXGI_MODE_DESC BufferDesc;
|
||||||
DXGI_SAMPLE_DESC SampleDesc;
|
DXGI_SAMPLE_DESC SampleDesc;
|
||||||
|
@ -305,6 +311,11 @@ interface IDXGISwapChain : IDXGIDeviceSubObject
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cpp_quote("#define DXGI_MWA_NO_WINDOW_CHANGES 0x1")
|
||||||
|
cpp_quote("#define DXGI_MWA_NO_ALT_ENTER 0x2")
|
||||||
|
cpp_quote("#define DXGI_MWA_NO_PRINT_SCREEN 0x4")
|
||||||
|
cpp_quote("#define DXGI_MWA_VALID 0x7")
|
||||||
|
|
||||||
[
|
[
|
||||||
object,
|
object,
|
||||||
local,
|
local,
|
||||||
|
|
Loading…
Reference in New Issue