summaryrefslogtreecommitdiff
path: root/framebuffer/framebuffer.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2010-07-07 18:08:17 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2010-07-07 18:08:17 +0000
commit5bebf2f2fc27a31c8b2efa7a837baef63c1b0a97 (patch)
tree65d353a907c3496eb638bbff780ff4d0f1437313 /framebuffer/framebuffer.c
parentf6faa20a37f38643d505ba41baa8a88e3dfa545a (diff)
downloadnetsurf-5bebf2f2fc27a31c8b2efa7a837baef63c1b0a97.tar.gz
netsurf-5bebf2f2fc27a31c8b2efa7a837baef63c1b0a97.tar.bz2
Merge branches/vince/netsurf-fbtk-rework to trunk.
svn path=/trunk/netsurf/; revision=10605
Diffstat (limited to 'framebuffer/framebuffer.c')
-rw-r--r--framebuffer/framebuffer.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/framebuffer/framebuffer.c b/framebuffer/framebuffer.c
index 0400a1abe..6c7ba102b 100644
--- a/framebuffer/framebuffer.c
+++ b/framebuffer/framebuffer.c
@@ -67,14 +67,16 @@ framebuffer_plot_arc(int x, int y, int radius, int angle1, int angle2, const plo
return nsfb_plot_arc(nsfb, x, y, radius, angle1, angle2, style->fill_colour);
}
-static bool framebuffer_plot_polygon(const int *p, unsigned int n, const plot_style_t *style)
+static bool
+framebuffer_plot_polygon(const int *p, unsigned int n, const plot_style_t *style)
{
return nsfb_plot_polygon(nsfb, p, n, style->fill_colour);
}
#ifdef FB_USE_FREETYPE
-static bool framebuffer_plot_text(int x, int y, const char *text, size_t length,
+static bool
+framebuffer_plot_text(int x, int y, const char *text, size_t length,
const plot_font_style_t *fstyle)
{
uint32_t ucs4;