Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
vkd3d
Manage
Activity
Members
Labels
Plan
Wiki
Bugzilla
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wine
vkd3d
Commits
6196199a
Commit
6196199a
authored
1 year ago
by
Conor McCarthy
Committed by
Alexandre Julliard
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
vkd3d: Use struct d3d12_pipeline_state_desc for compute pipelines.
parent
39afbb8e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!461
vkd3d: Implement ID3D12Device2::CreatePipelineState().
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libs/vkd3d/state.c
+19
-5
19 additions, 5 deletions
libs/vkd3d/state.c
with
19 additions
and
5 deletions
libs/vkd3d/state.c
+
19
−
5
View file @
6196199a
...
...
@@ -1763,6 +1763,17 @@ static void pipeline_state_desc_from_d3d12_graphics_desc(struct d3d12_pipeline_s
desc
->
flags
=
d3d12_desc
->
Flags
;
}
static
void
pipeline_state_desc_from_d3d12_compute_desc
(
struct
d3d12_pipeline_state_desc
*
desc
,
const
D3D12_COMPUTE_PIPELINE_STATE_DESC
*
d3d12_desc
)
{
memset
(
desc
,
0
,
sizeof
(
*
desc
));
desc
->
root_signature
=
d3d12_desc
->
pRootSignature
;
desc
->
cs
=
d3d12_desc
->
CS
;
desc
->
node_mask
=
d3d12_desc
->
NodeMask
;
desc
->
cached_pso
=
d3d12_desc
->
CachedPSO
;
desc
->
flags
=
d3d12_desc
->
Flags
;
}
struct
vkd3d_pipeline_key
{
D3D12_PRIMITIVE_TOPOLOGY
topology
;
...
...
@@ -2220,7 +2231,7 @@ static HRESULT d3d12_pipeline_state_find_and_init_uav_counters(struct d3d12_pipe
}
static
HRESULT
d3d12_pipeline_state_init_compute
(
struct
d3d12_pipeline_state
*
state
,
struct
d3d12_device
*
device
,
const
D3D12_COMPUTE_PIPELINE_STATE_DESC
*
desc
)
struct
d3d12_device
*
device
,
const
struct
d3d12_pipeline_state_desc
*
desc
)
{
const
struct
vkd3d_vk_device_procs
*
vk_procs
=
&
device
->
vk_procs
;
struct
vkd3d_shader_interface_info
shader_interface
;
...
...
@@ -2235,14 +2246,14 @@ static HRESULT d3d12_pipeline_state_init_compute(struct d3d12_pipeline_state *st
memset
(
&
state
->
uav_counters
,
0
,
sizeof
(
state
->
uav_counters
));
if
(
!
(
root_signature
=
unsafe_impl_from_ID3D12RootSignature
(
desc
->
pR
oot
S
ignature
)))
if
(
!
(
root_signature
=
unsafe_impl_from_ID3D12RootSignature
(
desc
->
r
oot
_s
ignature
)))
{
WARN
(
"Root signature is NULL.
\n
"
);
return
E_INVALIDARG
;
}
if
(
FAILED
(
hr
=
d3d12_pipeline_state_find_and_init_uav_counters
(
state
,
device
,
root_signature
,
&
desc
->
CS
,
VK_SHADER_STAGE_COMPUTE_BIT
)))
&
desc
->
cs
,
VK_SHADER_STAGE_COMPUTE_BIT
)))
return
hr
;
memset
(
&
target_info
,
0
,
sizeof
(
target_info
));
...
...
@@ -2283,7 +2294,7 @@ static HRESULT d3d12_pipeline_state_init_compute(struct d3d12_pipeline_state *st
vk_pipeline_layout
=
state
->
uav_counters
.
vk_pipeline_layout
?
state
->
uav_counters
.
vk_pipeline_layout
:
root_signature
->
vk_pipeline_layout
;
if
(
FAILED
(
hr
=
vkd3d_create_compute_pipeline
(
device
,
&
desc
->
CS
,
&
shader_interface
,
if
(
FAILED
(
hr
=
vkd3d_create_compute_pipeline
(
device
,
&
desc
->
cs
,
&
shader_interface
,
vk_pipeline_layout
,
&
state
->
u
.
compute
.
vk_pipeline
)))
{
WARN
(
"Failed to create Vulkan compute pipeline, hr %#x.
\n
"
,
hr
);
...
...
@@ -2307,13 +2318,16 @@ static HRESULT d3d12_pipeline_state_init_compute(struct d3d12_pipeline_state *st
HRESULT
d3d12_pipeline_state_create_compute
(
struct
d3d12_device
*
device
,
const
D3D12_COMPUTE_PIPELINE_STATE_DESC
*
desc
,
struct
d3d12_pipeline_state
**
state
)
{
struct
d3d12_pipeline_state_desc
pipeline_desc
;
struct
d3d12_pipeline_state
*
object
;
HRESULT
hr
;
pipeline_state_desc_from_d3d12_compute_desc
(
&
pipeline_desc
,
desc
);
if
(
!
(
object
=
vkd3d_malloc
(
sizeof
(
*
object
))))
return
E_OUTOFMEMORY
;
if
(
FAILED
(
hr
=
d3d12_pipeline_state_init_compute
(
object
,
device
,
desc
)))
if
(
FAILED
(
hr
=
d3d12_pipeline_state_init_compute
(
object
,
device
,
&
pipeline_
desc
)))
{
vkd3d_free
(
object
);
return
hr
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment