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
e1fefd57
Commit
e1fefd57
authored
Jan 11, 2009
by
David Adam
Committed by
Alexandre Julliard
Jan 12, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx9_36/test: Remove an unconsistent test.
parent
59158fb2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
10 deletions
+0
-10
math.c
dlls/d3dx9_36/math.c
+0
-5
math.c
dlls/d3dx9_36/tests/math.c
+0
-5
No files found.
dlls/d3dx9_36/math.c
View file @
e1fefd57
...
...
@@ -84,11 +84,6 @@ HRESULT WINAPI D3DXMatrixDecompose(D3DXVECTOR3 *poutscale, D3DXQUATERNION *poutr
D3DXMATRIX
normalized
;
D3DXVECTOR3
vec
;
if
(
!
pm
)
{
return
D3DERR_INVALIDCALL
;
}
/*Compute the scaling part.*/
vec
.
x
=
pm
->
u
.
m
[
0
][
0
];
vec
.
y
=
pm
->
u
.
m
[
0
][
1
];
...
...
dlls/d3dx9_36/tests/math.c
View file @
e1fefd57
...
...
@@ -578,11 +578,6 @@ static void test_Matrix_Decompose(void)
hr
=
D3DXMatrixDecompose
(
&
got_scale
,
&
got_rotation
,
&
got_translation
,
&
pm
);
ok
(
hr
==
D3DERR_INVALIDCALL
,
"Expected D3DERR_INVALIDCALL, got %x
\n
"
,
hr
);
/*___________*/
hr
=
D3DXMatrixDecompose
(
&
got_scale
,
&
got_rotation
,
&
got_translation
,
NULL
);
ok
(
hr
==
D3DERR_INVALIDCALL
,
"Expected D3DERR_INVALIDCALL, got %x
\n
"
,
hr
);
}
static
void
test_Matrix_Transformation2D
(
void
)
...
...
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