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
83666361
Commit
83666361
authored
Mar 30, 2020
by
Henri Verbeet
Committed by
Alexandre Julliard
Mar 30, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3drm/tests: Introduce compare_uint().
Signed-off-by:
Henri Verbeet
<
hverbeet@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
1cb9a31b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
12 deletions
+15
-12
d3drm.c
dlls/d3drm/tests/d3drm.c
+15
-12
No files found.
dlls/d3drm/tests/d3drm.c
View file @
83666361
...
...
@@ -103,6 +103,21 @@ static void vector_eq_(unsigned int line, const D3DVECTOR *left, const D3DVECTOR
expect_vector_
(
line
,
left
,
U1
(
*
right
).
x
,
U2
(
*
right
).
y
,
U3
(
*
right
).
z
,
0
);
}
static
BOOL
compare_uint
(
unsigned
int
x
,
unsigned
int
y
,
unsigned
int
max_diff
)
{
unsigned
int
diff
=
x
>
y
?
x
-
y
:
y
-
x
;
return
diff
<=
max_diff
;
}
static
BOOL
compare_color
(
D3DCOLOR
c1
,
D3DCOLOR
c2
,
BYTE
max_diff
)
{
return
compare_uint
(
c1
&
0xff
,
c2
&
0xff
,
max_diff
)
&&
compare_uint
((
c1
>>
8
)
&
0xff
,
(
c2
>>
8
)
&
0xff
,
max_diff
)
&&
compare_uint
((
c1
>>
16
)
&
0xff
,
(
c2
>>
16
)
&
0xff
,
max_diff
)
&&
compare_uint
((
c1
>>
24
)
&
0xff
,
(
c2
>>
24
)
&
0xff
,
max_diff
);
}
static
D3DRMMATRIX4D
identity
=
{
{
1
.
0
f
,
0
.
0
f
,
0
.
0
f
,
0
.
0
f
},
{
0
.
0
f
,
1
.
0
f
,
0
.
0
f
,
0
.
0
f
},
...
...
@@ -6714,18 +6729,6 @@ static IDirect3DDevice2 *create_device2_without_ds(IDirectDraw2 *ddraw, HWND win
return
device
;
}
static
BOOL
compare_color
(
D3DCOLOR
c1
,
D3DCOLOR
c2
,
BYTE
max_diff
)
{
if
((
c1
&
0xff
)
-
(
c2
&
0xff
)
>
max_diff
)
return
FALSE
;
c1
>>=
8
;
c2
>>=
8
;
if
((
c1
&
0xff
)
-
(
c2
&
0xff
)
>
max_diff
)
return
FALSE
;
c1
>>=
8
;
c2
>>=
8
;
if
((
c1
&
0xff
)
-
(
c2
&
0xff
)
>
max_diff
)
return
FALSE
;
c1
>>=
8
;
c2
>>=
8
;
if
((
c1
&
0xff
)
-
(
c2
&
0xff
)
>
max_diff
)
return
FALSE
;
return
TRUE
;
}
static
void
clear_depth_surface
(
IDirectDrawSurface
*
surface
,
DWORD
value
)
{
HRESULT
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