From 999410adc818e9bc9e566580b38954720d7dad55 Mon Sep 17 00:00:00 2001 From: Ole Loots Date: Mon, 28 Nov 2011 23:23:28 +0000 Subject: I'm actually trying to simplify the frontend code, changes: - Optimized browser window caret, uses back-buffer now. ( So no content redraw is scheduled by the frontend just for a caret move ) - Fixed a double redraw issue when the browser reformat is pending and the AES also sends an redraw request because of the resize. - Started to use netsurfs textarea instead of a custom implementation ( to reduce code size ). svn path=/trunk/netsurf/; revision=13191 --- atari/plot.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'atari/plot.h') diff --git a/atari/plot.h b/atari/plot.h index 02d9f37a9..7348c71c7 100755 --- a/atari/plot.h +++ b/atari/plot.h @@ -31,6 +31,7 @@ int atari_plotter_finalise( void ); void plot_set_knockout( int set ); bool plot_get_clip(struct rect * out); bool plot_clip(const struct rect *clip); -bool plot_rectangle( int x0, int y0, int x1, int y1,const plot_style_t *style ); +bool plot_rectangle( int x0, int y0, int x1, int y1,const plot_style_t *style ); +bool plot_line( int x0, int y0, int x1, int y1, const plot_style_t *style ); #endif -- cgit v1.2.3