Mirror of CollapseOS
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

7 wiersze
317B

  1. ( Converts "dot-X" fonts to binary "glyph rows". One byte for
  2. each row. In a 5x7 font, each glyph thus use 7 bytes.
  3. Resulting bytes are aligned to the left of the byte.
  4. Therefore, for a 5-bit wide char, "X.X.X" translates to
  5. 0b10101000. Left-aligned bytes are easier to work with when
  6. compositing glyphs. )