Skip to content
Snippets Groups Projects
Commit 8076c9a5 authored by Martin Storsjö's avatar Martin Storsjö Committed by Alexandre Julliard
Browse files

include: Add the ID3D12SwapChainAssistant interface.

parent 06388a2c
No related branches found
No related tags found
1 merge request!332include: Fill in missing enum/struct/interfaces in vkd3d_d3d12.idl
......@@ -3274,6 +3274,22 @@ interface ID3D12LifetimeOwner : IUnknown
void LifetimeStateUpdated(D3D12_LIFETIME_STATE NewState);
}
[
uuid(f1df64b6-57fd-49cd-8807-c0eb88b45c8f),
object,
local,
pointer_default(unique)
]
interface ID3D12SwapChainAssistant : IUnknown
{
LUID GetLUID();
HRESULT GetSwapChainObject(REFIID riid, void **ppv);
HRESULT GetCurrentResourceAndCommandQueue(
REFIID riid_resource, void **resource,
REFIID riid_queue, void **queue);
HRESULT InsertImplicitSync();
}
typedef HRESULT (__stdcall *PFN_D3D12_CREATE_ROOT_SIGNATURE_DESERIALIZER)(
const void *data, SIZE_T data_size, REFIID iid, void **deserializer);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment