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
125b9495
Commit
125b9495
authored
Jun 06, 2011
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jun 06, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dxgi: COM cleanup for the IDXGIOutput iface.
parent
c40a6eee
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
7 deletions
+12
-7
adapter.c
dlls/dxgi/adapter.c
+1
-1
dxgi_private.h
dlls/dxgi/dxgi_private.h
+1
-1
output.c
dlls/dxgi/output.c
+10
-5
No files found.
dlls/dxgi/adapter.c
View file @
125b9495
...
...
@@ -228,7 +228,7 @@ HRESULT dxgi_adapter_init(struct dxgi_adapter *adapter, IWineDXGIFactory *parent
return
E_OUTOFMEMORY
;
}
dxgi_output_init
(
output
,
adapter
);
adapter
->
output
=
(
IDXGIOutput
*
)
output
;
adapter
->
output
=
&
output
->
IDXGIOutput_iface
;
return
S_OK
;
}
dlls/dxgi/dxgi_private.h
View file @
125b9495
...
...
@@ -102,7 +102,7 @@ HRESULT dxgi_device_init(struct dxgi_device *device, struct dxgi_device_layer *l
/* IDXGIOutput */
struct
dxgi_output
{
const
struct
IDXGIOutputVtbl
*
vtbl
;
IDXGIOutput
IDXGIOutput_iface
;
LONG
refcount
;
struct
dxgi_adapter
*
adapter
;
};
...
...
dlls/dxgi/output.c
View file @
125b9495
...
...
@@ -23,6 +23,11 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
dxgi
);
static
inline
struct
dxgi_output
*
impl_from_IDXGIOutput
(
IDXGIOutput
*
iface
)
{
return
CONTAINING_RECORD
(
iface
,
struct
dxgi_output
,
IDXGIOutput_iface
);
}
/* IUnknown methods */
static
HRESULT
STDMETHODCALLTYPE
dxgi_output_QueryInterface
(
IDXGIOutput
*
iface
,
REFIID
riid
,
void
**
object
)
...
...
@@ -46,7 +51,7 @@ static HRESULT STDMETHODCALLTYPE dxgi_output_QueryInterface(IDXGIOutput *iface,
static
ULONG
STDMETHODCALLTYPE
dxgi_output_AddRef
(
IDXGIOutput
*
iface
)
{
struct
dxgi_output
*
This
=
(
struct
dxgi_output
*
)
iface
;
struct
dxgi_output
*
This
=
impl_from_IDXGIOutput
(
iface
)
;
ULONG
refcount
=
InterlockedIncrement
(
&
This
->
refcount
);
TRACE
(
"%p increasing refcount to %u.
\n
"
,
This
,
refcount
);
...
...
@@ -56,7 +61,7 @@ static ULONG STDMETHODCALLTYPE dxgi_output_AddRef(IDXGIOutput *iface)
static
ULONG
STDMETHODCALLTYPE
dxgi_output_Release
(
IDXGIOutput
*
iface
)
{
struct
dxgi_output
*
This
=
(
struct
dxgi_output
*
)
iface
;
struct
dxgi_output
*
This
=
impl_from_IDXGIOutput
(
iface
)
;
ULONG
refcount
=
InterlockedDecrement
(
&
This
->
refcount
);
TRACE
(
"%p decreasing refcount to %u.
\n
"
,
This
,
refcount
);
...
...
@@ -98,7 +103,7 @@ static HRESULT STDMETHODCALLTYPE dxgi_output_GetPrivateData(IDXGIOutput *iface,
static
HRESULT
STDMETHODCALLTYPE
dxgi_output_GetParent
(
IDXGIOutput
*
iface
,
REFIID
riid
,
void
**
parent
)
{
struct
dxgi_output
*
This
=
(
struct
dxgi_output
*
)
iface
;
struct
dxgi_output
*
This
=
impl_from_IDXGIOutput
(
iface
)
;
TRACE
(
"iface %p, riid %s, parent %p.
\n
"
,
iface
,
debugstr_guid
(
riid
),
parent
);
...
...
@@ -117,7 +122,7 @@ static HRESULT STDMETHODCALLTYPE dxgi_output_GetDesc(IDXGIOutput *iface, DXGI_OU
static
HRESULT
STDMETHODCALLTYPE
dxgi_output_GetDisplayModeList
(
IDXGIOutput
*
iface
,
DXGI_FORMAT
format
,
UINT
flags
,
UINT
*
mode_count
,
DXGI_MODE_DESC
*
desc
)
{
struct
dxgi_output
*
This
=
(
struct
dxgi_output
*
)
iface
;
struct
dxgi_output
*
This
=
impl_from_IDXGIOutput
(
iface
)
;
enum
wined3d_format_id
wined3d_format
;
struct
wined3d
*
wined3d
;
UINT
i
;
...
...
@@ -279,7 +284,7 @@ static const struct IDXGIOutputVtbl dxgi_output_vtbl =
void
dxgi_output_init
(
struct
dxgi_output
*
output
,
struct
dxgi_adapter
*
adapter
)
{
output
->
v
tbl
=
&
dxgi_output_vtbl
;
output
->
IDXGIOutput_iface
.
lpV
tbl
=
&
dxgi_output_vtbl
;
output
->
refcount
=
1
;
output
->
adapter
=
adapter
;
}
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