Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
e855837a
Commit
e855837a
authored
Oct 23, 2015
by
Henri Verbeet
Committed by
Alexandre Julliard
Oct 23, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d9/tests: Introduce a helper function to test for WARP.
Signed-off-by:
Henri Verbeet
<
hverbeet@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a84658f9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
visual.c
dlls/d3d9/tests/visual.c
+8
-3
No files found.
dlls/d3d9/tests/visual.c
View file @
e855837a
...
...
@@ -75,6 +75,11 @@ static BOOL color_match(D3DCOLOR c1, D3DCOLOR c2, BYTE max_diff)
return
TRUE
;
}
static
BOOL
adapter_is_warp
(
const
D3DADAPTER_IDENTIFIER9
*
identifier
)
{
return
!
strcmp
(
identifier
->
Driver
,
"d3d10warp.dll"
);
}
/* 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
)
...
...
@@ -7207,7 +7212,7 @@ static void pretransformed_varying_test(void)
hr
=
IDirect3D9_GetAdapterIdentifier
(
d3d
,
D3DADAPTER_DEFAULT
,
0
,
&
identifier
);
ok
(
SUCCEEDED
(
hr
),
"Failed to get adapter identifier, hr %#x.
\n
"
,
hr
);
warp
=
!
strcmp
(
identifier
.
Description
,
"Microsoft Basic Render Driver"
);
warp
=
adapter_is_warp
(
&
identifier
);
hr
=
IDirect3DDevice9_CreateVertexDeclaration
(
device
,
decl_elements
,
&
decl
);
ok
(
hr
==
D3D_OK
,
"IDirect3DDevice9_CreateVertexDeclaration returned %08x
\n
"
,
hr
);
...
...
@@ -7718,7 +7723,7 @@ static void test_vshader_input(void)
hr
=
IDirect3D9_GetAdapterIdentifier
(
d3d
,
D3DADAPTER_DEFAULT
,
0
,
&
identifier
);
ok
(
SUCCEEDED
(
hr
),
"Failed to get adapter identifier, hr %#x.
\n
"
,
hr
);
warp
=
!
strcmp
(
identifier
.
Description
,
"Microsoft Basic Render Driver"
);
warp
=
adapter_is_warp
(
&
identifier
);
hr
=
IDirect3DDevice9_CreateVertexDeclaration
(
device
,
decl_elements_twotexcrd
,
&
decl_twotexcrd
);
ok
(
hr
==
D3D_OK
,
"IDirect3DDevice9_CreateVertexDeclaration returned %08x
\n
"
,
hr
);
...
...
@@ -20176,7 +20181,7 @@ static void test_uninitialized_varyings(void)
hr
=
IDirect3D9_GetAdapterIdentifier
(
d3d
,
D3DADAPTER_DEFAULT
,
0
,
&
identifier
);
ok
(
SUCCEEDED
(
hr
),
"Failed to get adapter identifier, hr %#x.
\n
"
,
hr
);
warp
=
!
strcmp
(
identifier
.
Description
,
"Microsoft Basic Render Driver"
);
warp
=
adapter_is_warp
(
&
identifier
);
hr
=
IDirect3DDevice9_GetDeviceCaps
(
device
,
&
caps
);
ok
(
SUCCEEDED
(
hr
),
"Failed to get caps, hr %#x.
\n
"
,
hr
);
...
...
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