Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
364e11b0
Commit
364e11b0
authored
Sep 12, 2018
by
Henri Verbeet
Committed by
Alexandre Julliard
Sep 12, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d2d1: Simplify the WIC render target implementation.
Signed-off-by:
Henri Verbeet
<
hverbeet@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a7d84716
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
2 deletions
+2
-2
d2d1_private.h
dlls/d2d1/d2d1_private.h
+1
-1
factory.c
dlls/d2d1/factory.c
+1
-1
wic_render_target.c
dlls/d2d1/wic_render_target.c
+0
-0
No files found.
dlls/d2d1/d2d1_private.h
View file @
364e11b0
...
...
@@ -162,7 +162,7 @@ HRESULT d2d_d3d_render_target_create_rtv(ID2D1RenderTarget *render_target, IDXGI
struct
d2d_wic_render_target
{
I
D2D1RenderTarget
ID2D1RenderTarget
_iface
;
I
Unknown
IUnknown
_iface
;
LONG
refcount
;
IDXGISurface
*
dxgi_surface
;
...
...
dlls/d2d1/factory.c
View file @
364e11b0
...
...
@@ -300,7 +300,7 @@ static HRESULT STDMETHODCALLTYPE d2d_factory_CreateWicBitmapRenderTarget(ID2D1Fa
}
TRACE
(
"Created render target %p.
\n
"
,
object
);
*
render_target
=
&
object
->
ID2D1RenderTarget_iface
;
*
render_target
=
object
->
dxgi_target
;
return
S_OK
;
}
...
...
dlls/d2d1/wic_render_target.c
View file @
364e11b0
This diff is collapsed.
Click to expand it.
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