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
785c592a
Commit
785c592a
authored
Aug 10, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Aug 12, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dwrite: Improve the way font weight is set with both OS/2 and 'head' values.
parent
123c7cde
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
3 deletions
+15
-3
opentype.c
dlls/dwrite/opentype.c
+15
-3
No files found.
dlls/dwrite/opentype.c
View file @
785c592a
...
...
@@ -1041,11 +1041,19 @@ void opentype_get_font_properties(IDWriteFontFileStream *stream, DWRITE_FONT_FAC
if
(
tt_os2
)
{
USHORT
version
=
GET_BE_WORD
(
tt_os2
->
version
);
USHORT
fsSelection
=
GET_BE_WORD
(
tt_os2
->
fsSelection
);
USHORT
usWeightClass
=
GET_BE_WORD
(
tt_os2
->
usWeightClass
);
if
(
GET_BE_WORD
(
tt_os2
->
usWidthClass
)
<=
DWRITE_FONT_STRETCH_ULTRA_EXPANDED
)
props
->
stretch
=
GET_BE_WORD
(
tt_os2
->
usWidthClass
);
props
->
weight
=
GET_BE_WORD
(
tt_os2
->
usWeightClass
);
if
(
usWeightClass
>=
1
&&
usWeightClass
<=
9
)
usWeightClass
*=
100
;
if
(
usWeightClass
>
DWRITE_FONT_WEIGHT_ULTRA_BLACK
)
props
->
weight
=
DWRITE_FONT_WEIGHT_ULTRA_BLACK
;
else
props
->
weight
=
usWeightClass
;
if
(
version
>=
4
&&
(
fsSelection
&
OS2_FSSELECTION_OBLIQUE
))
props
->
style
=
DWRITE_FONT_STYLE_OBLIQUE
;
else
if
(
fsSelection
&
OS2_FSSELECTION_ITALIC
)
...
...
@@ -1054,13 +1062,17 @@ void opentype_get_font_properties(IDWriteFontFileStream *stream, DWRITE_FONT_FAC
}
else
if
(
tt_head
)
{
USHORT
macStyle
=
GET_BE_WORD
(
tt_head
->
macStyle
);
if
(
macStyle
&
TT_HEAD_MACSTYLE_ITALIC
)
props
->
style
=
DWRITE_FONT_STYLE_ITALIC
;
if
(
macStyle
&
TT_HEAD_MACSTYLE_CONDENSED
)
props
->
stretch
=
DWRITE_FONT_STRETCH_CONDENSED
;
else
if
(
macStyle
&
TT_HEAD_MACSTYLE_EXTENDED
)
props
->
stretch
=
DWRITE_FONT_STRETCH_EXPANDED
;
if
(
macStyle
&
TT_HEAD_MACSTYLE_BOLD
)
props
->
weight
=
DWRITE_FONT_WEIGHT_BOLD
;
if
(
macStyle
&
TT_HEAD_MACSTYLE_ITALIC
)
props
->
style
=
DWRITE_FONT_STYLE_ITALIC
;
}
TRACE
(
"stretch=%d, weight=%d, style %d
\n
"
,
props
->
stretch
,
props
->
weight
,
props
->
style
);
...
...
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