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
fc3deb6c
Commit
fc3deb6c
authored
Feb 15, 2021
by
Nikolay Sivov
Committed by
Alexandre Julliard
Feb 15, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mfplat: Unify trace format for device manager methods.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
31202993
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
main.c
dlls/mfplat/main.c
+3
-3
No files found.
dlls/mfplat/main.c
View file @
fc3deb6c
...
...
@@ -8599,7 +8599,7 @@ static HRESULT dxgi_device_manager_get_handle_index(struct dxgi_device_manager *
static
HRESULT
WINAPI
dxgi_device_manager_QueryInterface
(
IMFDXGIDeviceManager
*
iface
,
REFIID
riid
,
void
**
obj
)
{
TRACE
(
"
(%p, %s, %p)
.
\n
"
,
iface
,
debugstr_guid
(
riid
),
obj
);
TRACE
(
"
%p, %s, %p
.
\n
"
,
iface
,
debugstr_guid
(
riid
),
obj
);
if
(
IsEqualIID
(
riid
,
&
IID_IMFDXGIDeviceManager
)
||
IsEqualGUID
(
riid
,
&
IID_IUnknown
))
...
...
@@ -8619,7 +8619,7 @@ static ULONG WINAPI dxgi_device_manager_AddRef(IMFDXGIDeviceManager *iface)
struct
dxgi_device_manager
*
manager
=
impl_from_IMFDXGIDeviceManager
(
iface
);
ULONG
refcount
=
InterlockedIncrement
(
&
manager
->
refcount
);
TRACE
(
"
(%p) ref=
%u.
\n
"
,
iface
,
refcount
);
TRACE
(
"
%p, refcount
%u.
\n
"
,
iface
,
refcount
);
return
refcount
;
}
...
...
@@ -8629,7 +8629,7 @@ static ULONG WINAPI dxgi_device_manager_Release(IMFDXGIDeviceManager *iface)
struct
dxgi_device_manager
*
manager
=
impl_from_IMFDXGIDeviceManager
(
iface
);
ULONG
refcount
=
InterlockedDecrement
(
&
manager
->
refcount
);
TRACE
(
"
(%p) ref=
%u.
\n
"
,
iface
,
refcount
);
TRACE
(
"
%p, refcount
%u.
\n
"
,
iface
,
refcount
);
if
(
!
refcount
)
{
...
...
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