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
46fca31c
Commit
46fca31c
authored
Oct 02, 2012
by
Nozomi Kodama
Committed by
Alexandre Julliard
Oct 03, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx9_36/tests: Remove useless casts.
parent
3d5c61cd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
math.c
dlls/d3dx9_36/tests/math.c
+4
-4
No files found.
dlls/d3dx9_36/tests/math.c
View file @
46fca31c
...
...
@@ -2645,7 +2645,7 @@ static void test_D3DXSHMultiply3(void)
{
unsigned
int
i
;
FLOAT
a
[
20
],
b
[
20
],
c
[
20
];
/* D3DXSHMultiply only modifies the first 9 elements of the array */
/* D3DXSHMultiply
3
only modifies the first 9 elements of the array */
const
FLOAT
expected
[
20
]
=
{
7
.
813913
f
,
2
.
256058
f
,
5
.
9484005
f
,
4
.
970894
f
,
2
.
899858
f
,
3
.
598946
f
,
1
.
726572
f
,
5
.
573538
f
,
0
.
622063
f
,
9
.
0
f
,
10
.
0
f
,
11
.
0
f
,
12
.
0
f
,
13
.
0
f
,
...
...
@@ -2653,9 +2653,9 @@ static void test_D3DXSHMultiply3(void)
for
(
i
=
0
;
i
<
20
;
i
++
)
{
a
[
i
]
=
1
.
0
f
+
(
FLOAT
)
i
/
100
.
0
f
;
b
[
i
]
=
3
.
0
f
-
(
FLOAT
)
i
/
100
.
0
f
;
c
[
i
]
=
(
FLOAT
)
i
;
a
[
i
]
=
1
.
0
f
+
i
/
100
.
0
f
;
b
[
i
]
=
3
.
0
f
-
i
/
100
.
0
f
;
c
[
i
]
=
i
;
}
D3DXSHMultiply3
(
c
,
a
,
b
);
...
...
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