diff options
Diffstat (limited to 'contrib/DirectX-Headers/include/directx/d3d12compatibility.idl')
| -rw-r--r-- | contrib/DirectX-Headers/include/directx/d3d12compatibility.idl | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/contrib/DirectX-Headers/include/directx/d3d12compatibility.idl b/contrib/DirectX-Headers/include/directx/d3d12compatibility.idl new file mode 100644 index 0000000..fae6f1a --- /dev/null +++ b/contrib/DirectX-Headers/include/directx/d3d12compatibility.idl | |||
| @@ -0,0 +1,88 @@ | |||
| 1 | /*------------------------------------------------------------------------------------- | ||
| 2 | * | ||
| 3 | * Copyright (c) Microsoft Corporation | ||
| 4 | * Licensed under the MIT license | ||
| 5 | * | ||
| 6 | *-------------------------------------------------------------------------------------*/ | ||
| 7 | import "OAIdl.idl"; | ||
| 8 | import "OCIdl.idl"; | ||
| 9 | |||
| 10 | import "d3d11on12.idl"; | ||
| 11 | |||
| 12 | cpp_quote("#include <winapifamily.h>") | ||
| 13 | |||
| 14 | #pragma region Desktop Family | ||
| 15 | cpp_quote("#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_GAMES)") | ||
| 16 | |||
| 17 | typedef enum D3D12_COMPATIBILITY_SHARED_FLAGS | ||
| 18 | { | ||
| 19 | D3D12_COMPATIBILITY_SHARED_FLAG_NONE = 0, | ||
| 20 | D3D12_COMPATIBILITY_SHARED_FLAG_NON_NT_HANDLE = 0x1, | ||
| 21 | D3D12_COMPATIBILITY_SHARED_FLAG_KEYED_MUTEX = 0x2, | ||
| 22 | D3D12_COMPATIBILITY_SHARED_FLAG_9_ON_12 = 0x4, | ||
| 23 | |||
| 24 | } D3D12_COMPATIBILITY_SHARED_FLAGS; | ||
| 25 | cpp_quote( "DEFINE_ENUM_FLAG_OPERATORS( D3D12_COMPATIBILITY_SHARED_FLAGS );" ) | ||
| 26 | |||
| 27 | typedef enum D3D12_REFLECT_SHARED_PROPERTY | ||
| 28 | { | ||
| 29 | D3D12_REFLECT_SHARED_PROPERTY_D3D11_RESOURCE_FLAGS, // D3D11_RESOURCE_FLAGS | ||
| 30 | D3D12_REFELCT_SHARED_PROPERTY_COMPATIBILITY_SHARED_FLAGS, // D3D12_COMPATIBILITY_SHARED_FLAGS | ||
| 31 | D3D12_REFLECT_SHARED_PROPERTY_NON_NT_SHARED_HANDLE, // HANDLE | ||
| 32 | } D3D12_REFLECT_SHARED_PROPERTY; | ||
| 33 | |||
| 34 | [ uuid( 8f1c0e3c-fae3-4a82-b098-bfe1708207ff ), object, local, pointer_default( unique ) ] | ||
| 35 | interface ID3D12CompatibilityDevice | ||
| 36 | : IUnknown | ||
| 37 | { | ||
| 38 | HRESULT CreateSharedResource( | ||
| 39 | [annotation("_In_")] const D3D12_HEAP_PROPERTIES* pHeapProperties, | ||
| 40 | D3D12_HEAP_FLAGS HeapFlags, | ||
| 41 | [annotation("_In_")] const D3D12_RESOURCE_DESC* pDesc, | ||
| 42 | D3D12_RESOURCE_STATES InitialResourceState, | ||
| 43 | [annotation("_In_opt_")] const D3D12_CLEAR_VALUE* pOptimizedClearValue, | ||
| 44 | [annotation("_In_opt_")] const D3D11_RESOURCE_FLAGS* pFlags11, | ||
| 45 | D3D12_COMPATIBILITY_SHARED_FLAGS CompatibilityFlags, | ||
| 46 | [annotation("_In_opt_")] ID3D12LifetimeTracker* pLifetimeTracker, | ||
| 47 | [annotation("_In_opt_")] ID3D12SwapChainAssistant* pOwningSwapchain, | ||
| 48 | REFIID riid, | ||
| 49 | [out, iid_is(riid), annotation("_COM_Outptr_opt_")] void** ppResource); | ||
| 50 | |||
| 51 | HRESULT CreateSharedHeap( | ||
| 52 | [annotation("_In_")] const D3D12_HEAP_DESC* pHeapDesc, | ||
| 53 | D3D12_COMPATIBILITY_SHARED_FLAGS CompatibilityFlags, | ||
| 54 | REFIID riid, | ||
| 55 | [out, iid_is(riid), annotation("_COM_Outptr_opt_")] void** ppHeap); | ||
| 56 | |||
| 57 | HRESULT ReflectSharedProperties( | ||
| 58 | [annotation("_In_")] ID3D12Object* pHeapOrResource, | ||
| 59 | D3D12_REFLECT_SHARED_PROPERTY ReflectType, | ||
| 60 | [annotation("_Out_writes_bytes_(DataSize)")] void* pData, | ||
| 61 | UINT DataSize); | ||
| 62 | } | ||
| 63 | |||
| 64 | [uuid(edbf5678-2960-4e81-8429-99d4b2630c4e), object, local, pointer_default(unique)] | ||
| 65 | interface D3D11On12CreatorID : IUnknown { }; | ||
| 66 | |||
| 67 | [uuid(fffcbb7f-15d3-42a2-841e-9d8d32f37ddd), object, local, pointer_default(unique)] | ||
| 68 | interface D3D9On12CreatorID : IUnknown { }; | ||
| 69 | |||
| 70 | [uuid(6bb3cd34-0d19-45ab-97ed-d720ba3dfc80), object, local, pointer_default(unique)] | ||
| 71 | interface OpenGLOn12CreatorID : IUnknown { }; | ||
| 72 | |||
| 73 | [uuid(3f76bb74-91b5-4a88-b126-20ca0331cd60), object, local, pointer_default(unique)] | ||
| 74 | interface OpenCLOn12CreatorID : IUnknown { }; | ||
| 75 | |||
| 76 | [uuid(cb7490ac-8a0f-44ec-9b7b-6f4cafe8e9ab), object, local, pointer_default(unique)] | ||
| 77 | interface DirectMLTensorFlowCreatorID : IUnknown { }; | ||
| 78 | |||
| 79 | |||
| 80 | cpp_quote("#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_APP | WINAPI_PARTITION_GAMES) */") | ||
| 81 | #pragma endregion | ||
| 82 | |||
| 83 | cpp_quote( "DEFINE_GUID(IID_ID3D12CompatibilityDevice,0x8f1c0e3c,0xfae3,0x4a82,0xb0,0x98,0xbf,0xe1,0x70,0x82,0x07,0xff);" ) | ||
| 84 | cpp_quote( "DEFINE_GUID(IID_D3D11On12CreatorID,0xedbf5678,0x2960,0x4e81,0x84,0x29,0x99,0xd4,0xb2,0x63,0x0c,0x4e);" ) | ||
| 85 | cpp_quote( "DEFINE_GUID(IID_D3D9On12CreatorID,0xfffcbb7f,0x15d3,0x42a2,0x84,0x1e,0x9d,0x8d,0x32,0xf3,0x7d,0xdd);" ) | ||
| 86 | cpp_quote( "DEFINE_GUID(IID_OpenGLOn12CreatorID,0x6bb3cd34,0x0d19,0x45ab,0x97,0xed,0xd7,0x20,0xba,0x3d,0xfc,0x80);" ) | ||
| 87 | cpp_quote( "DEFINE_GUID(IID_OpenCLOn12CreatorID,0x3f76bb74,0x91b5,0x4a88,0xb1,0x26,0x20,0xca,0x03,0x31,0xcd,0x60);" ) | ||
| 88 | cpp_quote( "DEFINE_GUID(IID_DirectMLTensorFlowCreatorID,0xcb7490ac,0x8a0f,0x44ec,0x9b,0x7b,0x6f,0x4c,0xaf,0xe8,0xe9,0xab);" ) | ||
