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
beb1805c
Commit
beb1805c
authored
Oct 16, 2023
by
Alex Henrie
Committed by
Alexandre Julliard
Oct 17, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d10: Use debugstr_fourcc instead of debugstr_an.
parent
53383beb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
effect.c
dlls/d3d10/effect.c
+4
-4
No files found.
dlls/d3d10/effect.c
View file @
beb1805c
...
...
@@ -2853,7 +2853,7 @@ static HRESULT fxlvm_chunk_handler(const struct vkd3d_shader_dxbc_section_desc *
size_t
data_size
=
section
->
data
.
size
;
uint32_t
tag
=
section
->
tag
;
TRACE
(
"Chunk tag: %s, size: %Iu.
\n
"
,
debugstr_
an
((
const
char
*
)
&
tag
,
4
),
data_size
);
TRACE
(
"Chunk tag: %s, size: %Iu.
\n
"
,
debugstr_
fourcc
(
tag
),
data_size
);
switch
(
tag
)
{
...
...
@@ -2867,7 +2867,7 @@ static HRESULT fxlvm_chunk_handler(const struct vkd3d_shader_dxbc_section_desc *
return
parse_fx10_ctab
(
ctx
,
data
,
data_size
);
default:
FIXME
(
"Unhandled chunk %s.
\n
"
,
debugstr_
an
((
const
char
*
)
&
tag
,
4
));
FIXME
(
"Unhandled chunk %s.
\n
"
,
debugstr_
fourcc
(
tag
));
return
S_OK
;
}
}
...
...
@@ -4325,12 +4325,12 @@ HRESULT d3d10_effect_parse(struct d3d10_effect *effect, const void *data, SIZE_T
section
=
&
dxbc_desc
.
sections
[
i
];
TRACE
(
"Section %u: tag %s, data {%p, %#Ix}.
\n
"
,
i
,
debugstr_
an
((
const
char
*
)
&
section
->
tag
,
4
),
i
,
debugstr_
fourcc
(
section
->
tag
),
section
->
data
.
code
,
section
->
data
.
size
);
if
(
section
->
tag
!=
TAG_FX10
)
{
FIXME
(
"Unhandled chunk %s.
\n
"
,
debugstr_
an
((
const
char
*
)
&
section
->
tag
,
4
));
FIXME
(
"Unhandled chunk %s.
\n
"
,
debugstr_
fourcc
(
section
->
tag
));
continue
;
}
...
...
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