Changeset 67ebf21 in mainline for uspace/srv/fb/font-8x16.h


Ignore:
Timestamp:
2009-04-04T16:26:18Z (15 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4527fb5
Parents:
7d440e3
Message:

Use Unicode font in userspace.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fb/font-8x16.h

    r7d440e3 r67ebf21  
    2727 */
    2828
    29 #ifndef FB_FONT_8X16_H_
    30 #define FB_FONT_8X16_H_
     29/** @addtogroup genarch
     30 * @{
     31 */
     32/** @file
     33 */
    3134
    32 #define FONT_GLYPHS      256
    33 #define FONT_WIDTH       8
    34 #define FONT_SCANLINES   16
     35#ifndef FONT_8X16_H_
     36#define FONT_8X16_H_
    3537
     38#define FONT_GLYPHS     2899
     39#define FONT_WIDTH      8
     40#define FONT_SCANLINES  16
    3641
    37 extern unsigned char fb_font[FONT_GLYPHS * FONT_SCANLINES];
     42#include <sys/types.h>
     43
     44extern uint16_t fb_font_glyph(const wchar_t ch);
     45extern uint8_t fb_font[FONT_GLYPHS][FONT_SCANLINES];
    3846
    3947#endif
     48
     49/** @}
     50 */
Note: See TracChangeset for help on using the changeset viewer.