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
f018a861
Commit
f018a861
authored
Jan 13, 2012
by
André Hentschel
Committed by
Alexandre Julliard
Jan 13, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3drm: Add IDirect3DRMDevice2 interface.
parent
3931338e
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
4 deletions
+6
-4
Makefile.in
dlls/d3drm/Makefile.in
+1
-0
d3drm.c
dlls/d3drm/d3drm.c
+4
-4
d3drm_private.h
dlls/d3drm/d3drm_private.h
+1
-0
device.c
dlls/d3drm/device.c
+0
-0
No files found.
dlls/d3drm/Makefile.in
View file @
f018a861
...
...
@@ -5,6 +5,7 @@ IMPORTS = dxguid uuid d3dxof
C_SRCS
=
\
d3drm.c
\
d3drm_main.c
\
device.c
\
frame.c
\
math.c
\
meshbuilder.c
...
...
dlls/d3drm/d3drm.c
View file @
f018a861
...
...
@@ -240,9 +240,9 @@ static HRESULT WINAPI IDirect3DRMImpl_CreateDevice(IDirect3DRM* iface, DWORD wid
{
IDirect3DRMImpl
*
This
=
impl_from_IDirect3DRM
(
iface
);
FIXME
(
"(%p/%p)->(%
d,%d,%p):
stub
\n
"
,
iface
,
This
,
width
,
height
,
ppDevice
);
FIXME
(
"(%p/%p)->(%
u,%u,%p): partial
stub
\n
"
,
iface
,
This
,
width
,
height
,
ppDevice
);
return
E_NOTIMPL
;
return
Direct3DRMDevice_create
((
IUnknown
**
)
ppDevice
)
;
}
static
HRESULT
WINAPI
IDirect3DRMImpl_CreateDeviceFromSurface
(
IDirect3DRM
*
iface
,
LPGUID
pGUID
,
LPDIRECTDRAW
pDD
,
LPDIRECTDRAWSURFACE
pDDSBack
,
LPDIRECT3DRMDEVICE
*
ppDevice
)
...
...
@@ -616,9 +616,9 @@ static HRESULT WINAPI IDirect3DRM2Impl_CreateDevice(IDirect3DRM2* iface, DWORD w
{
IDirect3DRMImpl
*
This
=
impl_from_IDirect3DRM2
(
iface
);
FIXME
(
"(%p/%p)->(%
d,%d,%p):
stub
\n
"
,
iface
,
This
,
width
,
height
,
ppDevice
);
FIXME
(
"(%p/%p)->(%
u,%u,%p): partial
stub
\n
"
,
iface
,
This
,
width
,
height
,
ppDevice
);
return
E_NOTIMPL
;
return
Direct3DRMDevice_create
((
IUnknown
**
)
ppDevice
)
;
}
static
HRESULT
WINAPI
IDirect3DRM2Impl_CreateDeviceFromSurface
(
IDirect3DRM2
*
iface
,
LPGUID
pGUID
,
...
...
dlls/d3drm/d3drm_private.h
View file @
f018a861
...
...
@@ -24,6 +24,7 @@
#include "d3drm.h"
HRESULT
Direct3DRM_create
(
IUnknown
**
ppObj
)
DECLSPEC_HIDDEN
;
HRESULT
Direct3DRMDevice_create
(
IUnknown
**
ppObj
)
DECLSPEC_HIDDEN
;
HRESULT
Direct3DRMFrame_create
(
REFIID
riid
,
IUnknown
**
ppObj
)
DECLSPEC_HIDDEN
;
HRESULT
Direct3DRMMeshBuilder_create
(
REFIID
riid
,
IUnknown
**
ppObj
)
DECLSPEC_HIDDEN
;
...
...
dlls/d3drm/device.c
0 → 100644
View file @
f018a861
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