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
6eaa3452
Commit
6eaa3452
authored
Apr 08, 2013
by
Akihiro Sagawa
Committed by
Alexandre Julliard
Apr 09, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fonts: Add Fixedsys font.
parent
b73323d4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
0 deletions
+8
-0
.gitignore
fonts/.gitignore
+1
-0
Makefile.in
fonts/Makefile.in
+4
-0
fixedsys.sfd
fonts/fixedsys.sfd
+0
-0
fixedsys.ttf
fonts/fixedsys.ttf
+0
-0
sfnt2fnt.c
tools/sfnt2fnt.c
+3
-0
No files found.
fonts/.gitignore
View file @
6eaa3452
...
...
@@ -37,6 +37,7 @@
/sseriffr.fon
/sserifft.fon
/svgasys.fon
/vgafix.fon
/vgas1255.fon
/vgas1256.fon
/vgas1257.fon
...
...
fonts/Makefile.in
View file @
6eaa3452
...
...
@@ -40,6 +40,7 @@ BITMAP_FONTS = \
ssef1257.fon
\
ssef874.fon
\
svgasys.fon
\
vgafix.fon
\
vgasys.fon
\
vgasyse.fon
\
vgasysg.fon
\
...
...
@@ -87,6 +88,9 @@ coue1256.fon: courier.ttf
coue1257.fon
:
courier.ttf
$(LDPATH)
$(SFNT2FNT)
-o
$@
-d
128
$(srcdir)
/courier.ttf 13,1257,8
vgafix.fon
:
fixedsys.ttf
$(LDPATH)
$(SFNT2FNT)
-o
$@
-d
128
$(srcdir)
/fixedsys.ttf 15,1252,8
sserife.fon
:
ms_sans_serif.ttf
$(LDPATH)
$(SFNT2FNT)
-o
$@
-d
129
$(srcdir)
/ms_sans_serif.ttf 13,1252,5 16,1252,7 20,1252,8
...
...
fonts/fixedsys.sfd
0 → 100644
View file @
6eaa3452
This diff is collapsed.
Click to expand it.
fonts/fixedsys.ttf
0 → 100644
View file @
6eaa3452
File added
tools/sfnt2fnt.c
View file @
6eaa3452
...
...
@@ -429,6 +429,9 @@ static struct fontinfo *fill_fontinfo( const char *face_name, int ppem, int enc,
/* Hack: Courier has no internal leading, nor do any Chinese or Japanese fonts */
if
(
!
strcmp
(
face
->
family_name
,
"Courier"
)
||
enc
==
936
||
enc
==
950
||
enc
==
932
)
il
=
0
;
else
if
(
!
strcmp
(
face
->
family_name
,
"Fixedsys"
))
il
=
3
;
/* Japanese system fonts have an external leading (not small font) */
if
(
enc
==
932
&&
ppem
>
11
)
el
=
2
;
...
...
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