Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
803fa962
Commit
803fa962
authored
May 23, 2018
by
Józef Kucia
Committed by
Alexandre Julliard
May 24, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d12: Implement D3D12SerializeRootSignature().
Signed-off-by:
Józef Kucia
<
jkucia@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ee4a02ce
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
d3d12.spec
dlls/d3d12/d3d12.spec
+1
-1
d3d12_main.c
dlls/d3d12/d3d12_main.c
+9
-0
No files found.
dlls/d3d12/d3d12.spec
View file @
803fa962
...
@@ -5,4 +5,4 @@
...
@@ -5,4 +5,4 @@
104 stub D3D12CoreGetLayeredDeviceSize
104 stub D3D12CoreGetLayeredDeviceSize
105 stub D3D12CoreRegisterLayers
105 stub D3D12CoreRegisterLayers
106 stdcall D3D12CreateRootSignatureDeserializer(ptr long ptr ptr)
106 stdcall D3D12CreateRootSignatureDeserializer(ptr long ptr ptr)
107 st
ub D3D12SerializeRootSignature
107 st
dcall D3D12SerializeRootSignature(ptr long ptr ptr)
dlls/d3d12/d3d12_main.c
View file @
803fa962
...
@@ -58,3 +58,12 @@ HRESULT WINAPI D3D12CreateRootSignatureDeserializer(const void *data, SIZE_T dat
...
@@ -58,3 +58,12 @@ HRESULT WINAPI D3D12CreateRootSignatureDeserializer(const void *data, SIZE_T dat
return
vkd3d_create_root_signature_deserializer
(
data
,
data_size
,
iid
,
deserializer
);
return
vkd3d_create_root_signature_deserializer
(
data
,
data_size
,
iid
,
deserializer
);
}
}
HRESULT
WINAPI
D3D12SerializeRootSignature
(
const
D3D12_ROOT_SIGNATURE_DESC
*
root_signature_desc
,
D3D_ROOT_SIGNATURE_VERSION
version
,
ID3DBlob
**
blob
,
ID3DBlob
**
error_blob
)
{
TRACE
(
"root_signature_desc %p, version %#x, blob %p, error_blob %p.
\n
"
,
root_signature_desc
,
version
,
blob
,
error_blob
);
return
vkd3d_serialize_root_signature
(
root_signature_desc
,
version
,
blob
,
error_blob
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment