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
85f83800
Commit
85f83800
authored
May 30, 2013
by
Henri Verbeet
Committed by
Alexandre Julliard
May 30, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3drm: Avoid LPDIRECT3DRMANIMATION2.
parent
eff68af5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
9 deletions
+6
-9
d3drm.c
dlls/d3drm/d3drm.c
+2
-5
d3drm.h
include/d3drm.h
+1
-1
d3drmobj.h
include/d3drmobj.h
+3
-3
No files found.
dlls/d3drm/d3drm.c
View file @
85f83800
...
...
@@ -929,12 +929,9 @@ static HRESULT WINAPI IDirect3DRM3Impl_CreateFace(IDirect3DRM3 *iface, IDirect3D
return
Direct3DRMFace_create
(
&
IID_IDirect3DRMFace2
,
(
IUnknown
**
)
face
);
}
static
HRESULT
WINAPI
IDirect3DRM3Impl_CreateAnimation
(
IDirect3DRM3
*
iface
,
LPDIRECT3DRMANIMATION2
*
Animation
)
static
HRESULT
WINAPI
IDirect3DRM3Impl_CreateAnimation
(
IDirect3DRM3
*
iface
,
IDirect3DRMAnimation2
**
animation
)
{
IDirect3DRMImpl
*
This
=
impl_from_IDirect3DRM3
(
iface
);
FIXME
(
"(%p/%p)->(%p): stub
\n
"
,
iface
,
This
,
Animation
);
FIXME
(
"iface %p, animation %p stub!
\n
"
,
iface
,
animation
);
return
E_NOTIMPL
;
}
...
...
include/d3drm.h
View file @
85f83800
...
...
@@ -344,7 +344,7 @@ DECLARE_INTERFACE_(IDirect3DRM3,IUnknown)
STDMETHOD
(
CreateMesh
)(
THIS_
IDirect3DRMMesh
**
mesh
)
PURE
;
STDMETHOD
(
CreateMeshBuilder
)(
THIS_
IDirect3DRMMeshBuilder3
**
mesh_builder
)
PURE
;
STDMETHOD
(
CreateFace
)(
THIS_
IDirect3DRMFace2
**
face
)
PURE
;
STDMETHOD
(
CreateAnimation
)(
THIS_
LPDIRECT3DRMANIMATION2
*
)
PURE
;
STDMETHOD
(
CreateAnimation
)(
THIS_
IDirect3DRMAnimation2
**
animation
)
PURE
;
STDMETHOD
(
CreateAnimationSet
)(
THIS_
LPDIRECT3DRMANIMATIONSET2
*
)
PURE
;
STDMETHOD
(
CreateTexture
)(
THIS_
D3DRMIMAGE
*
image
,
IDirect3DRMTexture3
**
texture
)
PURE
;
STDMETHOD
(
CreateLight
)(
THIS_
D3DRMLIGHTTYPE
type
,
D3DCOLOR
color
,
IDirect3DRMLight
**
light
)
PURE
;
...
...
include/d3drmobj.h
View file @
85f83800
...
...
@@ -4031,10 +4031,10 @@ DECLARE_INTERFACE_(IDirect3DRMAnimationSet2, IDirect3DRMObject)
STDMETHOD
(
GetName
)(
THIS_
LPDWORD
lpdwSize
,
LPSTR
lpName
)
PURE
;
STDMETHOD
(
GetClassName
)(
THIS_
LPDWORD
lpdwSize
,
LPSTR
lpName
)
PURE
;
/*** IDirect3DRMAnimationSet2 methods ***/
STDMETHOD
(
AddAnimation
)(
THIS_
LPDIRECT3DRMANIMATION2
aid
)
PURE
;
STDMETHOD
(
AddAnimation
)(
THIS_
IDirect3DRMAnimation2
*
animation
)
PURE
;
STDMETHOD
(
Load
)(
THIS_
void
*
source
,
void
*
object_id
,
D3DRMLOADOPTIONS
flags
,
D3DRMLOADTEXTURE3CALLBACK
cb
,
void
*
ctx
,
IDirect3DRMFrame3
*
parent_frame
)
PURE
;
STDMETHOD
(
DeleteAnimation
)(
THIS_
LPDIRECT3DRMANIMATION2
aid
)
PURE
;
STDMETHOD
(
DeleteAnimation
)(
THIS_
IDirect3DRMAnimation2
*
animation
)
PURE
;
STDMETHOD
(
SetTime
)(
THIS_
D3DVALUE
time
)
PURE
;
STDMETHOD
(
GetAnimations
)(
THIS_
LPDIRECT3DRMANIMATIONARRAY
*
)
PURE
;
};
...
...
@@ -4369,7 +4369,7 @@ DECLARE_INTERFACE_(IDirect3DRMAnimationArray, IDirect3DRMArray)
/*** IDirect3DRMArray methods ***/
STDMETHOD_
(
DWORD
,
GetSize
)(
THIS
)
PURE
;
/*** IDirect3DRMAnimationArray methods ***/
STDMETHOD
(
GetElement
)(
THIS_
DWORD
index
,
LPDIRECT3DRMANIMATION2
*
)
PURE
;
STDMETHOD
(
GetElement
)(
THIS_
DWORD
index
,
IDirect3DRMAnimation2
**
element
)
PURE
;
};
#undef INTERFACE
...
...
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