• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.dependenciesH A D23-Dec-20071.4 KiB2928

CHANGESH A D23-Dec-20073.7 KiB7268

Makefile.inH A D23-Dec-20072 KiB10770

READMEH A D23-Dec-20071.2 KiB2620

README.RMzH A D23-Dec-2007488 139

Xstuff.hH A D23-Dec-2007730 4330

arith.cH A D23-Dec-200713.8 KiB425182

arith.hH A D23-Dec-20072.1 KiB6316

blues.hH A D23-Dec-20073.8 KiB9653

bstring.cH A D23-Dec-2007157 104

cluts.hH A D23-Dec-20071.6 KiB363

curves.cH A D23-Dec-20077.5 KiB221103

curves.hH A D23-Dec-20072 KiB416

digit.hH A D23-Dec-20073.1 KiB6521

ffilest.hH A D23-Dec-20074.2 KiB152100

font.hH A D23-Dec-20073.3 KiB10859

fontfcn.cH A D23-Dec-200743.1 KiB1,267825

fontfcn.hH A D23-Dec-20073.7 KiB10054

fontfile.hH A D23-Dec-20073 KiB7342

fontmisc.hH A D23-Dec-20071.8 KiB6428

fonts.hH A D23-Dec-20071.8 KiB5015

fontstruct.hH A D23-Dec-20077.4 KiB225150

fontxlfd.hH A D23-Dec-20071.7 KiB4615

fsmasks.hH A D23-Dec-20072.8 KiB7331

hdigit.hH A D23-Dec-20075.2 KiB10545

hints.cH A D23-Dec-200731.9 KiB985539

hints.hH A D23-Dec-20072.1 KiB438

lines.cH A D23-Dec-20075.6 KiB20187

lines.hH A D23-Dec-20071.9 KiB384

objects.cH A D23-Dec-200740.7 KiB1,209487

objects.hH A D23-Dec-200710.3 KiB297163

paths.cH A D23-Dec-200750.7 KiB1,517841

paths.hH A D23-Dec-20079.6 KiB202111

paths_rmz.hH A D23-Dec-20078.7 KiB21173

pictures.hH A D23-Dec-20071.9 KiB4913

regions.cH A D23-Dec-200758.6 KiB1,783911

regions.hH A D23-Dec-20078.6 KiB20996

scanfont.cH A D23-Dec-200743.5 KiB1,382991

spaces.cH A D23-Dec-200732.9 KiB1,017477

spaces.hH A D23-Dec-20075.8 KiB14366

spaces_rmz.hH A D23-Dec-20075.9 KiB14863

strokes.hH A D23-Dec-20071.7 KiB396

t1chardumpH A D23-Dec-200720.5 KiB698696

t1hdigit.hH A D23-Dec-20071.8 KiB418

t1imager.hH A D23-Dec-20074.4 KiB15273

t1intf.hH A D23-Dec-20071.6 KiB375

t1io.cH A D23-Dec-200717.1 KiB642442

t1snap.cH A D23-Dec-20072.6 KiB8029

t1stdio.hH A D23-Dec-20073 KiB8846

t1stub.cH A D23-Dec-20071.7 KiB4812

token.cH A D23-Dec-200727.4 KiB1,209751

token.hH A D23-Dec-20073 KiB7831

tokst.hH A D23-Dec-200729.2 KiB509400

trig.hH A D23-Dec-20071.6 KiB363

type1.cH A D23-Dec-2007152.8 KiB4,6773,083

types.hH A D23-Dec-2007992 3322

util.cH A D23-Dec-20075 KiB205109

util.hH A D23-Dec-20077.6 KiB18391

README

1This directory contains a rasterizer for "Type 1" (PostScript) format
2outline fonts.  It was donated by IBM for the R5 contrib tape and has
3been maintained since then by the MIT X Consortium.  This version is
4compatible with X11R5 public patch 13.
5
6To be used, this rasterizer must be bound into the X server and the font
7server.  It is most convenient to do this if this directory is moved
8into the 'mit' directory tree (i.e., mit/font/lib/font/Type1, a peer of
9the 'Speedo' directory).  Of course, mit/font/lib/font/Imakefile must be
10made aware of its new subdirectory and the objects in it.  In any case,
11you must ensure that the library mit/font/lib/font/libfont.a contains
12this code.
13
14In addition, the rasterizer must be "registered" with X. The source in
15mit/fonts/lib/font/fontfile/renderers.c, specifically the routine
16FontFileRegisterFontFileFunctions(), must be modified to add the line:
17
18    Type1RegisterFontFileFunctions();
19
20after the call to "SpeedoRegisterFontFileFunctions".
21
22Some Type 1 fonts have been donated; see, for example, the directory
23contrib/fonts/scaled/Type1.  In order to use them, they must be in the
24font path, either by combining them in some existing font object
25directory, or adding a new font directory to the path.
26

README.RMz

1Dear Folks,
2
3this directory basically contains the Type 1 rasterizer code, donated
4to the X11-project by IBM and afterwards modified by Piet Tutelaers
5for his ps2pk-package. But there are several files modified by
6myself. Thus the state of this directory is not an official one and
7subject to further changes!
8
9Before version 0.6 of t1lib I have cleaned the sources, removed the X11-dummy
10function and made the sources more ANSI-C compliant.
11
12			                       (03/09/1998, RMz)
13