mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2025-09-12 18:50:22 -07:00
include: Add the ID3D12ProtectedResourceSession1 interface.
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
committed by
Alexandre Julliard
parent
aad1c3e35c
commit
a7bb5b6ba3
Notes:
Alexandre Julliard
2023-09-13 23:18:09 +02:00
Approved-by: Henri Verbeet (@hverbeet) Approved-by: Alexandre Julliard (@julliard) Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/332
@@ -4026,6 +4026,39 @@ interface ID3D12Device6 : ID3D12Device5
|
|||||||
BOOL *further_measurements_desired);
|
BOOL *further_measurements_desired);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cpp_quote("DEFINE_GUID(D3D12_PROTECTED_RESOURCES_SESSION_HARDWARE_PROTECTED, 0x62b0084e, 0xc70e, 0x4daa, 0xa1, 0x09, 0x30, 0xff, 0x8d, 0x5a, 0x04, 0x82);")
|
||||||
|
|
||||||
|
typedef struct D3D12_FEATURE_DATA_PROTECTED_RESOURCE_SESSION_TYPE_COUNT
|
||||||
|
{
|
||||||
|
UINT NodeIndex;
|
||||||
|
UINT Count;
|
||||||
|
} D3D12_FEATURE_DATA_PROTECTED_RESOURCE_SESSION_TYPE_COUNT;
|
||||||
|
|
||||||
|
typedef struct D3D12_FEATURE_DATA_PROTECTED_RESOURCE_SESSION_TYPES
|
||||||
|
{
|
||||||
|
UINT NodeIndex;
|
||||||
|
UINT Count;
|
||||||
|
GUID *pTypes;
|
||||||
|
} D3D12_FEATURE_DATA_PROTECTED_RESOURCE_SESSION_TYPES;
|
||||||
|
|
||||||
|
typedef struct D3D12_PROTECTED_RESOURCE_SESSION_DESC1
|
||||||
|
{
|
||||||
|
UINT NodeMask;
|
||||||
|
D3D12_PROTECTED_RESOURCE_SESSION_FLAGS Flags;
|
||||||
|
GUID ProtectionType;
|
||||||
|
} D3D12_PROTECTED_RESOURCE_SESSION_DESC1;
|
||||||
|
|
||||||
|
[
|
||||||
|
uuid(d6f12dd6-76fb-406e-8961-4296eefc0409),
|
||||||
|
object,
|
||||||
|
local,
|
||||||
|
pointer_default(unique)
|
||||||
|
]
|
||||||
|
interface ID3D12ProtectedResourceSession1 : ID3D12ProtectedResourceSession
|
||||||
|
{
|
||||||
|
D3D12_PROTECTED_RESOURCE_SESSION_DESC1 GetDesc1();
|
||||||
|
}
|
||||||
|
|
||||||
typedef HRESULT (__stdcall *PFN_D3D12_CREATE_ROOT_SIGNATURE_DESERIALIZER)(
|
typedef HRESULT (__stdcall *PFN_D3D12_CREATE_ROOT_SIGNATURE_DESERIALIZER)(
|
||||||
const void *data, SIZE_T data_size, REFIID iid, void **deserializer);
|
const void *data, SIZE_T data_size, REFIID iid, void **deserializer);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user