summaryrefslogtreecommitdiff
path: root/riscos/print.c
diff options
context:
space:
mode:
Diffstat (limited to 'riscos/print.c')
-rw-r--r--riscos/print.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/riscos/print.c b/riscos/print.c
index 21b3a511b..724576aff 100644
--- a/riscos/print.c
+++ b/riscos/print.c
@@ -99,6 +99,8 @@ static bool print_fonts_plot_text(int x, int y, struct css_style *style,
const char *text, size_t length, colour bg, colour c);
static bool print_fonts_plot_disc(int x, int y, int radius, colour c,
bool filled);
+static bool print_fonts_plot_arc(int x, int y, int radius, int angle1, int angle2,
+ colour c);
static bool print_fonts_plot_bitmap(int x, int y, int width, int height,
struct bitmap *bitmap, colour bg);
static bool print_fonts_plot_bitmap_tile(int x, int y, int width, int height,
@@ -123,6 +125,7 @@ static const struct plotter_table print_fonts_plotters = {
print_fonts_plot_clip,
print_fonts_plot_text,
print_fonts_plot_disc,
+ print_fonts_plot_arc,
print_fonts_plot_bitmap,
print_fonts_plot_bitmap_tile,
print_fonts_plot_group_start,
@@ -811,6 +814,9 @@ bool print_fonts_plot_clip(int clip_x0, int clip_y0,
int clip_x1, int clip_y1) { return true; }
bool print_fonts_plot_disc(int x, int y, int radius, colour colour, bool filled)
{ return true; }
+bool print_fonts_plot_arc(int x, int y, int radius, int angle1, int angle2,
+ colour c)
+ { return true; }
bool print_fonts_plot_bitmap(int x, int y, int width, int height,
struct bitmap *bitmap, colour bg) { return true; }
bool print_fonts_plot_bitmap_tile(int x, int y, int width, int height,