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
f9347a8f
Commit
f9347a8f
authored
Feb 15, 2013
by
Nozomi Kodama
Committed by
Alexandre Julliard
Feb 20, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx9: Add a missing trace.
parent
bd592181
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
math.c
dlls/d3dx9_36/math.c
+3
-0
No files found.
dlls/d3dx9_36/math.c
View file @
f9347a8f
...
...
@@ -1743,6 +1743,9 @@ D3DXVECTOR2* WINAPI D3DXVec2TransformCoordArray(D3DXVECTOR2* out, UINT outstride
D3DXVECTOR2
*
WINAPI
D3DXVec2TransformNormal
(
D3DXVECTOR2
*
pout
,
const
D3DXVECTOR2
*
pv
,
const
D3DXMATRIX
*
pm
)
{
const
D3DXVECTOR2
v
=
*
pv
;
TRACE
(
"pout %p, pv %p, pm %p"
,
pout
,
pv
,
pm
);
pout
->
x
=
pm
->
u
.
m
[
0
][
0
]
*
v
.
x
+
pm
->
u
.
m
[
1
][
0
]
*
v
.
y
;
pout
->
y
=
pm
->
u
.
m
[
0
][
1
]
*
v
.
x
+
pm
->
u
.
m
[
1
][
1
]
*
v
.
y
;
return
pout
;
...
...
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