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
b410bc3a
Commit
b410bc3a
authored
Aug 17, 2012
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Aug 17, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d9/tests: Simplify some logic operations.
parent
e81c055e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
query.c
dlls/d3d9/tests/query.c
+5
-5
No files found.
dlls/d3d9/tests/query.c
View file @
b410bc3a
...
...
@@ -108,21 +108,21 @@ static void test_query_support(IDirect3D9 *pD3d, HWND hwnd)
ok
(
hr
==
D3D_OK
||
hr
==
D3DERR_NOTAVAILABLE
,
"IDirect3DDevice9_CreateQuery returned unexpected return value %08x for query %s
\n
"
,
hr
,
queryName
(
queries
[
i
].
type
));
supported
=
(
hr
==
D3D_OK
?
TRUE
:
FALSE
)
;
supported
=
hr
==
D3D_OK
;
trace
(
"query %s is %s
\n
"
,
queryName
(
queries
[
i
].
type
),
supported
?
"supported"
:
"not supported"
);
ok
(
!
(
supported
==
TRUE
&&
queries
[
i
].
foundSupported
==
FALSE
)
,
ok
(
!
supported
||
queries
[
i
].
foundSupported
,
"Query %s is supported on this system, but was not found supported before
\n
"
,
queryName
(
queries
[
i
].
type
));
ok
(
!
(
supported
==
FALSE
&&
queries
[
i
].
foundUnsupported
==
FALSE
)
,
ok
(
supported
||
queries
[
i
].
foundUnsupported
,
"Query %s is not supported on this system, but was found to be supported on all other systems tested before
\n
"
,
queryName
(
queries
[
i
].
type
));
hr
=
IDirect3DDevice9_CreateQuery
(
pDevice
,
queries
[
i
].
type
,
&
pQuery
);
ok
(
hr
==
D3D_OK
||
hr
==
D3DERR_NOTAVAILABLE
,
"IDirect3DDevice9_CreateQuery returned unexpected return value %08x for query %s
\n
"
,
hr
,
queryName
(
queries
[
i
].
type
));
ok
(
!
(
supported
&&
!
pQuery
)
,
"Query %s was claimed to be supported, but can't be created
\n
"
,
queryName
(
queries
[
i
].
type
));
ok
(
!
(
!
supported
&&
pQuery
)
,
"Query %s was claimed not to be supported, but can be created
\n
"
,
queryName
(
queries
[
i
].
type
));
ok
(
!
supported
||
pQuery
,
"Query %s was claimed to be supported, but can't be created
\n
"
,
queryName
(
queries
[
i
].
type
));
ok
(
supported
||
!
pQuery
,
"Query %s was claimed not to be supported, but can be created
\n
"
,
queryName
(
queries
[
i
].
type
));
if
(
pQuery
)
{
IDirect3DQuery9_Release
(
pQuery
);
...
...
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