Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
749da353
Commit
749da353
authored
May 31, 2021
by
Matteo Bruni
Committed by
Alexandre Julliard
Jun 01, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dcompiler: Fix typo in struct d3dcompiler_shader_reflection.
Signed-off-by:
Matteo Bruni
<
mbruni@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2e64d914
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
reflection.c
dlls/d3dcompiler_43/reflection.c
+4
-4
No files found.
dlls/d3dcompiler_43/reflection.c
View file @
749da353
...
...
@@ -140,7 +140,7 @@ struct d3dcompiler_shader_reflection
UINT
dynamic_flow_control_count
;
UINT
c_control_points
;
D3D_TESSELLATOR_OUTPUT_PRIMITIVE
hs_output_primitive
;
D3D_TESSELLATOR_PARTITIONING
hs_prtitioning
;
D3D_TESSELLATOR_PARTITIONING
hs_p
a
rtitioning
;
D3D_TESSELLATOR_DOMAIN
tessellator_domain
;
struct
d3dcompiler_shader_signature
*
isgn
;
...
...
@@ -428,7 +428,7 @@ static HRESULT STDMETHODCALLTYPE d3dcompiler_shader_reflection_GetDesc(ID3D11Sha
desc
->
cGSInstanceCount
=
0
;
desc
->
cControlPoints
=
This
->
c_control_points
;
desc
->
HSOutputPrimitive
=
This
->
hs_output_primitive
;
desc
->
HSPartitioning
=
This
->
hs_prtitioning
;
desc
->
HSPartitioning
=
This
->
hs_p
a
rtitioning
;
desc
->
TessellatorDomain
=
This
->
tessellator_domain
;
desc
->
cBarrierInstructions
=
0
;
desc
->
cInterlockedInstructions
=
0
;
...
...
@@ -1184,8 +1184,8 @@ static HRESULT d3dcompiler_parse_stat(struct d3dcompiler_shader_reflection *r, c
r
->
hs_output_primitive
=
read_dword
(
&
ptr
);
TRACE
(
"HSOutputPrimitive: %x
\n
"
,
r
->
hs_output_primitive
);
r
->
hs_prtitioning
=
read_dword
(
&
ptr
);
TRACE
(
"HSPartitioning: %x
\n
"
,
r
->
hs_prtitioning
);
r
->
hs_p
a
rtitioning
=
read_dword
(
&
ptr
);
TRACE
(
"HSPartitioning: %x
\n
"
,
r
->
hs_p
a
rtitioning
);
r
->
tessellator_domain
=
read_dword
(
&
ptr
);
TRACE
(
"TessellatorDomain: %x
\n
"
,
r
->
tessellator_domain
);
...
...
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