Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
ed411d97
Commit
ed411d97
authored
Aug 24, 2015
by
Aaryaman Vasishta
Committed by
Alexandre Julliard
Aug 25, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3drm: Thunk IDirect3DRMTexture2::Release to version 3.
parent
0c06bb7a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
6 deletions
+2
-6
texture.c
dlls/d3drm/texture.c
+2
-6
No files found.
dlls/d3drm/texture.c
View file @
ed411d97
...
...
@@ -86,14 +86,10 @@ static ULONG WINAPI d3drm_texture2_AddRef(IDirect3DRMTexture2 *iface)
static
ULONG
WINAPI
d3drm_texture2_Release
(
IDirect3DRMTexture2
*
iface
)
{
struct
d3drm_texture
*
texture
=
impl_from_IDirect3DRMTexture2
(
iface
);
ULONG
refcount
=
InterlockedDecrement
(
&
texture
->
ref
);
TRACE
(
"%p decreasing refcount to %u.
\n
"
,
iface
,
refcount
);
if
(
!
refcount
)
HeapFree
(
GetProcessHeap
(),
0
,
texture
);
TRACE
(
"iface %p.
\n
"
,
iface
);
return
refcount
;
return
IDirect3DRMTexture3_Release
(
&
texture
->
IDirect3DRMTexture3_iface
)
;
}
static
HRESULT
WINAPI
d3drm_texture2_Clone
(
IDirect3DRMTexture2
*
iface
,
...
...
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