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
ae1f9899
Commit
ae1f9899
authored
Oct 06, 2021
by
Matteo Bruni
Committed by
Alexandre Julliard
Oct 07, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dcompiler/tests: Also accept broken HRESULT with d3dcompiler_46.
Signed-off-by:
Matteo Bruni
<
mbruni@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
c7bd6865
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
reflection.c
dlls/d3dcompiler_43/tests/reflection.c
+2
-2
No files found.
dlls/d3dcompiler_43/tests/reflection.c
View file @
ae1f9899
...
...
@@ -164,8 +164,8 @@ static void test_reflection_interfaces(void)
expected_hr
=
D3D_COMPILER_VERSION
<
46
?
E_NOINTERFACE
:
D3D_COMPILER_VERSION
==
46
?
E_INVALIDARG
:
S_OK
;
hr
=
call_reflect
(
test_reflection_blob
,
test_reflection_blob
[
6
],
&
IID_ID3D12ShaderReflection
,
(
void
**
)
&
ref12
);
/* Broken with older d3dcompiler_47. */
ok
(
hr
==
expected_hr
||
broken
(
expected_hr
==
S_OK
&&
hr
==
E_NOINTERFACE
),
"Got unexpected hr %#x.
\n
"
,
hr
);
/* Broken with older d3dcompiler_4
6, d3dcompiler_4
7. */
ok
(
hr
==
expected_hr
||
broken
(
hr
==
E_NOINTERFACE
),
"Got unexpected hr %#x.
\n
"
,
hr
);
if
(
hr
!=
S_OK
)
return
;
...
...
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