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
8f0ac41d
Commit
8f0ac41d
authored
Dec 30, 2011
by
André Hentschel
Committed by
Alexandre Julliard
Jan 03, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3drm: Add IDirect3DRMFrame2 interface.
parent
cc50de11
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
4 deletions
+12
-4
Makefile.in
dlls/d3drm/Makefile.in
+1
-0
d3drm.c
dlls/d3drm/d3drm.c
+10
-4
d3drm_private.h
dlls/d3drm/d3drm_private.h
+1
-0
frame.c
dlls/d3drm/frame.c
+0
-0
No files found.
dlls/d3drm/Makefile.in
View file @
8f0ac41d
...
@@ -5,6 +5,7 @@ IMPORTS = dxguid uuid d3dxof
...
@@ -5,6 +5,7 @@ IMPORTS = dxguid uuid d3dxof
C_SRCS
=
\
C_SRCS
=
\
d3drm.c
\
d3drm.c
\
d3drm_main.c
\
d3drm_main.c
\
frame.c
\
math.c
\
math.c
\
meshbuilder.c
meshbuilder.c
...
...
dlls/d3drm/d3drm.c
View file @
8f0ac41d
...
@@ -147,9 +147,12 @@ static HRESULT WINAPI IDirect3DRMImpl_CreateFrame(IDirect3DRM* iface, LPDIRECT3D
...
@@ -147,9 +147,12 @@ static HRESULT WINAPI IDirect3DRMImpl_CreateFrame(IDirect3DRM* iface, LPDIRECT3D
{
{
IDirect3DRMImpl
*
This
=
impl_from_IDirect3DRM
(
iface
);
IDirect3DRMImpl
*
This
=
impl_from_IDirect3DRM
(
iface
);
FIXME
(
"(%p/%p)->(%p,%p): stub
\n
"
,
iface
,
This
,
pFrameParent
,
ppFrame
);
TRACE
(
"(%p/%p)->(%p,%p)
\n
"
,
iface
,
This
,
pFrameParent
,
ppFrame
);
return
E_NOTIMPL
;
if
(
pFrameParent
)
FIXME
(
"(%p/%p): Parent frame not yet supported
\n
"
,
iface
,
This
);
return
Direct3DRMFrame_create
((
IUnknown
**
)
ppFrame
);
}
}
static
HRESULT
WINAPI
IDirect3DRMImpl_CreateMesh
(
IDirect3DRM
*
iface
,
LPDIRECT3DRMMESH
*
ppMesh
)
static
HRESULT
WINAPI
IDirect3DRMImpl_CreateMesh
(
IDirect3DRM
*
iface
,
LPDIRECT3DRMMESH
*
ppMesh
)
...
@@ -511,9 +514,12 @@ static HRESULT WINAPI IDirect3DRM2Impl_CreateFrame(IDirect3DRM2* iface,
...
@@ -511,9 +514,12 @@ static HRESULT WINAPI IDirect3DRM2Impl_CreateFrame(IDirect3DRM2* iface,
{
{
IDirect3DRMImpl
*
This
=
impl_from_IDirect3DRM2
(
iface
);
IDirect3DRMImpl
*
This
=
impl_from_IDirect3DRM2
(
iface
);
FIXME
(
"(%p/%p)->(%p,%p): stub
\n
"
,
iface
,
This
,
pFrameParent
,
ppFrame
);
TRACE
(
"(%p/%p)->(%p,%p)
\n
"
,
iface
,
This
,
pFrameParent
,
ppFrame
);
return
E_NOTIMPL
;
if
(
pFrameParent
)
FIXME
(
"(%p/%p): Parent frame not yet supported
\n
"
,
iface
,
This
);
return
Direct3DRMFrame_create
((
IUnknown
**
)
ppFrame
);
}
}
static
HRESULT
WINAPI
IDirect3DRM2Impl_CreateMesh
(
IDirect3DRM2
*
iface
,
LPDIRECT3DRMMESH
*
ppMesh
)
static
HRESULT
WINAPI
IDirect3DRM2Impl_CreateMesh
(
IDirect3DRM2
*
iface
,
LPDIRECT3DRMMESH
*
ppMesh
)
...
...
dlls/d3drm/d3drm_private.h
View file @
8f0ac41d
...
@@ -27,6 +27,7 @@
...
@@ -27,6 +27,7 @@
#include "d3drm.h"
#include "d3drm.h"
HRESULT
Direct3DRM_create
(
IUnknown
**
ppObj
)
DECLSPEC_HIDDEN
;
HRESULT
Direct3DRM_create
(
IUnknown
**
ppObj
)
DECLSPEC_HIDDEN
;
HRESULT
Direct3DRMFrame_create
(
IUnknown
**
ppObj
)
DECLSPEC_HIDDEN
;
HRESULT
Direct3DRMMeshBuilder_create
(
REFIID
riid
,
IUnknown
**
ppObj
)
DECLSPEC_HIDDEN
;
HRESULT
Direct3DRMMeshBuilder_create
(
REFIID
riid
,
IUnknown
**
ppObj
)
DECLSPEC_HIDDEN
;
#endif
/* __D3DRM_PRIVATE_INCLUDED__ */
#endif
/* __D3DRM_PRIVATE_INCLUDED__ */
dlls/d3drm/frame.c
0 → 100644
View file @
8f0ac41d
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