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
ba872994
Commit
ba872994
authored
Jul 11, 2009
by
Jörg Höhle
Committed by
Alexandre Julliard
Aug 14, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d9/tests: Detect empty graphics driver name.
parent
3e6eab3f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
visual.c
dlls/d3d9/tests/visual.c
+2
-0
No files found.
dlls/d3d9/tests/visual.c
View file @
ba872994
...
...
@@ -182,7 +182,9 @@ static IDirect3DDevice9 *init_d3d9(void)
ok
(
hr
==
D3D_OK
,
"Failed to get adapter identifier description
\n
"
);
trace
(
"Driver string:
\"
%s
\"\n
"
,
identifier
.
Driver
);
trace
(
"Description string:
\"
%s
\"\n
"
,
identifier
.
Description
);
ok
(
identifier
.
Description
[
0
]
!=
'\0'
,
"Empty driver description
\n
"
);
trace
(
"Device name string:
\"
%s
\"\n
"
,
identifier
.
DeviceName
);
ok
(
identifier
.
DeviceName
[
0
]
!=
'\0'
,
"Empty device name
\n
"
);
trace
(
"Driver version %d.%d.%d.%d
\n
"
,
HIWORD
(
U
(
identifier
.
DriverVersion
).
HighPart
),
LOWORD
(
U
(
identifier
.
DriverVersion
).
HighPart
),
HIWORD
(
U
(
identifier
.
DriverVersion
).
LowPart
),
LOWORD
(
U
(
identifier
.
DriverVersion
).
LowPart
));
...
...
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