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
ae1802d0
Commit
ae1802d0
authored
Mar 11, 2009
by
Paul Vriens
Committed by
Alexandre Julliard
Mar 11, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw/tests: Fix some test failures on W2K/VMware.
parent
ffeb09d0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
visual.c
dlls/ddraw/tests/visual.c
+12
-1
No files found.
dlls/ddraw/tests/visual.c
View file @
ae1802d0
...
...
@@ -566,7 +566,12 @@ static void offscreen_test(IDirect3DDevice7 *device)
hr
=
IDirect3DDevice7_SetRenderState
(
device
,
D3DRENDERSTATE_LIGHTING
,
FALSE
);
ok
(
hr
==
D3D_OK
,
"IDirect3DDevice7_SetRenderState returned hr = %08x
\n
"
,
hr
);
if
(
IDirect3DDevice7_BeginScene
(
device
)
==
D3D_OK
&&
!
refdevice
)
{
if
(
refdevice
)
{
win_skip
(
"Tests would crash on W2K with a refdevice
\n
"
);
goto
out
;
}
if
(
IDirect3DDevice7_BeginScene
(
device
)
==
D3D_OK
)
{
hr
=
IDirect3DDevice7_SetRenderTarget
(
device
,
offscreen
,
0
);
ok
(
hr
==
D3D_OK
,
"SetRenderTarget failed, hr = %08x
\n
"
,
hr
);
hr
=
IDirect3DDevice7_Clear
(
device
,
0
,
NULL
,
D3DCLEAR_TARGET
,
0xffff00ff
,
0
.
0
,
0
);
...
...
@@ -687,6 +692,12 @@ static void alpha_test(IDirect3DDevice7 *device)
hr
=
IDirect3DDevice7_SetRenderState
(
device
,
D3DRENDERSTATE_ALPHABLENDENABLE
,
TRUE
);
ok
(
hr
==
D3D_OK
,
"IDirect3DDevice7_SetRenderState failed, hr = %08x
\n
"
,
hr
);
if
(
refdevice
)
{
win_skip
(
"Tests would crash on W2K with a refdevice
\n
"
);
goto
out
;
}
if
(
IDirect3DDevice7_BeginScene
(
device
)
==
D3D_OK
)
{
/* Draw two quads, one with src alpha blending, one with dest alpha blending. The
...
...
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