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
ebaf5ea1
Commit
ebaf5ea1
authored
Nov 15, 2012
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Don't load bitmap glyphs when using subpixel rendering in GetGlyphOutline.
parent
3b0179cb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
freetype.c
dlls/gdi32/freetype.c
+1
-6
No files found.
dlls/gdi32/freetype.c
View file @
ebaf5ea1
...
...
@@ -5997,12 +5997,7 @@ static DWORD get_glyph_outline(GdiFont *incoming_font, UINT glyph, UINT format,
needsTransform
=
TRUE
;
}
if
(
needsTransform
||
(
format
==
GGO_NATIVE
||
format
==
GGO_BEZIER
||
format
==
GGO_GRAY2_BITMAP
||
format
==
GGO_GRAY4_BITMAP
||
format
==
GGO_GRAY8_BITMAP
))
{
load_flags
|=
FT_LOAD_NO_BITMAP
;
}
if
(
needsTransform
||
format
!=
GGO_BITMAP
)
load_flags
|=
FT_LOAD_NO_BITMAP
;
err
=
pFT_Load_Glyph
(
ft_face
,
glyph_index
,
load_flags
);
...
...
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