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
4bbe41bb
Commit
4bbe41bb
authored
Nov 03, 2007
by
David Adam
Committed by
Alexandre Julliard
Nov 05, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx8: Implement D3DXMatrixPerspectiveOrthoLH.
parent
23d9da1e
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
1 deletion
+18
-1
d3dx8.spec
dlls/d3dx8/d3dx8.spec
+1
-1
math.c
dlls/d3dx8/math.c
+10
-0
math.c
dlls/d3dx8/tests/math.c
+6
-0
d3dx8math.h
include/d3dx8math.h
+1
-0
No files found.
dlls/d3dx8/d3dx8.spec
View file @
4bbe41bb
...
...
@@ -43,7 +43,7 @@
@ stdcall D3DXMatrixPerspectiveOffCenterRH(ptr long long long long long long)
@ stdcall D3DXMatrixPerspectiveOffCenterLH(ptr long long long long long long)
@ stdcall D3DXMatrixOrthoRH(ptr long long long long)
@ st
ub D3DXMatrixOrthoLH
@ st
dcall D3DXMatrixOrthoLH(ptr long long long long)
@ stub D3DXMatrixOrthoOffCenterRH
@ stub D3DXMatrixOrthoOffCenterLH
@ stub D3DXMatrixShadow
...
...
dlls/d3dx8/math.c
View file @
4bbe41bb
...
...
@@ -116,6 +116,16 @@ D3DXMATRIX* WINAPI D3DXMatrixMultiply(D3DXMATRIX *pout, CONST D3DXMATRIX *pm1, C
return
pout
;
}
D3DXMATRIX
*
WINAPI
D3DXMatrixOrthoLH
(
D3DXMATRIX
*
pout
,
FLOAT
w
,
FLOAT
h
,
FLOAT
zn
,
FLOAT
zf
)
{
D3DXMatrixIdentity
(
pout
);
pout
->
m
[
0
][
0
]
=
2
.
0
f
/
w
;
pout
->
m
[
1
][
1
]
=
2
.
0
f
/
h
;
pout
->
m
[
2
][
2
]
=
1
.
0
f
/
(
zf
-
zn
);
pout
->
m
[
3
][
2
]
=
zn
/
(
zn
-
zf
);
return
pout
;
}
D3DXMATRIX
*
WINAPI
D3DXMatrixOrthoRH
(
D3DXMATRIX
*
pout
,
FLOAT
w
,
FLOAT
h
,
FLOAT
zn
,
FLOAT
zf
)
{
D3DXMatrixIdentity
(
pout
);
...
...
dlls/d3dx8/tests/math.c
View file @
4bbe41bb
...
...
@@ -222,6 +222,12 @@ static void D3DXMatrixTest(void)
D3DXMatrixMultiply
(
&
gotmat
,
&
mat
,
&
mat2
);
expect_mat
(
expectedmat
,
gotmat
);
/*____________D3DXMatrixOrthoLH_______________*/
D3DXMatrixIdentity
(
&
expectedmat
);
expectedmat
.
m
[
0
][
0
]
=
0
.
8
f
;
expectedmat
.
m
[
1
][
1
]
=
0
.
270270
f
;
expectedmat
.
m
[
2
][
2
]
=
-
0
.
151515
f
;
expectedmat
.
m
[
3
][
2
]
=
-
0
.
484848
f
;
D3DXMatrixOrthoLH
(
&
gotmat
,
2
.
5
f
,
7
.
4
f
,
-
3
.
2
f
,
-
9
.
8
f
);
expect_mat
(
expectedmat
,
gotmat
);
/*____________D3DXMatrixOrthoRH_______________*/
D3DXMatrixIdentity
(
&
expectedmat
);
expectedmat
.
m
[
0
][
0
]
=
0
.
8
f
;
expectedmat
.
m
[
1
][
1
]
=
0
.
270270
f
;
expectedmat
.
m
[
2
][
2
]
=
0
.
151515
f
;
expectedmat
.
m
[
3
][
2
]
=
-
0
.
484848
f
;
...
...
include/d3dx8math.h
View file @
4bbe41bb
...
...
@@ -62,6 +62,7 @@ FLOAT WINAPI D3DXMatrixfDeterminant(CONST D3DXMATRIX *pm);
D3DXMATRIX
*
WINAPI
D3DXMatrixLookAtLH
(
D3DXMATRIX
*
pout
,
CONST
D3DXVECTOR3
*
peye
,
CONST
D3DXVECTOR3
*
pat
,
CONST
D3DXVECTOR3
*
pup
);
D3DXMATRIX
*
WINAPI
D3DXMatrixLookAtRH
(
D3DXMATRIX
*
pout
,
CONST
D3DXVECTOR3
*
peye
,
CONST
D3DXVECTOR3
*
pat
,
CONST
D3DXVECTOR3
*
pup
);
D3DXMATRIX
*
WINAPI
D3DXMatrixMultiply
(
D3DXMATRIX
*
pout
,
CONST
D3DXMATRIX
*
pm1
,
CONST
D3DXMATRIX
*
pm2
);
D3DXMATRIX
*
WINAPI
D3DXMatrixOrthoLH
(
D3DXMATRIX
*
pout
,
FLOAT
w
,
FLOAT
h
,
FLOAT
zn
,
FLOAT
zf
);
D3DXMATRIX
*
WINAPI
D3DXMatrixOrthoRH
(
D3DXMATRIX
*
pout
,
FLOAT
w
,
FLOAT
h
,
FLOAT
zn
,
FLOAT
zf
);
D3DXMATRIX
*
WINAPI
D3DXMatrixPerspectiveFovLH
(
D3DXMATRIX
*
pout
,
FLOAT
fovy
,
FLOAT
aspect
,
FLOAT
zn
,
FLOAT
zf
);
D3DXMATRIX
*
WINAPI
D3DXMatrixPerspectiveFovRH
(
D3DXMATRIX
*
pout
,
FLOAT
fovy
,
FLOAT
aspect
,
FLOAT
zn
,
FLOAT
zf
);
...
...
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