summaryrefslogtreecommitdiff
path: root/atari/plot.c
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2011-12-10 00:38:21 +0000
committerOle Loots <ole@monochrom.net>2011-12-10 00:38:21 +0000
commit556a0fe484316a02d3e16c5f0007f7a0c693ded1 (patch)
tree4c36f8384b1816e3baa885fa6cb660d6f688cf39 /atari/plot.c
parentc22038bed87c471e9eab71ef189c9013cf227294 (diff)
downloadnetsurf-556a0fe484316a02d3e16c5f0007f7a0c693ded1.tar.gz
netsurf-556a0fe484316a02d3e16c5f0007f7a0c693ded1.tar.bz2
Removed option to configure knockout rendering, removed suppress_images option from frontend.
svn path=/trunk/netsurf/; revision=13264
Diffstat (limited to 'atari/plot.c')
-rwxr-xr-xatari/plot.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/atari/plot.c b/atari/plot.c
index 63c65e0ed..465ceb7d5 100755
--- a/atari/plot.c
+++ b/atari/plot.c
@@ -92,15 +92,6 @@ int atari_plotter_finalise( void )
delete_font_plotter( fplotter );
}
-void plot_set_knockout( int set ){
- bool * x = (bool*)&atari_plotters.option_knockout;
- if( set == 0 ) {
- *x = false;
- } else {
- *x = true;
- }
-}
-
bool plot_rectangle( int x0, int y0, int x1, int y1,
const plot_style_t *style )
{
@@ -164,10 +155,6 @@ static bool plot_bitmap(int x, int y, int width, int height,
int bmpw,bmph;
struct rect clip;
- if( option_suppress_images != 0 ) {
- return( true );
- }
-
bmpw = bitmap_get_width(bitmap);
bmph = bitmap_get_height(bitmap);
@@ -255,5 +242,5 @@ const struct plotter_table atari_plotters = {
.flush = NULL,
.group_start = NULL,
.group_end = NULL,
- .option_knockout = false
+ .option_knockout = true
};