From 8d5091fab70dbc26f534daed8fed46da1fc75ede Mon Sep 17 00:00:00 2001 From: Ole Loots Date: Fri, 22 Apr 2011 10:42:04 +0000 Subject: Added option for knockout rendering. svn path=/trunk/netsurf/; revision=12220 --- atari/plot.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'atari/plot.c') diff --git a/atari/plot.c b/atari/plot.c index 536b4dd5a..16e19149c 100755 --- a/atari/plot.c +++ b/atari/plot.c @@ -89,6 +89,14 @@ int atari_plotter_finalise( void ) delete_font_plotter( fplotter ); } +void plot_set_knockout( int set ){ + if( set == 0 ) { + plot.option_knockout = false; + } else { + plot.option_knockout = true; + } +} + bool plot_rectangle( int x0, int y0, int x1, int y1, const plot_style_t *style ) { -- cgit v1.2.3