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
8ddf8daa
Commit
8ddf8daa
authored
Jan 13, 2023
by
Francois Gouget
Committed by
Alexandre Julliard
Jan 18, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d12/tests: Allow a broken Windows 10 1709 hresult.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=54298
parent
8aeca16c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
d3d12.c
dlls/d3d12/tests/d3d12.c
+2
-1
No files found.
dlls/d3d12/tests/d3d12.c
View file @
8ddf8daa
...
...
@@ -1409,7 +1409,8 @@ static void test_desktop_window(void)
swapchain_desc
.
Width
=
rect
.
right
;
swapchain_desc
.
Height
=
rect
.
bottom
;
hr
=
IDXGIFactory4_CreateSwapChainForHwnd
(
factory
,
queue
,
window
,
&
swapchain_desc
,
NULL
,
NULL
,
&
swapchain
);
ok
(
hr
==
E_ACCESSDENIED
,
"Got unexpected hr %#lx.
\n
"
,
hr
);
ok
(
hr
==
E_ACCESSDENIED
||
broken
(
hr
==
E_OUTOFMEMORY
/* win10 1709 */
),
"Got unexpected hr %#lx.
\n
"
,
hr
);
IDXGIFactory4_Release
(
factory
);
destroy_test_context
(
&
context
);
...
...
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