Changeset 26653c9 in mainline
- Timestamp:
- 2020-10-22T09:50:18Z (4 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- dcfd422
- Parents:
- 70814b8e
- git-author:
- Jiri Svoboda <jiri@…> (2020-10-22 17:50:34)
- git-committer:
- Jiri Svoboda <jiri@…> (2020-10-22 09:50:18)
- Location:
- uspace
- Files:
-
- 2 added
- 1 deleted
- 8 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/terminal/meson.build
r70814b8e r26653c9 27 27 # 28 28 29 deps = [ ' draw', 'gfx', 'ipcgfx', 'display' ]29 deps = [ 'fbfont', 'display', 'ui' ] 30 30 src = files( 31 31 'main.c', -
uspace/app/terminal/terminal.c
r70814b8e r26653c9 37 37 #include <adt/list.h> 38 38 #include <adt/prodcons.h> 39 #include <draw/gfx.h>40 39 #include <errno.h> 40 #include <fbfont/font-8x16.h> 41 41 #include <io/chargrid.h> 42 42 #include <gfx/bitmap.h> -
uspace/lib/draw/font/embedded.c
r70814b8e r26653c9 42 42 #include <draw/font.h> 43 43 #include <draw/drawctx.h> 44 #include <fbfont/font-8x16.h> 44 45 45 46 static errno_t fde_resolve_glyph(void *unused, const char32_t chr, -
uspace/lib/draw/include/draw/gfx.h
r70814b8e r26653c9 53 53 extern uint8_t cursor_mask[]; 54 54 55 extern uint16_t fb_font_glyph(const char32_t, bool *);56 extern uint8_t fb_font[FONT_GLYPHS][FONT_SCANLINES];57 58 55 #endif 59 56 -
uspace/lib/draw/meson.build
r70814b8e r26653c9 27 27 # 28 28 29 deps = [ 'softrend' , 'compress' ]29 deps = [ 'softrend' , 'compress', 'fbfont' ] 30 30 src = files( 31 31 'codec/tga.c', … … 36 36 'font/bitmap_backend.c', 37 37 'font/pcf.c', 38 'gfx/font-8x16.c',39 38 'gfx/cursor-11x18.c', 40 39 'drawctx.c', -
uspace/lib/fbfont/include/fbfont/font-8x16.h
r70814b8e r26653c9 1 1 /* 2 2 * Copyright (c) 2005 Martin Decky 3 * Copyright (c) 2012 Petr Koupy 3 4 * All rights reserved. 4 5 * … … 36 37 #define FONT_8X16_H_ 37 38 38 #include <sys/types.h> 39 #include <stdint.h> 40 #include <str.h> 39 41 40 42 #define FONT_GLYPHS 2899 41 43 #define FONT_WIDTH 8 42 44 #define FONT_SCANLINES 16 45 #define FONT_ASCENDER 12 43 46 44 extern uint16_t fb_font_glyph(const char32_t );47 extern uint16_t fb_font_glyph(const char32_t, bool *); 45 48 extern uint8_t fb_font[FONT_GLYPHS][FONT_SCANLINES]; 46 49 -
uspace/lib/fbfont/src/font-8x16.c
r70814b8e r26653c9 28 28 */ 29 29 30 /** @addtogroup draw30 /** @addtogroup libfbfont 31 31 * @{ 32 32 */ … … 35 35 36 36 #include <stdint.h> 37 #include <draw/gfx.h> 37 #include <str.h> 38 #include "../include/fbfont/font-8x16.h" 38 39 39 40 /** Convert character to font glyph index -
uspace/lib/gui/meson.build
r70814b8e r26653c9 27 27 # 28 28 29 deps = [ 'draw' , 'softrend', ' display' ]29 deps = [ 'draw' , 'softrend', 'fbfont', 'display' ] 30 30 src = files( 31 31 'common.c', -
uspace/lib/gui/terminal.c
r70814b8e r26653c9 39 39 #include <draw/surface.h> 40 40 #include <draw/gfx.h> 41 #include <fbfont/font-8x16.h> 41 42 #include <io/con_srv.h> 42 43 #include <io/concaps.h> -
uspace/lib/meson.build
r70814b8e r26653c9 56 56 'crypto', 57 57 'dltest', 58 'fbfont', 58 59 'fdisk', 59 60 'fmtutil',
Note:
See TracChangeset
for help on using the changeset viewer.