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
4e31d28c
Commit
4e31d28c
authored
Jul 07, 2011
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jul 07, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3d9: COM cleanup for the IDirect3DSurface9 iface.
parent
a7530e78
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
48 additions
and
34 deletions
+48
-34
d3d9_private.h
dlls/d3d9/d3d9_private.h
+2
-3
device.c
dlls/d3d9/device.c
+4
-4
surface.c
dlls/d3d9/surface.c
+42
-27
No files found.
dlls/d3d9/d3d9_private.h
View file @
4e31d28c
...
...
@@ -223,9 +223,8 @@ HRESULT swapchain_init(IDirect3DSwapChain9Impl *swapchain, IDirect3DDevice9Impl
*/
typedef
struct
IDirect3DSurface9Impl
{
/* IUnknown fields */
const
IDirect3DSurface9Vtbl
*
lpVtbl
;
LONG
ref
;
IDirect3DSurface9
IDirect3DSurface9_iface
;
LONG
ref
;
struct
wined3d_surface
*
wined3d_surface
;
IDirect3DDevice9Ex
*
parentDevice
;
...
...
dlls/d3d9/device.c
View file @
4e31d28c
...
...
@@ -920,7 +920,7 @@ static HRESULT IDirect3DDevice9Impl_CreateSurface(IDirect3DDevice9Impl *device,
}
TRACE
(
"Created surface %p.
\n
"
,
object
);
*
ppSurface
=
(
IDirect3DSurface9
*
)
object
;
*
ppSurface
=
&
object
->
IDirect3DSurface9_iface
;
return
D3D_OK
;
}
...
...
@@ -3142,7 +3142,7 @@ static HRESULT CDECL device_parent_create_surface(struct wined3d_device_parent *
IDirect3DDevice9Ex_Release
(
d3d_surface
->
parentDevice
);
d3d_surface
->
parentDevice
=
NULL
;
IDirect3DSurface9_Release
(
(
IDirect3DSurface9
*
)
d3d_sur
face
);
IDirect3DSurface9_Release
(
&
d3d_surface
->
IDirect3DSurface9_i
face
);
d3d_surface
->
forwardReference
=
container_parent
;
return
hr
;
...
...
@@ -3176,7 +3176,7 @@ static HRESULT CDECL device_parent_create_rendertarget(struct wined3d_device_par
d3d_surface
->
container
=
container_parent
;
/* Implicit surfaces are created with an refcount of 0 */
IDirect3DSurface9_Release
(
(
IDirect3DSurface9
*
)
d3d_sur
face
);
IDirect3DSurface9_Release
(
&
d3d_surface
->
IDirect3DSurface9_i
face
);
return
hr
;
}
...
...
@@ -3206,7 +3206,7 @@ static HRESULT CDECL device_parent_create_depth_stencil(struct wined3d_device_pa
wined3d_surface_incref
(
*
surface
);
d3d_surface
->
container
=
(
IUnknown
*
)
&
device
->
IDirect3DDevice9Ex_iface
;
/* Implicit surfaces are created with an refcount of 0 */
IDirect3DSurface9_Release
(
(
IDirect3DSurface9
*
)
d3d_sur
face
);
IDirect3DSurface9_Release
(
&
d3d_surface
->
IDirect3DSurface9_i
face
);
return
hr
;
}
...
...
dlls/d3d9/surface.c
View file @
4e31d28c
...
...
@@ -27,12 +27,14 @@ WINE_DEFAULT_DEBUG_CHANNEL(d3d9);
static
inline
IDirect3DSurface9Impl
*
impl_from_IDirect3DSurface9
(
IDirect3DSurface9
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
IDirect3DSurface9Impl
,
lpVtbl
);
return
CONTAINING_RECORD
(
iface
,
IDirect3DSurface9Impl
,
IDirect3DSurface9_iface
);
}
/* IDirect3DSurface9 IUnknown parts follow: */
static
HRESULT
WINAPI
IDirect3DSurface9Impl_QueryInterface
(
LPDIRECT3DSURFACE9
iface
,
REFIID
riid
,
LPVOID
*
ppobj
)
{
IDirect3DSurface9Impl
*
This
=
(
IDirect3DSurface9Impl
*
)
iface
;
static
HRESULT
WINAPI
IDirect3DSurface9Impl_QueryInterface
(
IDirect3DSurface9
*
iface
,
REFIID
riid
,
void
**
ppobj
)
{
IDirect3DSurface9Impl
*
This
=
impl_from_IDirect3DSurface9
(
iface
);
TRACE
(
"iface %p, riid %s, object %p.
\n
"
,
iface
,
debugstr_guid
(
riid
),
ppobj
);
...
...
@@ -49,8 +51,9 @@ static HRESULT WINAPI IDirect3DSurface9Impl_QueryInterface(LPDIRECT3DSURFACE9 if
return
E_NOINTERFACE
;
}
static
ULONG
WINAPI
IDirect3DSurface9Impl_AddRef
(
LPDIRECT3DSURFACE9
iface
)
{
IDirect3DSurface9Impl
*
This
=
(
IDirect3DSurface9Impl
*
)
iface
;
static
ULONG
WINAPI
IDirect3DSurface9Impl_AddRef
(
IDirect3DSurface9
*
iface
)
{
IDirect3DSurface9Impl
*
This
=
impl_from_IDirect3DSurface9
(
iface
);
TRACE
(
"iface %p.
\n
"
,
iface
);
...
...
@@ -77,8 +80,9 @@ static ULONG WINAPI IDirect3DSurface9Impl_AddRef(LPDIRECT3DSURFACE9 iface) {
}
static
ULONG
WINAPI
IDirect3DSurface9Impl_Release
(
LPDIRECT3DSURFACE9
iface
)
{
IDirect3DSurface9Impl
*
This
=
(
IDirect3DSurface9Impl
*
)
iface
;
static
ULONG
WINAPI
IDirect3DSurface9Impl_Release
(
IDirect3DSurface9
*
iface
)
{
IDirect3DSurface9Impl
*
This
=
impl_from_IDirect3DSurface9
(
iface
);
TRACE
(
"iface %p.
\n
"
,
iface
);
...
...
@@ -108,9 +112,10 @@ static ULONG WINAPI IDirect3DSurface9Impl_Release(LPDIRECT3DSURFACE9 iface) {
}
/* IDirect3DSurface9 IDirect3DResource9 Interface follow: */
static
HRESULT
WINAPI
IDirect3DSurface9Impl_GetDevice
(
IDirect3DSurface9
*
iface
,
IDirect3DDevice9
**
device
)
static
HRESULT
WINAPI
IDirect3DSurface9Impl_GetDevice
(
IDirect3DSurface9
*
iface
,
IDirect3DDevice9
**
device
)
{
IDirect3DSurface9Impl
*
This
=
(
IDirect3DSurface9Impl
*
)
iface
;
IDirect3DSurface9Impl
*
This
=
impl_from_IDirect3DSurface9
(
iface
)
;
TRACE
(
"iface %p, device %p.
\n
"
,
iface
,
device
);
...
...
@@ -191,8 +196,9 @@ static HRESULT WINAPI IDirect3DSurface9Impl_FreePrivateData(IDirect3DSurface9 *i
return
hr
;
}
static
DWORD
WINAPI
IDirect3DSurface9Impl_SetPriority
(
LPDIRECT3DSURFACE9
iface
,
DWORD
PriorityNew
)
{
IDirect3DSurface9Impl
*
This
=
(
IDirect3DSurface9Impl
*
)
iface
;
static
DWORD
WINAPI
IDirect3DSurface9Impl_SetPriority
(
IDirect3DSurface9
*
iface
,
DWORD
PriorityNew
)
{
IDirect3DSurface9Impl
*
This
=
impl_from_IDirect3DSurface9
(
iface
);
HRESULT
hr
;
TRACE
(
"iface %p, priority %u.
\n
"
,
iface
,
PriorityNew
);
...
...
@@ -204,8 +210,9 @@ static DWORD WINAPI IDirect3DSurface9Impl_SetPriority(LPDIRECT3DSURFACE9 iface,
return
hr
;
}
static
DWORD
WINAPI
IDirect3DSurface9Impl_GetPriority
(
LPDIRECT3DSURFACE9
iface
)
{
IDirect3DSurface9Impl
*
This
=
(
IDirect3DSurface9Impl
*
)
iface
;
static
DWORD
WINAPI
IDirect3DSurface9Impl_GetPriority
(
IDirect3DSurface9
*
iface
)
{
IDirect3DSurface9Impl
*
This
=
impl_from_IDirect3DSurface9
(
iface
);
HRESULT
hr
;
TRACE
(
"iface %p.
\n
"
,
iface
);
...
...
@@ -217,8 +224,9 @@ static DWORD WINAPI IDirect3DSurface9Impl_GetPriority(LPDIRECT3DSURFACE9 iface)
return
hr
;
}
static
void
WINAPI
IDirect3DSurface9Impl_PreLoad
(
LPDIRECT3DSURFACE9
iface
)
{
IDirect3DSurface9Impl
*
This
=
(
IDirect3DSurface9Impl
*
)
iface
;
static
void
WINAPI
IDirect3DSurface9Impl_PreLoad
(
IDirect3DSurface9
*
iface
)
{
IDirect3DSurface9Impl
*
This
=
impl_from_IDirect3DSurface9
(
iface
);
TRACE
(
"iface %p.
\n
"
,
iface
);
...
...
@@ -235,8 +243,10 @@ static D3DRESOURCETYPE WINAPI IDirect3DSurface9Impl_GetType(IDirect3DSurface9 *i
}
/* IDirect3DSurface9 Interface follow: */
static
HRESULT
WINAPI
IDirect3DSurface9Impl_GetContainer
(
LPDIRECT3DSURFACE9
iface
,
REFIID
riid
,
void
**
ppContainer
)
{
IDirect3DSurface9Impl
*
This
=
(
IDirect3DSurface9Impl
*
)
iface
;
static
HRESULT
WINAPI
IDirect3DSurface9Impl_GetContainer
(
IDirect3DSurface9
*
iface
,
REFIID
riid
,
void
**
ppContainer
)
{
IDirect3DSurface9Impl
*
This
=
impl_from_IDirect3DSurface9
(
iface
);
HRESULT
res
;
TRACE
(
"iface %p, riid %s, container %p.
\n
"
,
iface
,
debugstr_guid
(
riid
),
ppContainer
);
...
...
@@ -252,7 +262,7 @@ static HRESULT WINAPI IDirect3DSurface9Impl_GetContainer(LPDIRECT3DSURFACE9 ifac
static
HRESULT
WINAPI
IDirect3DSurface9Impl_GetDesc
(
IDirect3DSurface9
*
iface
,
D3DSURFACE_DESC
*
desc
)
{
IDirect3DSurface9Impl
*
This
=
(
IDirect3DSurface9Impl
*
)
iface
;
IDirect3DSurface9Impl
*
This
=
impl_from_IDirect3DSurface9
(
iface
)
;
struct
wined3d_resource_desc
wined3d_desc
;
struct
wined3d_resource
*
wined3d_resource
;
...
...
@@ -275,8 +285,10 @@ static HRESULT WINAPI IDirect3DSurface9Impl_GetDesc(IDirect3DSurface9 *iface, D3
return
D3D_OK
;
}
static
HRESULT
WINAPI
IDirect3DSurface9Impl_LockRect
(
LPDIRECT3DSURFACE9
iface
,
D3DLOCKED_RECT
*
pLockedRect
,
CONST
RECT
*
pRect
,
DWORD
Flags
)
{
IDirect3DSurface9Impl
*
This
=
(
IDirect3DSurface9Impl
*
)
iface
;
static
HRESULT
WINAPI
IDirect3DSurface9Impl_LockRect
(
IDirect3DSurface9
*
iface
,
D3DLOCKED_RECT
*
pLockedRect
,
const
RECT
*
pRect
,
DWORD
Flags
)
{
IDirect3DSurface9Impl
*
This
=
impl_from_IDirect3DSurface9
(
iface
);
HRESULT
hr
;
TRACE
(
"iface %p, locked_rect %p, rect %p, flags %#x.
\n
"
,
iface
,
pLockedRect
,
pRect
,
Flags
);
...
...
@@ -288,8 +300,9 @@ static HRESULT WINAPI IDirect3DSurface9Impl_LockRect(LPDIRECT3DSURFACE9 iface, D
return
hr
;
}
static
HRESULT
WINAPI
IDirect3DSurface9Impl_UnlockRect
(
LPDIRECT3DSURFACE9
iface
)
{
IDirect3DSurface9Impl
*
This
=
(
IDirect3DSurface9Impl
*
)
iface
;
static
HRESULT
WINAPI
IDirect3DSurface9Impl_UnlockRect
(
IDirect3DSurface9
*
iface
)
{
IDirect3DSurface9Impl
*
This
=
impl_from_IDirect3DSurface9
(
iface
);
HRESULT
hr
;
TRACE
(
"iface %p.
\n
"
,
iface
);
...
...
@@ -305,8 +318,9 @@ static HRESULT WINAPI IDirect3DSurface9Impl_UnlockRect(LPDIRECT3DSURFACE9 iface)
}
}
static
HRESULT
WINAPI
IDirect3DSurface9Impl_GetDC
(
LPDIRECT3DSURFACE9
iface
,
HDC
*
phdc
)
{
IDirect3DSurface9Impl
*
This
=
(
IDirect3DSurface9Impl
*
)
iface
;
static
HRESULT
WINAPI
IDirect3DSurface9Impl_GetDC
(
IDirect3DSurface9
*
iface
,
HDC
*
phdc
)
{
IDirect3DSurface9Impl
*
This
=
impl_from_IDirect3DSurface9
(
iface
);
HRESULT
hr
;
TRACE
(
"iface %p, hdc %p.
\n
"
,
iface
,
phdc
);
...
...
@@ -325,8 +339,9 @@ static HRESULT WINAPI IDirect3DSurface9Impl_GetDC(LPDIRECT3DSURFACE9 iface, HDC*
return
hr
;
}
static
HRESULT
WINAPI
IDirect3DSurface9Impl_ReleaseDC
(
LPDIRECT3DSURFACE9
iface
,
HDC
hdc
)
{
IDirect3DSurface9Impl
*
This
=
(
IDirect3DSurface9Impl
*
)
iface
;
static
HRESULT
WINAPI
IDirect3DSurface9Impl_ReleaseDC
(
IDirect3DSurface9
*
iface
,
HDC
hdc
)
{
IDirect3DSurface9Impl
*
This
=
impl_from_IDirect3DSurface9
(
iface
);
HRESULT
hr
;
TRACE
(
"iface %p, hdc %p.
\n
"
,
iface
,
hdc
);
...
...
@@ -382,7 +397,7 @@ HRESULT surface_init(IDirect3DSurface9Impl *surface, IDirect3DDevice9Impl *devic
{
HRESULT
hr
;
surface
->
lpVtbl
=
&
Direct3DSurface9_Vtbl
;
surface
->
IDirect3DSurface9_iface
.
lpVtbl
=
&
Direct3DSurface9_Vtbl
;
surface
->
ref
=
1
;
switch
(
format
)
...
...
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