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
4fe84150
Commit
4fe84150
authored
Feb 23, 2009
by
Henri Verbeet
Committed by
Alexandre Julliard
Feb 23, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx8: Don't use uninitialized memory in the D3DXQuaternionSlerp() test.
parent
0453b03e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
math.c
dlls/d3dx8/tests/math.c
+2
-2
No files found.
dlls/d3dx8/tests/math.c
View file @
4fe84150
...
...
@@ -594,7 +594,7 @@ static void D3X8QuaternionTest(void)
t
.
x
=
-
1111
.
0
f
,
t
.
y
=
111
.
0
f
;
t
.
z
=
-
11
.
0
f
;
t
.
w
=
1
.
0
f
;
u
.
x
=
91
.
0
f
;
u
.
y
=
-
82
.
0
f
;
u
.
z
=
7
.
3
f
;
u
.
w
=
-
6
.
4
f
;
smallq
.
x
=
0
.
1
f
;
smallq
.
y
=
0
.
2
f
;
smallq
.
z
=
0
.
3
f
;
smallq
.
w
=
0
.
4
f
;
smallr
.
x
=
0
.
5
f
;
smallr
.
y
=
0
.
6
f
;
smallr
.
z
=
0
.
7
f
;
small
q
.
w
=
0
.
8
f
;
smallr
.
x
=
0
.
5
f
;
smallr
.
y
=
0
.
6
f
;
smallr
.
z
=
0
.
7
f
;
small
r
.
w
=
0
.
8
f
;
scale
=
0
.
3
f
;
scale2
=
0
.
78
f
;
...
...
@@ -875,7 +875,7 @@ static void D3X8QuaternionTest(void)
expectedquat
.
x
=
334
.
0
f
;
expectedquat
.
y
=
-
31
.
9
f
;
expectedquat
.
z
=
6
.
1
f
;
expectedquat
.
w
=
6
.
7
f
;
D3DXQuaternionSlerp
(
&
gotquat
,
&
q
,
&
t
,
scale
);
expect_vec4
(
expectedquat
,
gotquat
);
expectedquat
.
x
=
0
.
2
67071
f
;
expectedquat
.
y
=
0
.
384114
f
;
expectedquat
.
z
=
0
.
501157
f
;
expectedquat
.
w
=
0
.
636291
f
;
expectedquat
.
x
=
0
.
2
39485
f
;
expectedquat
.
y
=
0
.
346580
f
;
expectedquat
.
z
=
0
.
453676
f
;
expectedquat
.
w
=
0
.
560772
f
;
D3DXQuaternionSlerp
(
&
gotquat
,
&
smallq
,
&
smallr
,
scale
);
expect_vec4
(
expectedquat
,
gotquat
);
...
...
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