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
a6b40624
Commit
a6b40624
authored
Jun 29, 2011
by
Misha Koshelev
Committed by
Alexandre Julliard
Jul 01, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx9_36: Implement and add tests for D3DXFloat16To32Array.
parent
e35f1a4b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
93 additions
and
1 deletion
+93
-1
d3dx9_36.spec
dlls/d3dx9_36/d3dx9_36.spec
+1
-1
math.c
dlls/d3dx9_36/math.c
+32
-0
math.c
dlls/d3dx9_36/tests/math.c
+60
-0
No files found.
dlls/d3dx9_36/d3dx9_36.spec
View file @
a6b40624
...
@@ -130,7 +130,7 @@
...
@@ -130,7 +130,7 @@
@ stub D3DXFillVolumeTextureTX(ptr ptr)
@ stub D3DXFillVolumeTextureTX(ptr ptr)
@ stdcall D3DXFilterTexture(ptr ptr long long)
@ stdcall D3DXFilterTexture(ptr ptr long long)
@ stdcall D3DXFindShaderComment(ptr long ptr ptr)
@ stdcall D3DXFindShaderComment(ptr long ptr ptr)
@ st
ub
D3DXFloat16To32Array(ptr ptr long)
@ st
dcall
D3DXFloat16To32Array(ptr ptr long)
@ stub D3DXFloat32To16Array(ptr ptr long)
@ stub D3DXFloat32To16Array(ptr ptr long)
@ stub D3DXFrameAppendChild(ptr ptr)
@ stub D3DXFrameAppendChild(ptr ptr)
@ stub D3DXFrameCalculateBoundingSphere(ptr ptr ptr)
@ stub D3DXFrameCalculateBoundingSphere(ptr ptr ptr)
...
...
dlls/d3dx9_36/math.c
View file @
a6b40624
...
@@ -1769,3 +1769,35 @@ D3DXVECTOR4* WINAPI D3DXVec4TransformArray(D3DXVECTOR4* out, UINT outstride, CON
...
@@ -1769,3 +1769,35 @@ D3DXVECTOR4* WINAPI D3DXVec4TransformArray(D3DXVECTOR4* out, UINT outstride, CON
}
}
return
out
;
return
out
;
}
}
/* Native d3dx9's D3DXFloat16to32Array lacks support for NaN and Inf. Specifically, e = 16 is treated as a
* regular number - e.g., 0x7fff is converted to 131008.0 and 0xffff to -131008.0. */
static
inline
float
float_16_to_32
(
const
unsigned
short
in
)
{
const
unsigned
short
s
=
(
in
&
0x8000
);
const
unsigned
short
e
=
(
in
&
0x7C00
)
>>
10
;
const
unsigned
short
m
=
in
&
0x3FF
;
const
float
sgn
=
(
s
?
-
1
.
0
f
:
1
.
0
f
);
if
(
e
==
0
)
{
if
(
m
==
0
)
return
sgn
*
0
.
0
f
;
/* +0.0 or -0.0 */
else
return
sgn
*
powf
(
2
,
-
14
.
0
f
)
*
(
m
/
1024
.
0
f
);
}
else
{
return
sgn
*
powf
(
2
,
e
-
15
.
0
f
)
*
(
1
.
0
f
+
(
m
/
1024
.
0
f
));
}
}
FLOAT
*
WINAPI
D3DXFloat16To32Array
(
FLOAT
*
pout
,
CONST
D3DXFLOAT16
*
pin
,
UINT
n
)
{
unsigned
int
i
;
for
(
i
=
0
;
i
<
n
;
++
i
)
{
pout
[
i
]
=
float_16_to_32
(
pin
[
i
].
value
);
}
return
pout
;
}
dlls/d3dx9_36/tests/math.c
View file @
a6b40624
...
@@ -21,6 +21,7 @@
...
@@ -21,6 +21,7 @@
#include "wine/test.h"
#include "wine/test.h"
#include "d3dx9.h"
#include "d3dx9.h"
#include <math.h>
#define ARRAY_SIZE 5
#define ARRAY_SIZE 5
...
@@ -2215,6 +2216,64 @@ static void test_D3DXVec_Array(void)
...
@@ -2215,6 +2216,64 @@ static void test_D3DXVec_Array(void)
compare_planes
(
exp_plane
,
out_plane
);
compare_planes
(
exp_plane
,
out_plane
);
}
}
static
void
test_D3DXFloat_Array
(
void
)
{
unsigned
int
i
;
void
*
out
=
NULL
;
D3DXFLOAT16
half
;
FLOAT
single
;
struct
{
FLOAT
single_in
;
/* half_ver2 occurs on WXPPROSP3 (32 bit math), WVISTAADM (32 bit math), W7PRO (32 bit math) */
WORD
half_ver1
,
half_ver2
;
/* single_out_ver2 confirms that half -> single conversion is consistent across platforms */
FLOAT
single_out_ver1
,
single_out_ver2
;
}
testdata
[]
=
{
{
80000
.
0
f
,
0x7c00
,
0x7ce2
,
65536
.
0
f
,
80000
.
0
f
},
{
65503
.
0
f
,
0x7bff
,
0x7bff
,
65504
.
0
f
,
65504
.
0
f
},
{
65504
.
0
f
,
0x7bff
,
0x7bff
,
65504
.
0
f
,
65504
.
0
f
},
{
65520
.
0
f
,
0x7bff
,
0x7c00
,
65504
.
0
f
,
65536
.
0
f
},
{
65521
.
0
f
,
0x7c00
,
0x7c00
,
65536
.
0
f
,
65536
.
0
f
},
{
65534
.
0
f
,
0x7c00
,
0x7c00
,
65536
.
0
f
,
65536
.
0
f
},
{
65535
.
0
f
,
0x7c00
,
0x7c00
,
65535
.
0
f
,
65536
.
0
f
},
{
65536
.
0
f
,
0x7c00
,
0x7c00
,
65536
.
0
f
,
65536
.
0
f
},
{
-
80000
.
0
f
,
0xfc00
,
0xfce2
,
-
65536
.
0
f
,
-
80000
.
0
f
},
{
-
65503
.
0
f
,
0xfbff
,
0xfbff
,
-
65504
.
0
f
,
-
65504
.
0
f
},
{
-
65504
.
0
f
,
0xfbff
,
0xfbff
,
-
65504
.
0
f
,
-
65504
.
0
f
},
{
-
65520
.
0
f
,
0xfbff
,
0xfc00
,
-
65504
.
0
f
,
-
65536
.
0
f
},
{
-
65521
.
0
f
,
0xfc00
,
0xfc00
,
-
65536
.
0
f
,
-
65536
.
0
f
},
{
-
65534
.
0
f
,
0xfc00
,
0xfc00
,
-
65536
.
0
f
,
-
65536
.
0
f
},
{
-
65535
.
0
f
,
0xfc00
,
0xfc00
,
-
65535
.
0
f
,
-
65536
.
0
f
},
{
-
65536
.
0
f
,
0xfc00
,
0xfc00
,
-
65536
.
0
f
,
-
65536
.
0
f
},
{
INFINITY
,
0x7c00
,
0x7fff
,
65536
.
0
f
,
131008
.
0
f
},
{
-
INFINITY
,
0xffff
,
0xffff
,
-
131008
.
0
f
,
-
131008
.
0
f
},
{
NAN
,
0x7fff
,
0x7fff
,
131008
.
0
f
,
131008
.
0
f
},
{
-
NAN
,
0xffff
,
0xffff
,
-
131008
.
0
f
,
-
131008
.
0
f
},
{
0
.
0
f
,
0x0
,
0x0
,
0
.
0
f
,
0
.
0
f
},
{
-
0
.
0
f
,
0x8000
,
0x8000
,
0
.
0
f
,
0
.
0
f
},
};
/* exception on NULL out or in parameter */
out
=
D3DXFloat16To32Array
(
&
single
,
(
D3DXFLOAT16
*
)
&
half
,
0
);
ok
(
out
==
&
single
,
"Got %p, expected %p.
\n
"
,
out
,
&
single
);
for
(
i
=
0
;
i
<
sizeof
(
testdata
)
/
sizeof
(
testdata
[
0
]);
i
++
)
{
out
=
D3DXFloat16To32Array
(
&
single
,
(
D3DXFLOAT16
*
)
&
testdata
[
i
].
half_ver1
,
1
);
ok
(
out
==
&
single
,
"Got %p, expected %p.
\n
"
,
out
,
&
single
);
ok
(
relative_error
(
single
,
testdata
[
i
].
single_out_ver1
)
<
admitted_error
,
"Got %g, expected %g for index %d.
\n
"
,
single
,
testdata
[
i
].
single_out_ver1
,
i
);
out
=
D3DXFloat16To32Array
(
&
single
,
(
D3DXFLOAT16
*
)
&
testdata
[
i
].
half_ver2
,
1
);
ok
(
out
==
&
single
,
"Got %p, expected %p.
\n
"
,
out
,
&
single
);
ok
(
relative_error
(
single
,
testdata
[
i
].
single_out_ver2
)
<
admitted_error
,
"Got %g, expected %g for index %d.
\n
"
,
single
,
testdata
[
i
].
single_out_ver2
,
i
);
}
}
START_TEST
(
math
)
START_TEST
(
math
)
{
{
D3DXColorTest
();
D3DXColorTest
();
...
@@ -2230,4 +2289,5 @@ START_TEST(math)
...
@@ -2230,4 +2289,5 @@ START_TEST(math)
test_Matrix_Decompose
();
test_Matrix_Decompose
();
test_Matrix_Transformation2D
();
test_Matrix_Transformation2D
();
test_D3DXVec_Array
();
test_D3DXVec_Array
();
test_D3DXFloat_Array
();
}
}
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