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
ddd255cb
Commit
ddd255cb
authored
Oct 08, 2009
by
Paul Vriens
Committed by
Alexandre Julliard
Oct 08, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw/tests: Fix some test failures on WinME/VMware.
parent
87441ff8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
visual.c
dlls/ddraw/tests/visual.c
+3
-2
No files found.
dlls/ddraw/tests/visual.c
View file @
ddd255cb
...
...
@@ -2294,7 +2294,8 @@ static void p8_primary_test(void)
U1
(
ddsd
.
ddpfPixelFormat
).
dwRGBBitCount
=
8
;
hr
=
IDirectDraw_CreateSurface
(
DirectDraw1
,
&
ddsd
,
&
offscreen
,
NULL
);
ok
(
hr
==
DD_OK
||
broken
(
hr
==
DDERR_INVALIDPIXELFORMAT
),
/* VMware */
broken
(
hr
==
DDERR_INVALIDPIXELFORMAT
)
||
/* VMware */
broken
(
hr
==
DDERR_NODIRECTDRAWHW
),
/* VMware */
"IDirectDraw_CreateSurface returned %08x
\n
"
,
hr
);
if
(
FAILED
(
hr
))
goto
out
;
...
...
@@ -2614,7 +2615,7 @@ static void cubemap_test(IDirect3DDevice7 *device)
if
(
SUCCEEDED
(
hr
))
{
hr
=
IDirect3DDevice7_DrawPrimitive
(
device
,
D3DPT_TRIANGLESTRIP
,
D3DFVF_XYZ
|
D3DFVF_TEXCOORDSIZE3
(
0
)
|
D3DFVF_TEX1
,
quad
+
0
*
6
,
4
,
0
);
if
(
hr
==
E_NOTIMPL
)
if
(
hr
==
DDERR_UNSUPPORTED
||
hr
==
DDERR_NODIRECTDRAWHW
)
{
/* VMware */
win_skip
(
"IDirect3DDevice7_DrawPrimitive is not completely implemented, colors won't be tested
\n
"
);
...
...
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