diff --git a/examples/nx/nx_kbdin.c b/examples/nx/nx_kbdin.c index 238272533..66d54b046 100644 --- a/examples/nx/nx_kbdin.c +++ b/examples/nx/nx_kbdin.c @@ -323,7 +323,7 @@ nxeg_getglyph(FAR struct nxeg_state_s *st, uint8_t ch) { /* No, it is not cached... Does the code map to a glyph? */ - bm = nxf_getbitmap(ch); + bm = nxf_getbitmap(ch, NXFONT_DEFAULT); if (!bm) { /* No, there is no glyph for this code. Use space */ diff --git a/examples/nx/nx_main.c b/examples/nx/nx_main.c index d8b1eaba0..72e8fe2ca 100644 --- a/examples/nx/nx_main.c +++ b/examples/nx/nx_main.c @@ -179,7 +179,7 @@ static void nxeg_initstate(FAR struct nxeg_state_s *st, int wnum, */ #ifdef CONFIG_NX_KBD - fontset = nxf_getfontset(); + fontset = nxf_getfontset(NXFONT_DEFAULT); st->nchars = 0; st->nglyphs = 0; st->height = fontset->mxheight; diff --git a/examples/nxhello/nxhello_bkgd.c b/examples/nxhello/nxhello_bkgd.c index 950d6e837..9ec3e5141 100644 --- a/examples/nxhello/nxhello_bkgd.c +++ b/examples/nxhello/nxhello_bkgd.c @@ -228,7 +228,7 @@ static void nxhello_center(FAR struct nxgl_point_s *pos, { /* Get the font bitmap for this character */ - fbm = nxf_getbitmap(*ptr); + fbm = nxf_getbitmap(*ptr, NXFONT_DEFAULT); if (fbm) { /* Add the font size */ @@ -353,7 +353,7 @@ void nxhello_hello(NXWINDOW hwnd) /* Get information about the font we are going to use */ - fontset = nxf_getfontset(); + fontset = nxf_getfontset(NXFONT_DEFAULT); /* Allocate a bit of memory to hold the largest rendered font */ @@ -377,7 +377,7 @@ void nxhello_hello(NXWINDOW hwnd) { /* Get the bitmap font for this ASCII code */ - fbm = nxf_getbitmap(*ptr); + fbm = nxf_getbitmap(*ptr, NXFONT_DEFAULT); if (fbm) { uint8_t fheight; /* Height of this glyph (in rows) */ diff --git a/examples/nxtext/nxtext_bkgd.c b/examples/nxtext/nxtext_bkgd.c index d94f19dc1..e711c84bb 100644 --- a/examples/nxtext/nxtext_bkgd.c +++ b/examples/nxtext/nxtext_bkgd.c @@ -402,7 +402,7 @@ FAR struct nxtext_state_s *nxbg_getstate(void) * state structure */ - fontset = nxf_getfontset(); + fontset = nxf_getfontset(NXFONT_DEFAULT); g_bgstate.fheight = fontset->mxheight; g_bgstate.fwidth = fontset->mxwidth; g_bgstate.spwidth = fontset->spwidth; diff --git a/examples/nxtext/nxtext_popup.c b/examples/nxtext/nxtext_popup.c index 33170019f..bf9fbae19 100644 --- a/examples/nxtext/nxtext_popup.c +++ b/examples/nxtext/nxtext_popup.c @@ -304,7 +304,7 @@ static inline void nxpu_initstate(void) */ #ifdef CONFIG_NX_KBD - fontset = nxf_getfontset(); + fontset = nxf_getfontset(NXFONT_DEFAULT); g_pustate.fheight = fontset->mxheight; g_pustate.fwidth = fontset->mxwidth; g_pustate.spwidth = fontset->spwidth; diff --git a/examples/nxtext/nxtext_putc.c b/examples/nxtext/nxtext_putc.c index b9c9417a8..87da2ad6e 100644 --- a/examples/nxtext/nxtext_putc.c +++ b/examples/nxtext/nxtext_putc.c @@ -332,7 +332,7 @@ static int nxtext_fontsize(uint8_t ch, FAR struct nxgl_size_s *size) /* No, it is not cached... Does the code map to a font? */ - fbm = nxf_getbitmap(ch); + fbm = nxf_getbitmap(ch, NXFONT_DEFAULT); if (fbm) { /* Yes.. return the font size */ @@ -362,7 +362,7 @@ nxtext_getglyph(FAR struct nxtext_state_s *st, uint8_t ch) { /* No, it is not cached... Does the code map to a font? */ - fbm = nxf_getbitmap(ch); + fbm = nxf_getbitmap(ch, NXFONT_DEFAULT); if (fbm) { /* Yes.. render the glyph */