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
ac5b9323
Commit
ac5b9323
authored
Jun 17, 2012
by
André Hentschel
Committed by
Alexandre Julliard
Jun 18, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3drm: Implement IDirect3DRMX_CreateMesh.
parent
f503afd8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
9 deletions
+8
-9
d3drm.c
dlls/d3drm/d3drm.c
+6
-6
d3drm_private.h
dlls/d3drm/d3drm_private.h
+1
-0
meshbuilder.c
dlls/d3drm/meshbuilder.c
+1
-3
No files found.
dlls/d3drm/d3drm.c
View file @
ac5b9323
...
...
@@ -150,9 +150,9 @@ static HRESULT WINAPI IDirect3DRMImpl_CreateMesh(IDirect3DRM* iface, LPDIRECT3DR
{
IDirect3DRMImpl
*
This
=
impl_from_IDirect3DRM
(
iface
);
FIXME
(
"(%p/%p)->(%p): stub
\n
"
,
iface
,
This
,
ppMesh
);
TRACE
(
"(%p/%p)->(%p)
\n
"
,
iface
,
This
,
ppMesh
);
return
E_NOTIMPL
;
return
IDirect3DRM3_CreateMesh
(
&
This
->
IDirect3DRM3_iface
,
ppMesh
)
;
}
static
HRESULT
WINAPI
IDirect3DRMImpl_CreateMeshBuilder
(
IDirect3DRM
*
iface
,
LPDIRECT3DRMMESHBUILDER
*
ppMeshBuilder
)
...
...
@@ -518,9 +518,9 @@ static HRESULT WINAPI IDirect3DRM2Impl_CreateMesh(IDirect3DRM2* iface, LPDIRECT3
{
IDirect3DRMImpl
*
This
=
impl_from_IDirect3DRM2
(
iface
);
FIXME
(
"(%p/%p)->(%p): stub
\n
"
,
iface
,
This
,
ppMesh
);
TRACE
(
"(%p/%p)->(%p)
\n
"
,
iface
,
This
,
ppMesh
);
return
E_NOTIMPL
;
return
IDirect3DRM3_CreateMesh
(
&
This
->
IDirect3DRM3_iface
,
ppMesh
)
;
}
static
HRESULT
WINAPI
IDirect3DRM2Impl_CreateMeshBuilder
(
IDirect3DRM2
*
iface
,
...
...
@@ -943,9 +943,9 @@ static HRESULT WINAPI IDirect3DRM3Impl_CreateMesh(IDirect3DRM3* iface, LPDIRECT3
{
IDirect3DRMImpl
*
This
=
impl_from_IDirect3DRM3
(
iface
);
FIXME
(
"(%p/%p)->(%p): stub
\n
"
,
iface
,
This
,
Mesh
);
TRACE
(
"(%p/%p)->(%p)
\n
"
,
iface
,
This
,
Mesh
);
return
E_NOTIMPL
;
return
Direct3DRMMesh_create
(
Mesh
)
;
}
static
HRESULT
WINAPI
IDirect3DRM3Impl_CreateMeshBuilder
(
IDirect3DRM3
*
iface
,
...
...
dlls/d3drm/d3drm_private.h
View file @
ac5b9323
...
...
@@ -30,6 +30,7 @@ HRESULT Direct3DRM_create(IUnknown** ppObj) DECLSPEC_HIDDEN;
HRESULT
Direct3DRMDevice_create
(
REFIID
riid
,
IUnknown
**
ppObj
)
DECLSPEC_HIDDEN
;
HRESULT
Direct3DRMFrame_create
(
REFIID
riid
,
IUnknown
*
parent_frame
,
IUnknown
**
ret_iface
)
DECLSPEC_HIDDEN
;
HRESULT
Direct3DRMLight_create
(
IUnknown
**
ppObj
)
DECLSPEC_HIDDEN
;
HRESULT
Direct3DRMMesh_create
(
IDirect3DRMMesh
**
obj
)
DECLSPEC_HIDDEN
;
HRESULT
Direct3DRMMeshBuilder_create
(
REFIID
riid
,
IUnknown
**
ppObj
)
DECLSPEC_HIDDEN
;
HRESULT
Direct3DRMViewport_create
(
REFIID
riid
,
IUnknown
**
ppObj
)
DECLSPEC_HIDDEN
;
HRESULT
Direct3DRMMaterial_create
(
IDirect3DRMMaterial2
**
ret_iface
)
DECLSPEC_HIDDEN
;
...
...
dlls/d3drm/meshbuilder.c
View file @
ac5b9323
...
...
@@ -34,8 +34,6 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
d3drm
);
static
HRESULT
Direct3DRMMesh_create
(
IDirect3DRMMesh
**
obj
);
typedef
struct
{
unsigned
nb_vertices
;
D3DRMVERTEX
*
vertices
;
...
...
@@ -2983,7 +2981,7 @@ static const struct IDirect3DRMMeshVtbl Direct3DRMMesh_Vtbl =
IDirect3DRMMeshImpl_GetGroupTexture
};
static
HRESULT
Direct3DRMMesh_create
(
IDirect3DRMMesh
**
obj
)
HRESULT
Direct3DRMMesh_create
(
IDirect3DRMMesh
**
obj
)
{
IDirect3DRMMeshImpl
*
object
;
...
...
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