Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
e27d3c0e
Commit
e27d3c0e
authored
13 years ago
by
André Zwing
Committed by
Alexandre Julliard
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
d3drm: Add more partial stubs for device creation.
parent
7a96cb4e
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/d3drm/d3drm.c
+16
-13
16 additions, 13 deletions
dlls/d3drm/d3drm.c
with
16 additions
and
13 deletions
dlls/d3drm/d3drm.c
+
16
−
13
View file @
e27d3c0e
...
...
@@ -249,27 +249,29 @@ static HRESULT WINAPI IDirect3DRMImpl_CreateDeviceFromSurface(IDirect3DRM* iface
{
IDirect3DRMImpl
*
This
=
impl_from_IDirect3DRM
(
iface
);
FIXME
(
"(%p/%p)->(%s,%p,%p,%p): stub
\n
"
,
iface
,
This
,
debugstr_guid
(
pGUID
),
pDD
,
pDDSBack
,
ppDevice
);
FIXME
(
"(%p/%p)->(%s,%p,%p,%p): partial stub
\n
"
,
iface
,
This
,
debugstr_guid
(
pGUID
),
pDD
,
pDDSBack
,
ppDevice
);
return
E_NOTIMPL
;
return
Direct3DRMDevice_create
((
IUnknown
**
)
ppDevice
)
;
}
static
HRESULT
WINAPI
IDirect3DRMImpl_CreateDeviceFromD3D
(
IDirect3DRM
*
iface
,
LPDIRECT3D
pD3D
,
LPDIRECT3DDEVICE
pD3DDev
,
LPDIRECT3DRMDEVICE
*
ppDevice
)
{
IDirect3DRMImpl
*
This
=
impl_from_IDirect3DRM
(
iface
);
FIXME
(
"(%p/%p)->(%p,%p,%p): stub
\n
"
,
iface
,
This
,
pD3D
,
pD3DDev
,
ppDevice
);
FIXME
(
"(%p/%p)->(%p,%p,%p):
partial
stub
\n
"
,
iface
,
This
,
pD3D
,
pD3DDev
,
ppDevice
);
return
E_NOTIMPL
;
return
Direct3DRMDevice_create
((
IUnknown
**
)
ppDevice
)
;
}
static
HRESULT
WINAPI
IDirect3DRMImpl_CreateDeviceFromClipper
(
IDirect3DRM
*
iface
,
LPDIRECTDRAWCLIPPER
pDDClipper
,
LPGUID
pGUID
,
int
width
,
int
height
,
LPDIRECT3DRMDEVICE
*
ppDevice
)
{
IDirect3DRMImpl
*
This
=
impl_from_IDirect3DRM
(
iface
);
FIXME
(
"(%p/%p)->(%p,%s,%d,%d,%p): stub
\n
"
,
iface
,
This
,
pDDClipper
,
debugstr_guid
(
pGUID
),
width
,
height
,
ppDevice
);
FIXME
(
"(%p/%p)->(%p,%s,%d,%d,%p): partial stub
\n
"
,
iface
,
This
,
pDDClipper
,
debugstr_guid
(
pGUID
),
width
,
height
,
ppDevice
);
return
E_NOTIMPL
;
return
Direct3DRMDevice_create
((
IUnknown
**
)
ppDevice
)
;
}
static
HRESULT
WINAPI
IDirect3DRMImpl_CreateTextureFromSurface
(
IDirect3DRM
*
iface
,
LPDIRECTDRAWSURFACE
pDDS
,
LPDIRECT3DRMTEXTURE
*
ppTexture
)
...
...
@@ -629,9 +631,10 @@ static HRESULT WINAPI IDirect3DRM2Impl_CreateDeviceFromSurface(IDirect3DRM2* ifa
{
IDirect3DRMImpl
*
This
=
impl_from_IDirect3DRM2
(
iface
);
FIXME
(
"(%p/%p)->(%s,%p,%p,%p): stub
\n
"
,
iface
,
This
,
debugstr_guid
(
pGUID
),
pDD
,
pDDSBack
,
ppDevice
);
FIXME
(
"(%p/%p)->(%s,%p,%p,%p): partial stub
\n
"
,
iface
,
This
,
debugstr_guid
(
pGUID
),
pDD
,
pDDSBack
,
ppDevice
);
return
E_NOTIMPL
;
return
Direct3DRMDevice_create
((
IUnknown
**
)
ppDevice
)
;
}
static
HRESULT
WINAPI
IDirect3DRM2Impl_CreateDeviceFromD3D
(
IDirect3DRM2
*
iface
,
LPDIRECT3D2
pD3D
,
...
...
@@ -640,9 +643,9 @@ static HRESULT WINAPI IDirect3DRM2Impl_CreateDeviceFromD3D(IDirect3DRM2* iface,
{
IDirect3DRMImpl
*
This
=
impl_from_IDirect3DRM2
(
iface
);
FIXME
(
"(%p/%p)->(%p,%p,%p): stub
\n
"
,
iface
,
This
,
pD3D
,
pD3DDev
,
ppDevice
);
FIXME
(
"(%p/%p)->(%p,%p,%p):
partial
stub
\n
"
,
iface
,
This
,
pD3D
,
pD3DDev
,
ppDevice
);
return
E_NOTIMPL
;
return
Direct3DRMDevice_create
((
IUnknown
**
)
ppDevice
)
;
}
static
HRESULT
WINAPI
IDirect3DRM2Impl_CreateDeviceFromClipper
(
IDirect3DRM2
*
iface
,
...
...
@@ -652,10 +655,10 @@ static HRESULT WINAPI IDirect3DRM2Impl_CreateDeviceFromClipper(IDirect3DRM2* ifa
{
IDirect3DRMImpl
*
This
=
impl_from_IDirect3DRM2
(
iface
);
FIXME
(
"(%p/%p)->(%p,%s,%d,%d,%p): stub
\n
"
,
iface
,
This
,
pDDClipper
,
debugstr_guid
(
pGUID
),
width
,
height
,
ppDevice
);
FIXME
(
"(%p/%p)->(%p,%s,%d,%d,%p):
partial
stub
\n
"
,
iface
,
This
,
pDDClipper
,
debugstr_guid
(
pGUID
),
width
,
height
,
ppDevice
);
return
E_NOTIMPL
;
return
Direct3DRMDevice_create
((
IUnknown
**
)
ppDevice
)
;
}
static
HRESULT
WINAPI
IDirect3DRM2Impl_CreateTextureFromSurface
(
IDirect3DRM2
*
iface
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment