[PATCH v2 0/1] MR14: include: Add missing types in vkd3d_d3d12.idl.
-- v2: include: Add missing types in vkd3d_d3d12.idl. https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/14
From: Biswapriyo Nath <nathbappai(a)gmail.com> Signed-off-by: Biswapriyo Nath <nathbappai(a)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); -- GitLab https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/14
This merge request was approved by Zebediah Figura. -- https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/14
The changes seem fine, but the commit message contains practically no information. -- https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/14#note_10951
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.
-- https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/14#note_10976
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.
-- https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/14#note_11488
This merge request was closed by Henri Verbeet. -- https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/14
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.
-- https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/14#note_11657
participants (4)
-
Biswapriyo Nath -
Biswapriyo Nath (@Biswa96) -
Henri Verbeet (@hverbeet) -
Zebediah Figura (@zfigura)