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
789fed50
Commit
789fed50
authored
Dec 09, 2009
by
Henri Verbeet
Committed by
Alexandre Julliard
Dec 09, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d8: Forward the volume's GetDevice() to the texture instead of the wined3d volume.
parent
d2ad2df6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
9 deletions
+14
-9
volume.c
dlls/d3d8/volume.c
+14
-9
No files found.
dlls/d3d8/volume.c
View file @
789fed50
...
@@ -94,19 +94,24 @@ static ULONG WINAPI IDirect3DVolume8Impl_Release(LPDIRECT3DVOLUME8 iface) {
...
@@ -94,19 +94,24 @@ static ULONG WINAPI IDirect3DVolume8Impl_Release(LPDIRECT3DVOLUME8 iface) {
}
}
/* IDirect3DVolume8 Interface follow: */
/* IDirect3DVolume8 Interface follow: */
static
HRESULT
WINAPI
IDirect3DVolume8Impl_GetDevice
(
LPDIRECT3DVOLUME8
iface
,
IDirect3DDevice8
**
ppDevice
)
{
static
HRESULT
WINAPI
IDirect3DVolume8Impl_GetDevice
(
IDirect3DVolume8
*
iface
,
IDirect3DDevice8
**
device
)
{
IDirect3DVolume8Impl
*
This
=
(
IDirect3DVolume8Impl
*
)
iface
;
IDirect3DVolume8Impl
*
This
=
(
IDirect3DVolume8Impl
*
)
iface
;
IWineD3DDevice
*
myDevice
=
NULL
;
IDirect3DResource8
*
resource
;
HRESULT
hr
;
TRACE
(
"iface %p, device %p.
\n
"
,
iface
,
ppD
evice
);
TRACE
(
"iface %p, device %p.
\n
"
,
iface
,
d
evice
);
wined3d_mutex_lock
(
);
hr
=
IUnknown_QueryInterface
(
This
->
forwardReference
,
&
IID_IDirect3DResource8
,
(
void
**
)
&
resource
);
IWineD3DVolume_GetDevice
(
This
->
wineD3DVolume
,
&
myDevice
);
if
(
SUCCEEDED
(
hr
))
IWineD3DDevice_GetParent
(
myDevice
,
(
IUnknown
**
)
ppDevice
);
{
IWineD3DDevice_Release
(
myD
evice
);
hr
=
IDirect3DResource8_GetDevice
(
resource
,
d
evice
);
wined3d_mutex_unlock
(
);
IDirect3DResource8_Release
(
resource
);
return
D3D_OK
;
TRACE
(
"Returning device %p.
\n
"
,
*
device
);
}
return
hr
;
}
}
static
HRESULT
WINAPI
IDirect3DVolume8Impl_SetPrivateData
(
LPDIRECT3DVOLUME8
iface
,
REFGUID
refguid
,
CONST
void
*
pData
,
DWORD
SizeOfData
,
DWORD
Flags
)
{
static
HRESULT
WINAPI
IDirect3DVolume8Impl_SetPrivateData
(
LPDIRECT3DVOLUME8
iface
,
REFGUID
refguid
,
CONST
void
*
pData
,
DWORD
SizeOfData
,
DWORD
Flags
)
{
...
...
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