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
5b6eada5
Commit
5b6eada5
authored
Jan 29, 2010
by
Christian Costa
Committed by
Alexandre Julliard
Jan 29, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3drm: Add stubbed implementation of IDirect3DRMMeshBuilder.
parent
137100f7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
3 deletions
+5
-3
Makefile.in
dlls/d3drm/Makefile.in
+2
-1
d3drm.c
dlls/d3drm/d3drm.c
+2
-2
d3drm_private.h
dlls/d3drm/d3drm_private.h
+1
-0
meshbuilder.c
dlls/d3drm/meshbuilder.c
+0
-0
No files found.
dlls/d3drm/Makefile.in
View file @
5b6eada5
...
...
@@ -9,7 +9,8 @@ IMPORTS = dxguid uuid kernel32
C_SRCS
=
\
d3drm.c
\
d3drm_main.c
\
math.c
math.c
\
meshbuilder.c
RC_SRCS
=
version.rc
...
...
dlls/d3drm/d3drm.c
View file @
5b6eada5
...
...
@@ -134,9 +134,9 @@ static HRESULT WINAPI IDirect3DRMImpl_CreateMeshBuilder(IDirect3DRM* iface, LPDI
{
IDirect3DRMImpl
*
This
=
(
IDirect3DRMImpl
*
)
iface
;
FIXME
(
"(%p/%p)->(%p): stub
\n
"
,
iface
,
This
,
ppMeshBuilder
);
TRACE
(
"(%p/%p)->(%p)
\n
"
,
iface
,
This
,
ppMeshBuilder
);
return
E_NOTIMPL
;
return
Direct3DRMMeshBuilder_create
(
ppMeshBuilder
)
;
}
static
HRESULT
WINAPI
IDirect3DRMImpl_CreateFace
(
IDirect3DRM
*
iface
,
LPDIRECT3DRMFACE
*
ppFace
)
...
...
dlls/d3drm/d3drm_private.h
View file @
5b6eada5
...
...
@@ -27,5 +27,6 @@
#include "d3drm.h"
HRESULT
Direct3DRM_create
(
LPDIRECT3DRM
*
ppDirect3DRM
);
HRESULT
Direct3DRMMeshBuilder_create
(
LPDIRECT3DRMMESHBUILDER
*
ppMeshBuilder
);
#endif
/* __D3DRM_PRIVATE_INCLUDED__ */
dlls/d3drm/meshbuilder.c
0 → 100644
View file @
5b6eada5
This diff is collapsed.
Click to expand it.
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