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
3b4b61f0
Commit
3b4b61f0
authored
Aug 21, 2013
by
Henri Verbeet
Committed by
Alexandre Julliard
Aug 21, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dx9: Avoid LPD3DXMATRIX.
parent
a2e1a3d4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
skin.c
dlls/d3dx9_36/skin.c
+1
-1
math.c
dlls/d3dx9_36/tests/math.c
+1
-1
d3dx9mesh.h
include/d3dx9mesh.h
+1
-1
No files found.
dlls/d3dx9_36/skin.c
View file @
3b4b61f0
...
...
@@ -285,7 +285,7 @@ static HRESULT WINAPI ID3DXSkinInfoImpl_SetBoneOffsetMatrix(ID3DXSkinInfo *iface
return
D3D_OK
;
}
static
LPD3DXMATRIX
WINAPI
ID3DXSkinInfoImpl_GetBoneOffsetMatrix
(
ID3DXSkinInfo
*
iface
,
DWORD
bone_num
)
static
D3DXMATRIX
*
WINAPI
ID3DXSkinInfoImpl_GetBoneOffsetMatrix
(
ID3DXSkinInfo
*
iface
,
DWORD
bone_num
)
{
ID3DXSkinInfoImpl
*
This
=
impl_from_ID3DXSkinInfo
(
iface
);
...
...
dlls/d3dx9_36/tests/math.c
View file @
3b4b61f0
...
...
@@ -234,7 +234,7 @@ static void D3DXFresnelTest(void)
static
void
D3DXMatrixTest
(
void
)
{
D3DXMATRIX
expectedmat
,
gotmat
,
mat
,
mat2
,
mat3
;
LPD3DXMATRIX
funcpointer
;
D3DXMATRIX
*
funcpointer
;
D3DXPLANE
plane
;
D3DXQUATERNION
q
,
r
;
D3DXVECTOR3
at
,
axis
,
eye
,
last
;
...
...
include/d3dx9mesh.h
View file @
3b4b61f0
...
...
@@ -529,7 +529,7 @@ DECLARE_INTERFACE_(ID3DXSkinInfo, IUnknown)
STDMETHOD
(
SetBoneName
)(
THIS_
DWORD
bone
,
LPCSTR
name
)
PURE
;
STDMETHOD_
(
LPCSTR
,
GetBoneName
)(
THIS_
DWORD
bone
)
PURE
;
STDMETHOD
(
SetBoneOffsetMatrix
)(
THIS_
DWORD
bone
,
CONST
D3DXMATRIX
*
bone_transform
)
PURE
;
STDMETHOD_
(
LPD3DXMATRIX
,
GetBoneOffsetMatrix
)(
THIS_
DWORD
bone
)
PURE
;
STDMETHOD_
(
D3DXMATRIX
*
,
GetBoneOffsetMatrix
)(
THIS_
DWORD
bone
)
PURE
;
STDMETHOD
(
Clone
)(
THIS_
ID3DXSkinInfo
**
skin_info
)
PURE
;
STDMETHOD
(
Remap
)(
THIS_
DWORD
num_vertices
,
DWORD
*
vertex_remap
)
PURE
;
STDMETHOD
(
SetFVF
)(
THIS_
DWORD
FVF
)
PURE
;
...
...
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