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
8ffca99f
Commit
8ffca99f
authored
Sep 16, 2009
by
Henri Verbeet
Committed by
Alexandre Julliard
Sep 16, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d9: Add a separate function for volume initialization.
parent
2b2d3de0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
9 deletions
+26
-9
d3d9_private.h
dlls/d3d9/d3d9_private.h
+3
-1
device.c
dlls/d3d9/device.c
+3
-7
volume.c
dlls/d3d9/volume.c
+20
-1
No files found.
dlls/d3d9/d3d9_private.h
View file @
8ffca99f
...
...
@@ -236,7 +236,6 @@ extern HRESULT WINAPI IDirect3DDevice9Impl_CreateQuery(LPDIRECT3DDEVICE9EX ifa
/*****************************************************************************
* IDirect3DVolume9 implementation structure
*/
extern
const
IDirect3DVolume9Vtbl
Direct3DVolume9_Vtbl
;
typedef
struct
IDirect3DVolume9Impl
{
/* IUnknown fields */
...
...
@@ -253,6 +252,9 @@ typedef struct IDirect3DVolume9Impl
IUnknown
*
forwardReference
;
}
IDirect3DVolume9Impl
;
HRESULT
volume_init
(
IDirect3DVolume9Impl
*
volume
,
IDirect3DDevice9Impl
*
device
,
UINT
width
,
UINT
height
,
UINT
depth
,
DWORD
usage
,
WINED3DFORMAT
format
,
WINED3DPOOL
pool
);
/* ------------------- */
/* IDirect3DSwapChain9 */
/* ------------------- */
...
...
dlls/d3d9/device.c
View file @
8ffca99f
...
...
@@ -2149,15 +2149,11 @@ static HRESULT STDMETHODCALLTYPE device_parent_CreateVolume(IWineD3DDeviceParent
return
D3DERR_OUTOFVIDEOMEMORY
;
}
object
->
lpVtbl
=
&
Direct3DVolume9_Vtbl
;
object
->
ref
=
1
;
hr
=
IWineD3DDevice_CreateVolume
(
This
->
WineD3DDevice
,
width
,
height
,
depth
,
usage
&
WINED3DUSAGE_MASK
,
format
,
pool
,
&
object
->
wineD3DVolume
,
(
IUnknown
*
)
object
);
hr
=
volume_init
(
object
,
This
,
width
,
height
,
depth
,
usage
,
format
,
pool
);
if
(
FAILED
(
hr
))
{
ERR
(
"(%p) CreateVolume failed, returning %#x
\n
"
,
iface
,
hr
);
WARN
(
"Failed to initialize volume, hr %#x.
\n
"
,
hr
);
HeapFree
(
GetProcessHeap
(),
0
,
object
);
*
volume
=
NULL
;
return
hr
;
}
...
...
@@ -2165,7 +2161,7 @@ static HRESULT STDMETHODCALLTYPE device_parent_CreateVolume(IWineD3DDeviceParent
object
->
container
=
superior
;
object
->
forwardReference
=
superior
;
TRACE
(
"(%p) Created volume %p
\n
"
,
iface
,
*
volume
);
TRACE
(
"(%p) Created volume %p
\n
"
,
iface
,
object
);
return
hr
;
}
...
...
dlls/d3d9/volume.c
View file @
8ffca99f
...
...
@@ -223,7 +223,7 @@ static HRESULT WINAPI IDirect3DVolume9Impl_UnlockBox(LPDIRECT3DVOLUME9 iface) {
return
hr
;
}
const
IDirect3DVolume9Vtbl
Direct3DVolume9_Vtbl
=
static
const
IDirect3DVolume9Vtbl
Direct3DVolume9_Vtbl
=
{
/* IUnknown */
IDirect3DVolume9Impl_QueryInterface
,
...
...
@@ -249,3 +249,22 @@ ULONG WINAPI D3D9CB_DestroyVolume(IWineD3DVolume *pVolume) {
volumeParent
->
forwardReference
=
NULL
;
return
IDirect3DVolume9_Release
((
IDirect3DVolume9
*
)
volumeParent
);
}
HRESULT
volume_init
(
IDirect3DVolume9Impl
*
volume
,
IDirect3DDevice9Impl
*
device
,
UINT
width
,
UINT
height
,
UINT
depth
,
DWORD
usage
,
WINED3DFORMAT
format
,
WINED3DPOOL
pool
)
{
HRESULT
hr
;
volume
->
lpVtbl
=
&
Direct3DVolume9_Vtbl
;
volume
->
ref
=
1
;
hr
=
IWineD3DDevice_CreateVolume
(
device
->
WineD3DDevice
,
width
,
height
,
depth
,
usage
&
WINED3DUSAGE_MASK
,
format
,
pool
,
&
volume
->
wineD3DVolume
,
(
IUnknown
*
)
volume
);
if
(
FAILED
(
hr
))
{
WARN
(
"Failed to create wined3d volume, hr %#x.
\n
"
,
hr
);
return
hr
;
}
return
D3D_OK
;
}
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