summaryrefslogtreecommitdiffstats
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
* Define functions before usePatrick McDermott2019-06-291-124/+124
|
* parse_bdf_2_1(): Fix negative bit shift offsetP. J. McDermott2014-07-131-2/+7
| | | | | | | | | | | | | If the font width minus the left margin is greater than the number of bits needed for the character plus the character's x offset, the bit shift offset will be negative. For example, with a font width of 17, left margin of 2, character width of 2 bytes, and character x offset of 1, the following happens: x = (font_bbox_w + font_bbox_x) - figure_margin - (bytes_w * 8 + char_bbox_x) x = (17 + 0) - 2 - (2 * 8 + 1) x = -2
* bdf2fbcon: Choose a more sensible output filenameP. J. McDermott2014-07-131-20/+23
|
* write_fbcon(): Add "_WxH" to id, idx, and nameP. J. McDermott2014-07-131-0/+3
|
* write_fbcon() Fix the file handle for some outputP. J. McDermott2014-07-121-1/+1
|
* bdf2fbcon: Adjust font id and idx/name keysP. J. McDermott2014-07-121-8/+10
|
* bdf2fbcon: Move name and idx normalization logicP. J. McDermott2014-07-121-6/+6
|
* bdf2fbcon: Add -n option to override font nameP. J. McDermott2014-07-121-4/+16
|
* main(): Drop $SIG{'__WARN__'} settingP. J. McDermott2014-07-121-2/+0
|
* parse_bdf_2_1(): Add left margin from FIGURE_WIDTHP. J. McDermott2014-07-111-0/+6
|
* parse_bdf_2_1(): Add horizontal offsetP. J. McDermott2014-07-111-2/+7
|
* parse_bdf_2_1(): Set vertical offsetP. J. McDermott2014-07-111-2/+3
| | | | Also fix a variable name.
* write_fbcon(): Remove superfluous "my"P. J. McDermott2014-07-111-1/+1
|
* parse_bdf_2_1(): Use the right functionP. J. McDermott2014-07-111-1/+1
|
* write_fbcon(): Fix bitmap iterator & binary stringP. J. McDermott2014-07-111-3/+6
|
* write_fbcon(): Set undefined bitmaps to 0P. J. McDermott2014-07-111-0/+1
|
* parse_bdf_2_1(): Populate bitmap without offsetsP. J. McDermott2014-07-111-1/+7
|
* write_fbcon(): Write bitmapsP. J. McDermott2014-07-111-1/+17
|
* parse_bdf_2_1(): Get bboxes and look for BITMAPP. J. McDermott2014-07-111-1/+20
|
* bdf2fbcon: Add a -p option to set the prefP. J. McDermott2014-07-111-3/+13
|
* init_font(): Really take argumentsP. J. McDermott2014-07-111-1/+1
|
* init_font(): Clear default character nameP. J. McDermott2014-07-111-1/+1
|
* write_fbcon(): Set FONTDATAMAXP. J. McDermott2014-07-111-2/+2
|
* init_font(), write_fbcon(): Fix char countP. J. McDermott2014-07-111-2/+2
|
* write_fbcon(): Pad numbers in char commentsP. J. McDermott2014-07-111-1/+1
|
* bdf2fbcon: Split up parsing and generationP. J. McDermott2014-07-111-37/+78
|
* convert_bdf_2_1(): Write char commentsP. J. McDermott2014-07-111-1/+8
|
* Initial commitP. J. McDermott2014-07-111-0/+299