Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
007d50e9
Commit
007d50e9
authored
May 30, 2013
by
Henri Verbeet
Committed by
Alexandre Julliard
May 31, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3drm: Avoid LPDIRECT3DRMANIMATIONSET2.
parent
78afa17f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
6 deletions
+3
-6
d3drm.c
dlls/d3drm/d3drm.c
+2
-5
d3drm.h
include/d3drm.h
+1
-1
No files found.
dlls/d3drm/d3drm.c
View file @
007d50e9
...
...
@@ -931,12 +931,9 @@ static HRESULT WINAPI IDirect3DRM3Impl_CreateAnimation(IDirect3DRM3 *iface, IDir
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
IDirect3DRM3Impl_CreateAnimationSet
(
IDirect3DRM3
*
iface
,
LPDIRECT3DRMANIMATIONSET2
*
AnimationSet
)
static
HRESULT
WINAPI
IDirect3DRM3Impl_CreateAnimationSet
(
IDirect3DRM3
*
iface
,
IDirect3DRMAnimationSet2
**
set
)
{
IDirect3DRMImpl
*
This
=
impl_from_IDirect3DRM3
(
iface
);
FIXME
(
"(%p/%p)->(%p): stub
\n
"
,
iface
,
This
,
AnimationSet
);
FIXME
(
"iface %p, set %p stub!
\n
"
,
iface
,
set
);
return
E_NOTIMPL
;
}
...
...
include/d3drm.h
View file @
007d50e9
...
...
@@ -345,7 +345,7 @@ DECLARE_INTERFACE_(IDirect3DRM3,IUnknown)
STDMETHOD
(
CreateMeshBuilder
)(
THIS_
IDirect3DRMMeshBuilder3
**
mesh_builder
)
PURE
;
STDMETHOD
(
CreateFace
)(
THIS_
IDirect3DRMFace2
**
face
)
PURE
;
STDMETHOD
(
CreateAnimation
)(
THIS_
IDirect3DRMAnimation2
**
animation
)
PURE
;
STDMETHOD
(
CreateAnimationSet
)(
THIS_
LPDIRECT3DRMANIMATIONSET2
*
)
PURE
;
STDMETHOD
(
CreateAnimationSet
)(
THIS_
IDirect3DRMAnimationSet2
**
set
)
PURE
;
STDMETHOD
(
CreateTexture
)(
THIS_
D3DRMIMAGE
*
image
,
IDirect3DRMTexture3
**
texture
)
PURE
;
STDMETHOD
(
CreateLight
)(
THIS_
D3DRMLIGHTTYPE
type
,
D3DCOLOR
color
,
IDirect3DRMLight
**
light
)
PURE
;
STDMETHOD
(
CreateLightRGB
)(
THIS_
D3DRMLIGHTTYPE
type
,
D3DVALUE
r
,
D3DVALUE
g
,
D3DVALUE
b
,
...
...
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