| /*** Autogenerated by WIDL 10.4 from include/d3d11on12.idl - Do not edit ***/ |
| |
| #ifdef _WIN32 |
| #ifndef __REQUIRED_RPCNDR_H_VERSION__ |
| #define __REQUIRED_RPCNDR_H_VERSION__ 475 |
| #endif |
| #include <rpc.h> |
| #include <rpcndr.h> |
| #endif |
| |
| #ifndef COM_NO_WINDOWS_H |
| #include <windows.h> |
| #include <ole2.h> |
| #endif |
| |
| #ifndef __d3d11on12_h__ |
| #define __d3d11on12_h__ |
| |
| /* Forward declarations */ |
| |
| #ifndef __ID3D11On12Device_FWD_DEFINED__ |
| #define __ID3D11On12Device_FWD_DEFINED__ |
| typedef interface ID3D11On12Device ID3D11On12Device; |
| #ifdef __cplusplus |
| interface ID3D11On12Device; |
| #endif /* __cplusplus */ |
| #endif |
| |
| #ifndef __ID3D11On12Device1_FWD_DEFINED__ |
| #define __ID3D11On12Device1_FWD_DEFINED__ |
| typedef interface ID3D11On12Device1 ID3D11On12Device1; |
| #ifdef __cplusplus |
| interface ID3D11On12Device1; |
| #endif /* __cplusplus */ |
| #endif |
| |
| #ifndef __ID3D11On12Device2_FWD_DEFINED__ |
| #define __ID3D11On12Device2_FWD_DEFINED__ |
| typedef interface ID3D11On12Device2 ID3D11On12Device2; |
| #ifdef __cplusplus |
| interface ID3D11On12Device2; |
| #endif /* __cplusplus */ |
| #endif |
| |
| /* Headers for imported files */ |
| |
| #include <oaidl.h> |
| #include <ocidl.h> |
| #include <d3d11.h> |
| #include <d3d12.h> |
| |
| #ifdef __cplusplus |
| extern "C" { |
| #endif |
| |
| typedef struct D3D11_RESOURCE_FLAGS { |
| UINT BindFlags; |
| UINT MiscFlags; |
| UINT CPUAccessFlags; |
| UINT StructureByteStride; |
| } D3D11_RESOURCE_FLAGS; |
| /***************************************************************************** |
| * ID3D11On12Device interface |
| */ |
| #ifndef __ID3D11On12Device_INTERFACE_DEFINED__ |
| #define __ID3D11On12Device_INTERFACE_DEFINED__ |
| |
| DEFINE_GUID(IID_ID3D11On12Device, 0x85611e73, 0x70a9, 0x490e, 0x96,0x14, 0xa9,0xe3,0x02,0x77,0x79,0x04); |
| #if defined(__cplusplus) && !defined(CINTERFACE) |
| MIDL_INTERFACE("85611e73-70a9-490e-9614-a9e302777904") |
| ID3D11On12Device : public IUnknown |
| { |
| virtual HRESULT STDMETHODCALLTYPE CreateWrappedResource( |
| IUnknown *d3d12_resource, |
| const D3D11_RESOURCE_FLAGS *flags, |
| D3D12_RESOURCE_STATES input_state, |
| D3D12_RESOURCE_STATES output_state, |
| REFIID iid, |
| void **d3d11_resource) = 0; |
| |
| virtual void STDMETHODCALLTYPE ReleaseWrappedResources( |
| ID3D11Resource *const *resources, |
| UINT count) = 0; |
| |
| virtual void STDMETHODCALLTYPE AcquireWrappedResources( |
| ID3D11Resource *const *resources, |
| UINT count) = 0; |
| |
| }; |
| #ifdef __CRT_UUID_DECL |
| __CRT_UUID_DECL(ID3D11On12Device, 0x85611e73, 0x70a9, 0x490e, 0x96,0x14, 0xa9,0xe3,0x02,0x77,0x79,0x04) |
| #endif |
| #else |
| typedef struct ID3D11On12DeviceVtbl { |
| BEGIN_INTERFACE |
| |
| /*** IUnknown methods ***/ |
| HRESULT (STDMETHODCALLTYPE *QueryInterface)( |
| ID3D11On12Device *This, |
| REFIID riid, |
| void **ppvObject); |
| |
| ULONG (STDMETHODCALLTYPE *AddRef)( |
| ID3D11On12Device *This); |
| |
| ULONG (STDMETHODCALLTYPE *Release)( |
| ID3D11On12Device *This); |
| |
| /*** ID3D11On12Device methods ***/ |
| HRESULT (STDMETHODCALLTYPE *CreateWrappedResource)( |
| ID3D11On12Device *This, |
| IUnknown *d3d12_resource, |
| const D3D11_RESOURCE_FLAGS *flags, |
| D3D12_RESOURCE_STATES input_state, |
| D3D12_RESOURCE_STATES output_state, |
| REFIID iid, |
| void **d3d11_resource); |
| |
| void (STDMETHODCALLTYPE *ReleaseWrappedResources)( |
| ID3D11On12Device *This, |
| ID3D11Resource *const *resources, |
| UINT count); |
| |
| void (STDMETHODCALLTYPE *AcquireWrappedResources)( |
| ID3D11On12Device *This, |
| ID3D11Resource *const *resources, |
| UINT count); |
| |
| END_INTERFACE |
| } ID3D11On12DeviceVtbl; |
| |
| interface ID3D11On12Device { |
| CONST_VTBL ID3D11On12DeviceVtbl* lpVtbl; |
| }; |
| |
| #ifdef COBJMACROS |
| #ifndef WIDL_C_INLINE_WRAPPERS |
| /*** IUnknown methods ***/ |
| #define ID3D11On12Device_QueryInterface(This,riid,ppvObject) (This)->lpVtbl->QueryInterface(This,riid,ppvObject) |
| #define ID3D11On12Device_AddRef(This) (This)->lpVtbl->AddRef(This) |
| #define ID3D11On12Device_Release(This) (This)->lpVtbl->Release(This) |
| /*** ID3D11On12Device methods ***/ |
| #define ID3D11On12Device_CreateWrappedResource(This,d3d12_resource,flags,input_state,output_state,iid,d3d11_resource) (This)->lpVtbl->CreateWrappedResource(This,d3d12_resource,flags,input_state,output_state,iid,d3d11_resource) |
| #define ID3D11On12Device_ReleaseWrappedResources(This,resources,count) (This)->lpVtbl->ReleaseWrappedResources(This,resources,count) |
| #define ID3D11On12Device_AcquireWrappedResources(This,resources,count) (This)->lpVtbl->AcquireWrappedResources(This,resources,count) |
| #else |
| /*** IUnknown methods ***/ |
| static inline HRESULT ID3D11On12Device_QueryInterface(ID3D11On12Device* This,REFIID riid,void **ppvObject) { |
| return This->lpVtbl->QueryInterface(This,riid,ppvObject); |
| } |
| static inline ULONG ID3D11On12Device_AddRef(ID3D11On12Device* This) { |
| return This->lpVtbl->AddRef(This); |
| } |
| static inline ULONG ID3D11On12Device_Release(ID3D11On12Device* This) { |
| return This->lpVtbl->Release(This); |
| } |
| /*** ID3D11On12Device methods ***/ |
| static inline HRESULT ID3D11On12Device_CreateWrappedResource(ID3D11On12Device* This,IUnknown *d3d12_resource,const D3D11_RESOURCE_FLAGS *flags,D3D12_RESOURCE_STATES input_state,D3D12_RESOURCE_STATES output_state,REFIID iid,void **d3d11_resource) { |
| return This->lpVtbl->CreateWrappedResource(This,d3d12_resource,flags,input_state,output_state,iid,d3d11_resource); |
| } |
| static inline void ID3D11On12Device_ReleaseWrappedResources(ID3D11On12Device* This,ID3D11Resource *const *resources,UINT count) { |
| This->lpVtbl->ReleaseWrappedResources(This,resources,count); |
| } |
| static inline void ID3D11On12Device_AcquireWrappedResources(ID3D11On12Device* This,ID3D11Resource *const *resources,UINT count) { |
| This->lpVtbl->AcquireWrappedResources(This,resources,count); |
| } |
| #endif |
| #endif |
| |
| #endif |
| |
| |
| #endif /* __ID3D11On12Device_INTERFACE_DEFINED__ */ |
| |
| HRESULT __stdcall D3D11On12CreateDevice(IUnknown *device,UINT flags,const D3D_FEATURE_LEVEL *feature_levels,UINT feature_level_count,IUnknown *const *queues,UINT queue_count,UINT node_mask,ID3D11Device **d3d11_device,ID3D11DeviceContext **d3d11_immediate_context,D3D_FEATURE_LEVEL *obtained_feature_level); |
| |
| typedef HRESULT (__stdcall *PFN_D3D11ON12_CREATE_DEVICE)(IUnknown *device,UINT flags,const D3D_FEATURE_LEVEL *feature_levels,UINT feature_level_count,IUnknown *const *queues,UINT queue_count,UINT node_mask,ID3D11Device **d3d11_device,ID3D11DeviceContext **d3d11_immediate_context,D3D_FEATURE_LEVEL *obtained_feature_level); |
| /***************************************************************************** |
| * ID3D11On12Device1 interface |
| */ |
| #ifndef __ID3D11On12Device1_INTERFACE_DEFINED__ |
| #define __ID3D11On12Device1_INTERFACE_DEFINED__ |
| |
| DEFINE_GUID(IID_ID3D11On12Device1, 0xbdb64df4, 0xea2f, 0x4c70, 0xb8,0x61, 0xaa,0xab,0x12,0x58,0xbb,0x5d); |
| #if defined(__cplusplus) && !defined(CINTERFACE) |
| MIDL_INTERFACE("bdb64df4-ea2f-4c70-b861-aaab1258bb5d") |
| ID3D11On12Device1 : public ID3D11On12Device |
| { |
| virtual HRESULT STDMETHODCALLTYPE GetD3D12Device( |
| REFIID iid, |
| ID3D12Device **d3d12_device) = 0; |
| |
| }; |
| #ifdef __CRT_UUID_DECL |
| __CRT_UUID_DECL(ID3D11On12Device1, 0xbdb64df4, 0xea2f, 0x4c70, 0xb8,0x61, 0xaa,0xab,0x12,0x58,0xbb,0x5d) |
| #endif |
| #else |
| typedef struct ID3D11On12Device1Vtbl { |
| BEGIN_INTERFACE |
| |
| /*** IUnknown methods ***/ |
| HRESULT (STDMETHODCALLTYPE *QueryInterface)( |
| ID3D11On12Device1 *This, |
| REFIID riid, |
| void **ppvObject); |
| |
| ULONG (STDMETHODCALLTYPE *AddRef)( |
| ID3D11On12Device1 *This); |
| |
| ULONG (STDMETHODCALLTYPE *Release)( |
| ID3D11On12Device1 *This); |
| |
| /*** ID3D11On12Device methods ***/ |
| HRESULT (STDMETHODCALLTYPE *CreateWrappedResource)( |
| ID3D11On12Device1 *This, |
| IUnknown *d3d12_resource, |
| const D3D11_RESOURCE_FLAGS *flags, |
| D3D12_RESOURCE_STATES input_state, |
| D3D12_RESOURCE_STATES output_state, |
| REFIID iid, |
| void **d3d11_resource); |
| |
| void (STDMETHODCALLTYPE *ReleaseWrappedResources)( |
| ID3D11On12Device1 *This, |
| ID3D11Resource *const *resources, |
| UINT count); |
| |
| void (STDMETHODCALLTYPE *AcquireWrappedResources)( |
| ID3D11On12Device1 *This, |
| ID3D11Resource *const *resources, |
| UINT count); |
| |
| /*** ID3D11On12Device1 methods ***/ |
| HRESULT (STDMETHODCALLTYPE *GetD3D12Device)( |
| ID3D11On12Device1 *This, |
| REFIID iid, |
| ID3D12Device **d3d12_device); |
| |
| END_INTERFACE |
| } ID3D11On12Device1Vtbl; |
| |
| interface ID3D11On12Device1 { |
| CONST_VTBL ID3D11On12Device1Vtbl* lpVtbl; |
| }; |
| |
| #ifdef COBJMACROS |
| #ifndef WIDL_C_INLINE_WRAPPERS |
| /*** IUnknown methods ***/ |
| #define ID3D11On12Device1_QueryInterface(This,riid,ppvObject) (This)->lpVtbl->QueryInterface(This,riid,ppvObject) |
| #define ID3D11On12Device1_AddRef(This) (This)->lpVtbl->AddRef(This) |
| #define ID3D11On12Device1_Release(This) (This)->lpVtbl->Release(This) |
| /*** ID3D11On12Device methods ***/ |
| #define ID3D11On12Device1_CreateWrappedResource(This,d3d12_resource,flags,input_state,output_state,iid,d3d11_resource) (This)->lpVtbl->CreateWrappedResource(This,d3d12_resource,flags,input_state,output_state,iid,d3d11_resource) |
| #define ID3D11On12Device1_ReleaseWrappedResources(This,resources,count) (This)->lpVtbl->ReleaseWrappedResources(This,resources,count) |
| #define ID3D11On12Device1_AcquireWrappedResources(This,resources,count) (This)->lpVtbl->AcquireWrappedResources(This,resources,count) |
| /*** ID3D11On12Device1 methods ***/ |
| #define ID3D11On12Device1_GetD3D12Device(This,iid,d3d12_device) (This)->lpVtbl->GetD3D12Device(This,iid,d3d12_device) |
| #else |
| /*** IUnknown methods ***/ |
| static inline HRESULT ID3D11On12Device1_QueryInterface(ID3D11On12Device1* This,REFIID riid,void **ppvObject) { |
| return This->lpVtbl->QueryInterface(This,riid,ppvObject); |
| } |
| static inline ULONG ID3D11On12Device1_AddRef(ID3D11On12Device1* This) { |
| return This->lpVtbl->AddRef(This); |
| } |
| static inline ULONG ID3D11On12Device1_Release(ID3D11On12Device1* This) { |
| return This->lpVtbl->Release(This); |
| } |
| /*** ID3D11On12Device methods ***/ |
| static inline HRESULT ID3D11On12Device1_CreateWrappedResource(ID3D11On12Device1* This,IUnknown *d3d12_resource,const D3D11_RESOURCE_FLAGS *flags,D3D12_RESOURCE_STATES input_state,D3D12_RESOURCE_STATES output_state,REFIID iid,void **d3d11_resource) { |
| return This->lpVtbl->CreateWrappedResource(This,d3d12_resource,flags,input_state,output_state,iid,d3d11_resource); |
| } |
| static inline void ID3D11On12Device1_ReleaseWrappedResources(ID3D11On12Device1* This,ID3D11Resource *const *resources,UINT count) { |
| This->lpVtbl->ReleaseWrappedResources(This,resources,count); |
| } |
| static inline void ID3D11On12Device1_AcquireWrappedResources(ID3D11On12Device1* This,ID3D11Resource *const *resources,UINT count) { |
| This->lpVtbl->AcquireWrappedResources(This,resources,count); |
| } |
| /*** ID3D11On12Device1 methods ***/ |
| static inline HRESULT ID3D11On12Device1_GetD3D12Device(ID3D11On12Device1* This,REFIID iid,ID3D12Device **d3d12_device) { |
| return This->lpVtbl->GetD3D12Device(This,iid,d3d12_device); |
| } |
| #endif |
| #endif |
| |
| #endif |
| |
| |
| #endif /* __ID3D11On12Device1_INTERFACE_DEFINED__ */ |
| |
| /***************************************************************************** |
| * ID3D11On12Device2 interface |
| */ |
| #ifndef __ID3D11On12Device2_INTERFACE_DEFINED__ |
| #define __ID3D11On12Device2_INTERFACE_DEFINED__ |
| |
| DEFINE_GUID(IID_ID3D11On12Device2, 0xdc90f331, 0x4740, 0x43fa, 0x86,0x6e, 0x67,0xf1,0x2c,0xb5,0x82,0x23); |
| #if defined(__cplusplus) && !defined(CINTERFACE) |
| MIDL_INTERFACE("dc90f331-4740-43fa-866e-67f12cb58223") |
| ID3D11On12Device2 : public ID3D11On12Device1 |
| { |
| virtual HRESULT STDMETHODCALLTYPE UnwrapUnderlyingResource( |
| ID3D11Resource *d3d11_resource, |
| ID3D12CommandQueue *d3d12_command_queue, |
| REFIID iid, |
| void **d3d12_resource) = 0; |
| |
| virtual HRESULT STDMETHODCALLTYPE ReturnUnderlyingResource( |
| ID3D11Resource *d3d11_resource, |
| UINT num_sync, |
| UINT64 *signal_values, |
| ID3D12Fence **fences) = 0; |
| |
| }; |
| #ifdef __CRT_UUID_DECL |
| __CRT_UUID_DECL(ID3D11On12Device2, 0xdc90f331, 0x4740, 0x43fa, 0x86,0x6e, 0x67,0xf1,0x2c,0xb5,0x82,0x23) |
| #endif |
| #else |
| typedef struct ID3D11On12Device2Vtbl { |
| BEGIN_INTERFACE |
| |
| /*** IUnknown methods ***/ |
| HRESULT (STDMETHODCALLTYPE *QueryInterface)( |
| ID3D11On12Device2 *This, |
| REFIID riid, |
| void **ppvObject); |
| |
| ULONG (STDMETHODCALLTYPE *AddRef)( |
| ID3D11On12Device2 *This); |
| |
| ULONG (STDMETHODCALLTYPE *Release)( |
| ID3D11On12Device2 *This); |
| |
| /*** ID3D11On12Device methods ***/ |
| HRESULT (STDMETHODCALLTYPE *CreateWrappedResource)( |
| ID3D11On12Device2 *This, |
| IUnknown *d3d12_resource, |
| const D3D11_RESOURCE_FLAGS *flags, |
| D3D12_RESOURCE_STATES input_state, |
| D3D12_RESOURCE_STATES output_state, |
| REFIID iid, |
| void **d3d11_resource); |
| |
| void (STDMETHODCALLTYPE *ReleaseWrappedResources)( |
| ID3D11On12Device2 *This, |
| ID3D11Resource *const *resources, |
| UINT count); |
| |
| void (STDMETHODCALLTYPE *AcquireWrappedResources)( |
| ID3D11On12Device2 *This, |
| ID3D11Resource *const *resources, |
| UINT count); |
| |
| /*** ID3D11On12Device1 methods ***/ |
| HRESULT (STDMETHODCALLTYPE *GetD3D12Device)( |
| ID3D11On12Device2 *This, |
| REFIID iid, |
| ID3D12Device **d3d12_device); |
| |
| /*** ID3D11On12Device2 methods ***/ |
| HRESULT (STDMETHODCALLTYPE *UnwrapUnderlyingResource)( |
| ID3D11On12Device2 *This, |
| ID3D11Resource *d3d11_resource, |
| ID3D12CommandQueue *d3d12_command_queue, |
| REFIID iid, |
| void **d3d12_resource); |
| |
| HRESULT (STDMETHODCALLTYPE *ReturnUnderlyingResource)( |
| ID3D11On12Device2 *This, |
| ID3D11Resource *d3d11_resource, |
| UINT num_sync, |
| UINT64 *signal_values, |
| ID3D12Fence **fences); |
| |
| END_INTERFACE |
| } ID3D11On12Device2Vtbl; |
| |
| interface ID3D11On12Device2 { |
| CONST_VTBL ID3D11On12Device2Vtbl* lpVtbl; |
| }; |
| |
| #ifdef COBJMACROS |
| #ifndef WIDL_C_INLINE_WRAPPERS |
| /*** IUnknown methods ***/ |
| #define ID3D11On12Device2_QueryInterface(This,riid,ppvObject) (This)->lpVtbl->QueryInterface(This,riid,ppvObject) |
| #define ID3D11On12Device2_AddRef(This) (This)->lpVtbl->AddRef(This) |
| #define ID3D11On12Device2_Release(This) (This)->lpVtbl->Release(This) |
| /*** ID3D11On12Device methods ***/ |
| #define ID3D11On12Device2_CreateWrappedResource(This,d3d12_resource,flags,input_state,output_state,iid,d3d11_resource) (This)->lpVtbl->CreateWrappedResource(This,d3d12_resource,flags,input_state,output_state,iid,d3d11_resource) |
| #define ID3D11On12Device2_ReleaseWrappedResources(This,resources,count) (This)->lpVtbl->ReleaseWrappedResources(This,resources,count) |
| #define ID3D11On12Device2_AcquireWrappedResources(This,resources,count) (This)->lpVtbl->AcquireWrappedResources(This,resources,count) |
| /*** ID3D11On12Device1 methods ***/ |
| #define ID3D11On12Device2_GetD3D12Device(This,iid,d3d12_device) (This)->lpVtbl->GetD3D12Device(This,iid,d3d12_device) |
| /*** ID3D11On12Device2 methods ***/ |
| #define ID3D11On12Device2_UnwrapUnderlyingResource(This,d3d11_resource,d3d12_command_queue,iid,d3d12_resource) (This)->lpVtbl->UnwrapUnderlyingResource(This,d3d11_resource,d3d12_command_queue,iid,d3d12_resource) |
| #define ID3D11On12Device2_ReturnUnderlyingResource(This,d3d11_resource,num_sync,signal_values,fences) (This)->lpVtbl->ReturnUnderlyingResource(This,d3d11_resource,num_sync,signal_values,fences) |
| #else |
| /*** IUnknown methods ***/ |
| static inline HRESULT ID3D11On12Device2_QueryInterface(ID3D11On12Device2* This,REFIID riid,void **ppvObject) { |
| return This->lpVtbl->QueryInterface(This,riid,ppvObject); |
| } |
| static inline ULONG ID3D11On12Device2_AddRef(ID3D11On12Device2* This) { |
| return This->lpVtbl->AddRef(This); |
| } |
| static inline ULONG ID3D11On12Device2_Release(ID3D11On12Device2* This) { |
| return This->lpVtbl->Release(This); |
| } |
| /*** ID3D11On12Device methods ***/ |
| static inline HRESULT ID3D11On12Device2_CreateWrappedResource(ID3D11On12Device2* This,IUnknown *d3d12_resource,const D3D11_RESOURCE_FLAGS *flags,D3D12_RESOURCE_STATES input_state,D3D12_RESOURCE_STATES output_state,REFIID iid,void **d3d11_resource) { |
| return This->lpVtbl->CreateWrappedResource(This,d3d12_resource,flags,input_state,output_state,iid,d3d11_resource); |
| } |
| static inline void ID3D11On12Device2_ReleaseWrappedResources(ID3D11On12Device2* This,ID3D11Resource *const *resources,UINT count) { |
| This->lpVtbl->ReleaseWrappedResources(This,resources,count); |
| } |
| static inline void ID3D11On12Device2_AcquireWrappedResources(ID3D11On12Device2* This,ID3D11Resource *const *resources,UINT count) { |
| This->lpVtbl->AcquireWrappedResources(This,resources,count); |
| } |
| /*** ID3D11On12Device1 methods ***/ |
| static inline HRESULT ID3D11On12Device2_GetD3D12Device(ID3D11On12Device2* This,REFIID iid,ID3D12Device **d3d12_device) { |
| return This->lpVtbl->GetD3D12Device(This,iid,d3d12_device); |
| } |
| /*** ID3D11On12Device2 methods ***/ |
| static inline HRESULT ID3D11On12Device2_UnwrapUnderlyingResource(ID3D11On12Device2* This,ID3D11Resource *d3d11_resource,ID3D12CommandQueue *d3d12_command_queue,REFIID iid,void **d3d12_resource) { |
| return This->lpVtbl->UnwrapUnderlyingResource(This,d3d11_resource,d3d12_command_queue,iid,d3d12_resource); |
| } |
| static inline HRESULT ID3D11On12Device2_ReturnUnderlyingResource(ID3D11On12Device2* This,ID3D11Resource *d3d11_resource,UINT num_sync,UINT64 *signal_values,ID3D12Fence **fences) { |
| return This->lpVtbl->ReturnUnderlyingResource(This,d3d11_resource,num_sync,signal_values,fences); |
| } |
| #endif |
| #endif |
| |
| #endif |
| |
| |
| #endif /* __ID3D11On12Device2_INTERFACE_DEFINED__ */ |
| |
| /* Begin additional prototypes for all interfaces */ |
| |
| |
| /* End additional prototypes */ |
| |
| #ifdef __cplusplus |
| } |
| #endif |
| |
| #endif /* __d3d11on12_h__ */ |