summaryrefslogtreecommitdiff
path: root/framebuffer/font_internal.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-04-24 11:05:05 +0100
committerVincent Sanders <vince@kyllikki.org>2016-04-24 11:05:05 +0100
commit0b7edfd252423edf097d82b8354ef34946a1a290 (patch)
treead677799a161f9180c0284eeb8f4f921f01bd0d4 /framebuffer/font_internal.h
parentae01f3661938b14b44a907113b6b65c0e3d1721d (diff)
downloadnetsurf-0b7edfd252423edf097d82b8354ef34946a1a290.tar.gz
netsurf-0b7edfd252423edf097d82b8354ef34946a1a290.tar.bz2
update framebuffer frontend to use layout table
Diffstat (limited to 'framebuffer/font_internal.h')
-rw-r--r--framebuffer/font_internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/framebuffer/font_internal.h b/framebuffer/font_internal.h
index d066f6bf4..f25df8de6 100644
--- a/framebuffer/font_internal.h
+++ b/framebuffer/font_internal.h
@@ -40,10 +40,10 @@ enum fb_font_style {
enum fb_font_style fb_get_font_style(const plot_font_style_t *fstyle);
int fb_get_font_size(const plot_font_style_t *fstyle);
-const uint8_t *fb_get_glyph(uint32_t ucs4, enum fb_font_style style, int scale);
-
#define codepoint_displayable(u) \
(!(u >= 0x200b && u <= 0x200f))
+const uint8_t *fb_get_glyph(uint32_t ucs4, enum fb_font_style style, int scale);
+
#endif /* NETSURF_FB_FONT_INTERNAL_H */