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
1e7c80ba
Commit
1e7c80ba
authored
Jan 14, 2011
by
Greg Geldorp
Committed by
Alexandre Julliard
Jan 14, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw/tests: Remove some outdated tests.
parent
4c6f8989
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
11 deletions
+3
-11
d3d.c
dlls/ddraw/tests/d3d.c
+3
-11
No files found.
dlls/ddraw/tests/d3d.c
View file @
1e7c80ba
...
...
@@ -766,16 +766,7 @@ static HRESULT WINAPI enumDevicesCallback(GUID *Guid,LPSTR DeviceDescription,LPS
}
else
if
(
IsEqualGUID
(
&
IID_IDirect3DHALDevice
,
Guid
))
{
/* pow2 is hardware dependent */
ok
(
hal
->
dpcLineCaps
.
dwTextureCaps
&
D3DPTEXTURECAPS_PERSPECTIVE
,
"HAL Device %d hal line caps does not have D3DPTEXTURECAPS_PERSPECTIVE set
\n
"
,
ver
);
ok
(
hal
->
dpcTriCaps
.
dwTextureCaps
&
D3DPTEXTURECAPS_PERSPECTIVE
,
"HAL Device %d hal tri caps does not have D3DPTEXTURECAPS_PERSPECTIVE set
\n
"
,
ver
);
ok
((
hel
->
dpcLineCaps
.
dwTextureCaps
&
D3DPTEXTURECAPS_PERSPECTIVE
)
==
0
,
"HAL Device %d hel line caps has D3DPTEXTURECAPS_PERSPECTIVE set
\n
"
,
ver
);
ok
((
hel
->
dpcTriCaps
.
dwTextureCaps
&
D3DPTEXTURECAPS_PERSPECTIVE
)
==
0
,
"HAL Device %d hel tri caps has D3DPTEXTURECAPS_PERSPECTIVE set
\n
"
,
ver
);
trace
(
"HAL Device %d
\n
"
,
ver
);
}
else
if
(
IsEqualGUID
(
&
IID_IDirect3DRefDevice
,
Guid
))
{
...
...
@@ -3622,7 +3613,8 @@ static void FindDevice(void)
/* Currently Wine only supports the creation of one Direct3D device
* for a given DirectDraw instance. */
todo_wine
ok
(
SUCCEEDED
(
hr
),
"Expected IDirectDrawSurface::QueryInterface to succeed, got 0x%08x
\n
"
,
hr
);
ok
(
SUCCEEDED
(
hr
)
||
broken
(
hr
==
DDERR_INVALIDPIXELFORMAT
)
/* XP/Win2003 Wow64 on VMware */
,
"Expected IDirectDrawSurface::QueryInterface to succeed, got 0x%08x
\n
"
,
hr
);
if
(
SUCCEEDED
(
hr
))
IDirect3DDevice_Release
(
d3dhal
);
...
...
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