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
05a5e606
Commit
05a5e606
authored
Jan 27, 2020
by
Henri Verbeet
Committed by
Alexandre Julliard
Jan 27, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d9/tests: Introduce adapter_is_amd().
Signed-off-by:
Henri Verbeet
<
hverbeet@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
54ef6e5e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
visual.c
dlls/d3d9/tests/visual.c
+11
-1
No files found.
dlls/d3d9/tests/visual.c
View file @
05a5e606
...
...
@@ -104,6 +104,16 @@ static BOOL adapter_is_warp(const D3DADAPTER_IDENTIFIER9 *identifier)
return
!
strcmp
(
identifier
->
Driver
,
"d3d10warp.dll"
);
}
static
BOOL
adapter_is_vendor
(
const
D3DADAPTER_IDENTIFIER9
*
identifier
,
DWORD
vendor
)
{
return
identifier
->
VendorId
==
vendor
;
}
static
BOOL
adapter_is_amd
(
const
D3DADAPTER_IDENTIFIER9
*
identifier
)
{
return
adapter_is_vendor
(
identifier
,
0x1002
);
}
/* Locks a given surface and returns the color at (x,y). It's the caller's
* responsibility to only pass in lockable surfaces and valid x,y coordinates */
static
DWORD
getPixelColorFromSurface
(
IDirect3DSurface9
*
surface
,
UINT
x
,
UINT
y
)
...
...
@@ -26592,7 +26602,7 @@ static void test_alpha_to_coverage(void)
nvidia_mode
=
FALSE
;
hr
=
IDirect3D9_GetAdapterIdentifier
(
d3d
,
D3DADAPTER_DEFAULT
,
0
,
&
identifier
);
ok
(
hr
==
D3D_OK
,
"Got unexpected hr %#x.
\n
"
,
hr
);
if
(
identifier
.
VendorId
!=
0x1002
/* AMD */
)
if
(
!
adapter_is_amd
(
&
identifier
)
)
{
skip
(
"Alpha to coverage is not supported.
\n
"
);
refcount
=
IDirect3DDevice9_Release
(
device
);
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