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
aca965d7
Commit
aca965d7
authored
Oct 16, 2023
by
Alex Henrie
Committed by
Alexandre Julliard
Oct 17, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dcompiler_43: Use debugstr_fourcc instead of debugstr_an.
parent
c7d9c4a8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
blob.c
dlls/d3dcompiler_43/blob.c
+2
-2
reflection.c
dlls/d3dcompiler_43/reflection.c
+2
-2
No files found.
dlls/d3dcompiler_43/blob.c
View file @
aca965d7
...
...
@@ -209,7 +209,7 @@ static BOOL check_blob_part(DWORD tag, D3D_BLOB_PART part)
break
;
}
TRACE
(
"%s tag %s
\n
"
,
add
?
"Add"
:
"Skip"
,
debugstr_
an
((
const
char
*
)
&
tag
,
4
));
TRACE
(
"%s tag %s
\n
"
,
add
?
"Add"
:
"Skip"
,
debugstr_
fourcc
(
tag
));
return
add
;
}
...
...
@@ -341,7 +341,7 @@ static BOOL check_blob_strip(DWORD tag, UINT flags)
break
;
}
TRACE
(
"%s tag %s
\n
"
,
add
?
"Add"
:
"Skip"
,
debugstr_
an
((
const
char
*
)
&
tag
,
4
));
TRACE
(
"%s tag %s
\n
"
,
add
?
"Add"
:
"Skip"
,
debugstr_
fourcc
(
tag
));
return
add
;
}
...
...
dlls/d3dcompiler_43/reflection.c
View file @
aca965d7
...
...
@@ -1705,7 +1705,7 @@ static HRESULT d3dcompiler_parse_signature(struct d3dcompiler_shader_signature *
break
;
default:
FIXME
(
"Unhandled section %s!
\n
"
,
debugstr_
an
((
const
char
*
)
&
section
->
tag
,
4
));
FIXME
(
"Unhandled section %s!
\n
"
,
debugstr_
fourcc
(
section
->
tag
));
element_size
=
D3DCOMPILER_SIGNATURE_ELEMENT_SIZE6
;
break
;
}
...
...
@@ -1963,7 +1963,7 @@ static HRESULT d3dcompiler_shader_reflection_init(struct d3dcompiler_shader_refl
break
;
default:
FIXME
(
"Unhandled section %s!
\n
"
,
debugstr_
an
((
const
char
*
)
&
section
->
tag
,
4
));
FIXME
(
"Unhandled section %s!
\n
"
,
debugstr_
fourcc
(
section
->
tag
));
break
;
}
}
...
...
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