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
78afa17f
Commit
78afa17f
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 LPDIRECT3DRMANIMATIONSET.
parent
c97c5112
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
11 deletions
+6
-11
d3drm.c
dlls/d3drm/d3drm.c
+4
-9
d3drm.h
include/d3drm.h
+2
-2
No files found.
dlls/d3drm/d3drm.c
View file @
78afa17f
...
@@ -175,11 +175,9 @@ static HRESULT WINAPI IDirect3DRMImpl_CreateAnimation(IDirect3DRM *iface, IDirec
...
@@ -175,11 +175,9 @@ static HRESULT WINAPI IDirect3DRMImpl_CreateAnimation(IDirect3DRM *iface, IDirec
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
static
HRESULT
WINAPI
IDirect3DRMImpl_CreateAnimationSet
(
IDirect3DRM
*
iface
,
LPDIRECT3DRMANIMATIONSET
*
ppAnimationS
et
)
static
HRESULT
WINAPI
IDirect3DRMImpl_CreateAnimationSet
(
IDirect3DRM
*
iface
,
IDirect3DRMAnimationSet
**
s
et
)
{
{
IDirect3DRMImpl
*
This
=
impl_from_IDirect3DRM
(
iface
);
FIXME
(
"iface %p, set %p stub!
\n
"
,
iface
,
set
);
FIXME
(
"(%p/%p)->(%p): stub
\n
"
,
iface
,
This
,
ppAnimationSet
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
@@ -549,12 +547,9 @@ static HRESULT WINAPI IDirect3DRM2Impl_CreateAnimation(IDirect3DRM2 *iface, IDir
...
@@ -549,12 +547,9 @@ static HRESULT WINAPI IDirect3DRM2Impl_CreateAnimation(IDirect3DRM2 *iface, IDir
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
static
HRESULT
WINAPI
IDirect3DRM2Impl_CreateAnimationSet
(
IDirect3DRM2
*
iface
,
static
HRESULT
WINAPI
IDirect3DRM2Impl_CreateAnimationSet
(
IDirect3DRM2
*
iface
,
IDirect3DRMAnimationSet
**
set
)
LPDIRECT3DRMANIMATIONSET
*
ppAnimationSet
)
{
{
IDirect3DRMImpl
*
This
=
impl_from_IDirect3DRM2
(
iface
);
FIXME
(
"iface %p, set %p stub!
\n
"
,
iface
,
set
);
FIXME
(
"(%p/%p)->(%p): stub
\n
"
,
iface
,
This
,
ppAnimationSet
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
...
include/d3drm.h
View file @
78afa17f
...
@@ -63,7 +63,7 @@ DECLARE_INTERFACE_(IDirect3DRM,IUnknown)
...
@@ -63,7 +63,7 @@ DECLARE_INTERFACE_(IDirect3DRM,IUnknown)
STDMETHOD
(
CreateMeshBuilder
)(
THIS_
IDirect3DRMMeshBuilder
**
mesh_builder
)
PURE
;
STDMETHOD
(
CreateMeshBuilder
)(
THIS_
IDirect3DRMMeshBuilder
**
mesh_builder
)
PURE
;
STDMETHOD
(
CreateFace
)(
THIS_
IDirect3DRMFace
**
face
)
PURE
;
STDMETHOD
(
CreateFace
)(
THIS_
IDirect3DRMFace
**
face
)
PURE
;
STDMETHOD
(
CreateAnimation
)(
THIS_
IDirect3DRMAnimation
**
animation
)
PURE
;
STDMETHOD
(
CreateAnimation
)(
THIS_
IDirect3DRMAnimation
**
animation
)
PURE
;
STDMETHOD
(
CreateAnimationSet
)(
THIS_
LPDIRECT3DRMANIMATIONSET
*
)
PURE
;
STDMETHOD
(
CreateAnimationSet
)(
THIS_
IDirect3DRMAnimationSet
**
set
)
PURE
;
STDMETHOD
(
CreateTexture
)(
THIS_
D3DRMIMAGE
*
image
,
IDirect3DRMTexture
**
texture
)
PURE
;
STDMETHOD
(
CreateTexture
)(
THIS_
D3DRMIMAGE
*
image
,
IDirect3DRMTexture
**
texture
)
PURE
;
STDMETHOD
(
CreateLight
)(
THIS_
D3DRMLIGHTTYPE
type
,
D3DCOLOR
color
,
IDirect3DRMLight
**
light
)
PURE
;
STDMETHOD
(
CreateLight
)(
THIS_
D3DRMLIGHTTYPE
type
,
D3DCOLOR
color
,
IDirect3DRMLight
**
light
)
PURE
;
STDMETHOD
(
CreateLightRGB
)(
THIS_
D3DRMLIGHTTYPE
type
,
D3DVALUE
r
,
D3DVALUE
g
,
D3DVALUE
b
,
STDMETHOD
(
CreateLightRGB
)(
THIS_
D3DRMLIGHTTYPE
type
,
D3DVALUE
r
,
D3DVALUE
g
,
D3DVALUE
b
,
...
@@ -202,7 +202,7 @@ DECLARE_INTERFACE_(IDirect3DRM2,IUnknown)
...
@@ -202,7 +202,7 @@ DECLARE_INTERFACE_(IDirect3DRM2,IUnknown)
STDMETHOD
(
CreateMeshBuilder
)(
THIS_
IDirect3DRMMeshBuilder2
**
mesh_builder
)
PURE
;
STDMETHOD
(
CreateMeshBuilder
)(
THIS_
IDirect3DRMMeshBuilder2
**
mesh_builder
)
PURE
;
STDMETHOD
(
CreateFace
)(
THIS_
IDirect3DRMFace
**
face
)
PURE
;
STDMETHOD
(
CreateFace
)(
THIS_
IDirect3DRMFace
**
face
)
PURE
;
STDMETHOD
(
CreateAnimation
)(
THIS_
IDirect3DRMAnimation
**
animation
)
PURE
;
STDMETHOD
(
CreateAnimation
)(
THIS_
IDirect3DRMAnimation
**
animation
)
PURE
;
STDMETHOD
(
CreateAnimationSet
)(
THIS_
LPDIRECT3DRMANIMATIONSET
*
)
PURE
;
STDMETHOD
(
CreateAnimationSet
)(
THIS_
IDirect3DRMAnimationSet
**
set
)
PURE
;
STDMETHOD
(
CreateTexture
)(
THIS_
D3DRMIMAGE
*
image
,
IDirect3DRMTexture2
**
texture
)
PURE
;
STDMETHOD
(
CreateTexture
)(
THIS_
D3DRMIMAGE
*
image
,
IDirect3DRMTexture2
**
texture
)
PURE
;
STDMETHOD
(
CreateLight
)(
THIS_
D3DRMLIGHTTYPE
type
,
D3DCOLOR
color
,
IDirect3DRMLight
**
light
)
PURE
;
STDMETHOD
(
CreateLight
)(
THIS_
D3DRMLIGHTTYPE
type
,
D3DCOLOR
color
,
IDirect3DRMLight
**
light
)
PURE
;
STDMETHOD
(
CreateLightRGB
)(
THIS_
D3DRMLIGHTTYPE
type
,
D3DVALUE
r
,
D3DVALUE
g
,
D3DVALUE
b
,
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