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
8830dbcc
Commit
8830dbcc
authored
Jul 01, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Jul 02, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: Fix a failing test for broken drivers.
parent
448cfaeb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
d3d.c
dlls/ddraw/tests/d3d.c
+2
-1
No files found.
dlls/ddraw/tests/d3d.c
View file @
8830dbcc
...
...
@@ -327,7 +327,8 @@ static void LightTest(void)
light
.
dvAttenuation0
=
zero
/
zero
;
/* NaN */
rc
=
IDirect3DDevice7_SetLight
(
lpD3DDevice
,
103
,
&
light
);
ok
(
rc
==
D3D_OK
,
"SetLight returned: %x
\n
"
,
rc
);
ok
(
rc
==
D3D_OK
||
broken
(
rc
==
DDERR_INVALIDPARAMS
),
"SetLight returned: %x
\n
"
,
rc
);
/* Directional light ignores attenuation */
light
.
dltType
=
D3DLIGHT_DIRECTIONAL
;
...
...
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