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
925dc6da
Commit
925dc6da
authored
Oct 09, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 11, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dwrite: Ignore embedded bitmaps when asked for outline.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d2f0bc2f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
freetype.c
dlls/dwrite/freetype.c
+1
-1
No files found.
dlls/dwrite/freetype.c
View file @
925dc6da
...
...
@@ -399,7 +399,7 @@ HRESULT freetype_get_glyph_outline(IDWriteFontFace2 *fontface, FLOAT emSize, UIN
EnterCriticalSection
(
&
freetype_cs
);
if
(
pFTC_Manager_LookupSize
(
cache_manager
,
&
scaler
,
&
size
)
==
0
)
{
if
(
pFT_Load_Glyph
(
size
->
face
,
index
,
FT_LOAD_
DEFAULT
)
==
0
)
{
if
(
pFT_Load_Glyph
(
size
->
face
,
index
,
FT_LOAD_
NO_BITMAP
)
==
0
)
{
FT_Outline
*
outline
=
&
size
->
face
->
glyph
->
outline
;
short
count
;
FT_Matrix
m
;
...
...
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