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
845103c7
Commit
845103c7
authored
Mar 26, 2015
by
Henri Verbeet
Committed by
Alexandre Julliard
Mar 27, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d2d1: Implement d2d_d3d_render_target_GetTextRenderingParams().
parent
060d2230
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
render_target.c
dlls/d2d1/render_target.c
+5
-2
No files found.
dlls/d2d1/render_target.c
View file @
845103c7
...
...
@@ -872,9 +872,12 @@ static void STDMETHODCALLTYPE d2d_d3d_render_target_SetTextRenderingParams(ID2D1
static
void
STDMETHODCALLTYPE
d2d_d3d_render_target_GetTextRenderingParams
(
ID2D1RenderTarget
*
iface
,
IDWriteRenderingParams
**
text_rendering_params
)
{
FIXME
(
"iface %p, text_rendering_params %p stub!
\n
"
,
iface
,
text_rendering_params
);
struct
d2d_d3d_render_target
*
render_target
=
impl_from_ID2D1RenderTarget
(
iface
);
TRACE
(
"iface %p, text_rendering_params %p.
\n
"
,
iface
,
text_rendering_params
);
*
text_rendering_params
=
NULL
;
if
((
*
text_rendering_params
=
render_target
->
text_rendering_params
))
IDWriteRenderingParams_AddRef
(
*
text_rendering_params
);
}
static
void
STDMETHODCALLTYPE
d2d_d3d_render_target_SetTags
(
ID2D1RenderTarget
*
iface
,
D2D1_TAG
tag1
,
D2D1_TAG
tag2
)
...
...
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