This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -m markdown | |
| --private | |
| --protected | |
| --embed-mixins | |
| --default-return void | |
| **/*.rb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -m markdown | |
| --private | |
| --protected | |
| --embed-mixins | |
| --default-return void | |
| **/*.rb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const std = @import("std"); | |
| /// PSF font-file loading, into an easy to render format | |
| /// | |
| /// {buildFont} takes a path to a font file, and returns a struct wrapping that | |
| /// font with the ability to easily get an iterator of pixels over charactors | |
| /// | |
| /// @see https://www.win.tue.nl/~aeb/linux/kbd/font-formats-1.html | |
| const PSF1_MAGIC: [2]u8 = .{ 0x36, 0x04 }; |
OlderNewer