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
fbdb78c8
Commit
fbdb78c8
authored
Nov 04, 2008
by
Paul Vriens
Committed by
Alexandre Julliard
Nov 05, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw/tests: Fix a test on W2K3.
parent
503269a4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
overlay.c
dlls/ddraw/tests/overlay.c
+2
-1
No files found.
dlls/ddraw/tests/overlay.c
View file @
fbdb78c8
...
...
@@ -170,7 +170,8 @@ static void offscreen_test(void) {
ok
(
hr
==
DD_OK
,
"IDirectDraw7_CreateSurface failed with hr=0x%08x
\n
"
,
hr
);
hr
=
IDirectDrawSurface7_UpdateOverlay
(
overlay
,
NULL
,
offscreen
,
NULL
,
DDOVER_SHOW
,
NULL
);
ok
(
hr
==
DD_OK
,
"IDirectDrawSurface7_UpdateOverlay failed with hr=0x%08x
\n
"
,
hr
);
ok
(
hr
==
DD_OK
||
broken
(
hr
==
E_NOTIMPL
),
"IDirectDrawSurface7_UpdateOverlay failed with hr=0x%08x
\n
"
,
hr
);
/* Try to overlay the primary with a non-overlay surface */
hr
=
IDirectDrawSurface7_UpdateOverlay
(
offscreen
,
NULL
,
primary
,
NULL
,
DDOVER_SHOW
,
NULL
);
...
...
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