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
a900f5e0
Commit
a900f5e0
authored
Oct 26, 2008
by
Bobby Bingham
Committed by
Alexandre Julliard
Oct 28, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Add support for the GGO_UNHINTED flag in GetGlyphOutline.
parent
f0fed283
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
freetype.c
dlls/gdi32/freetype.c
+5
-0
wingdi.h
include/wingdi.h
+1
-0
No files found.
dlls/gdi32/freetype.c
View file @
a900f5e0
...
...
@@ -4373,6 +4373,11 @@ DWORD WineEngGetGlyphOutline(GdiFont *incoming_font, UINT glyph, UINT format,
original_index
=
glyph_index
;
}
if
(
format
&
GGO_UNHINTED
)
{
load_flags
|=
FT_LOAD_NO_HINTING
;
format
&=
~
GGO_UNHINTED
;
}
/* tategaki never appears to happen to lower glyph index */
if
(
glyph_index
<
TATEGAKI_LOWER_BOUND
)
tategaki
=
FALSE
;
...
...
include/wingdi.h
View file @
a900f5e0
...
...
@@ -1294,6 +1294,7 @@ typedef struct
#define GGO_GRAY4_BITMAP 5
#define GGO_GRAY8_BITMAP 6
#define GGO_GLYPH_INDEX 0x80
#define GGO_UNHINTED 0x100
#ifdef __WINESRC__
#define WINE_GGO_GRAY16_BITMAP 0x7f
...
...
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