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
5974ad12
Commit
5974ad12
authored
Mar 13, 2009
by
Paul Vriens
Committed by
Alexandre Julliard
Mar 13, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw/tests: Fix a test failure on VMware and some native boxes.
parent
27f52727
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
visual.c
dlls/ddraw/tests/visual.c
+3
-1
No files found.
dlls/ddraw/tests/visual.c
View file @
5974ad12
...
...
@@ -1838,7 +1838,9 @@ static void D3D1_ViewportClearTest(void)
red
=
(
color
&
0x00ff0000
)
>>
16
;
green
=
(
color
&
0x0000ff00
)
>>
8
;
blue
=
(
color
&
0x000000ff
);
ok
(
red
==
0xff
&&
green
==
0
&&
blue
==
0
,
"Got color %08x, expected 00ff0000
\n
"
,
color
);
ok
((
red
==
0xff
&&
green
==
0
&&
blue
==
0
)
||
broken
(
red
==
0
&&
green
==
0
&&
blue
==
0xff
),
/* VMware and some native boxes */
"Got color %08x, expected 00ff0000
\n
"
,
color
);
color
=
D3D1_getPixelColor
(
DirectDraw1
,
Surface1
,
205
,
205
);
red
=
(
color
&
0x00ff0000
)
>>
16
;
...
...
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