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
ee4a02ce
Commit
ee4a02ce
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 D3D12CreateRootSignatureDeserializer().
Signed-off-by:
Józef Kucia
<
jkucia@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
281bdcac
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
1 deletion
+21
-1
Makefile.in
dlls/d3d12/Makefile.in
+2
-0
d3d12.spec
dlls/d3d12/d3d12.spec
+1
-1
d3d12_main.c
dlls/d3d12/d3d12_main.c
+18
-0
No files found.
dlls/d3d12/Makefile.in
View file @
ee4a02ce
MODULE
=
d3d12.dll
IMPORTLIB
=
d3d12
EXTRALIBS
=
$(VKD3D_LIBS)
EXTRAINCL
=
$(VKD3D_CFLAGS)
C_SRCS
=
\
d3d12_main.c
dlls/d3d12/d3d12.spec
View file @
ee4a02ce
...
...
@@ -4,5 +4,5 @@
103 stub D3D12CoreCreateLayeredDevice
104 stub D3D12CoreGetLayeredDeviceSize
105 stub D3D12CoreRegisterLayers
106 st
ub D3D12CreateRootSignatureDeserializer
106 st
dcall D3D12CreateRootSignatureDeserializer(ptr long ptr ptr)
107 stub D3D12SerializeRootSignature
dlls/d3d12/d3d12_main.c
View file @
ee4a02ce
...
...
@@ -20,9 +20,18 @@
#include "config.h"
#include "wine/port.h"
#define VK_NO_PROTOTYPES
#define VKD3D_NO_VULKAN_H
#define VKD3D_NO_WIN32_TYPES
#define WINE_VK_ALIGN(x)
#include "wine/debug.h"
#include "wine/vulkan.h"
#include "d3d12.h"
#include <vkd3d.h>
WINE_DEFAULT_DEBUG_CHANNEL
(
d3d12
);
HRESULT
WINAPI
D3D12GetDebugInterface
(
REFIID
iid
,
void
**
debug
)
...
...
@@ -40,3 +49,12 @@ HRESULT WINAPI D3D12CreateDevice(IUnknown *adapter, D3D_FEATURE_LEVEL minimum_fe
return
E_NOTIMPL
;
}
HRESULT
WINAPI
D3D12CreateRootSignatureDeserializer
(
const
void
*
data
,
SIZE_T
data_size
,
REFIID
iid
,
void
**
deserializer
)
{
TRACE
(
"data %p, data_size %lu, iid %s, deserializer %p.
\n
"
,
data
,
data_size
,
debugstr_guid
(
iid
),
deserializer
);
return
vkd3d_create_root_signature_deserializer
(
data
,
data_size
,
iid
,
deserializer
);
}
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