-- v2: include: Add missing types in vkd3d_d3d12.idl.
From: Biswapriyo Nath nathbappai@gmail.com
Signed-off-by: Biswapriyo Nath nathbappai@gmail.com --- include/vkd3d_d3d12.idl | 7 +++++++ 1 file changed, 7 insertions(+)
diff --git a/include/vkd3d_d3d12.idl b/include/vkd3d_d3d12.idl index e30df590..394dfa50 100644 --- a/include/vkd3d_d3d12.idl +++ b/include/vkd3d_d3d12.idl @@ -2621,6 +2621,9 @@ interface ID3D12VersionedRootSignatureDeserializer : IUnknown const D3D12_VERSIONED_ROOT_SIGNATURE_DESC *GetUnconvertedRootSignatureDesc(); };
+typedef HRESULT (__stdcall *PFN_D3D12_CREATE_ROOT_SIGNATURE_DESERIALIZER)( + const void *data, SIZE_T data_size, REFIID iid, void **deserializer); + [local] HRESULT __stdcall D3D12CreateRootSignatureDeserializer( const void *data, SIZE_T data_size, REFIID iid, void **deserializer);
@@ -2630,6 +2633,10 @@ typedef HRESULT (__stdcall *PFN_D3D12_CREATE_VERSIONED_ROOT_SIGNATURE_DESERIALIZ [local] HRESULT __stdcall D3D12CreateVersionedRootSignatureDeserializer( const void *data, SIZE_T data_size, REFIID iid, void **deserializer);
+typedef HRESULT (__stdcall *PFN_D3D12_SERIALIZE_ROOT_SIGNATURE)( + const D3D12_ROOT_SIGNATURE_DESC *root_signature_desc, + D3D_ROOT_SIGNATURE_VERSION version, ID3DBlob **blob, ID3DBlob **error_blob); + [local] HRESULT __stdcall D3D12SerializeRootSignature( const D3D12_ROOT_SIGNATURE_DESC *root_signature_desc, D3D_ROOT_SIGNATURE_VERSION version, ID3DBlob **blob, ID3DBlob **error_blob);
This merge request was approved by Zebediah Figura.
The changes seem fine, but the commit message contains practically no information.
On Mon Oct 17 18:26:07 2022 +0000, Henri Verbeet wrote:
The changes seem fine, but the commit message contains practically no information.
I am not sure what commit message I should add for this simple change. Feel free to modify the patch as you like.
On Mon Oct 17 18:26:07 2022 +0000, Biswapriyo Nath wrote:
I am not sure what commit message I should add for this simple change. Feel free to modify the patch as you like.
This is upstream as commits c9198735fd44762ead120ac2509a3c59b8768915 and 6f1f14d97a9f7688d1c838060180035c15f30613 now; closing this merge request.
This merge request was closed by Henri Verbeet.
On Thu Oct 20 10:19:00 2022 +0000, Henri Verbeet wrote:
This is upstream as commits c9198735fd44762ead120ac2509a3c59b8768915 and 6f1f14d97a9f7688d1c838060180035c15f30613 now; closing this merge request.
Thanks.