summaryrefslogtreecommitdiff
path: root/amiga/plotters.c
diff options
context:
space:
mode:
Diffstat (limited to 'amiga/plotters.c')
-rwxr-xr-xamiga/plotters.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/amiga/plotters.c b/amiga/plotters.c
index c990ddd9f..3460e5936 100755
--- a/amiga/plotters.c
+++ b/amiga/plotters.c
@@ -63,7 +63,7 @@ const struct plotter_table amiplot = {
NULL, //ami_group_end,
NULL, //ami_flush, // optional
ami_path,
- false // option_knockout
+ true // option_knockout
};
#ifdef NS_AMIGA_CAIRO
@@ -103,11 +103,14 @@ void ami_cairo_set_dashed(cairo_t *cr)
bool ami_clg(colour c)
{
+ p96RectFill(currp,0,0,scrn->Width-1,scrn->Height-1,
+ p96EncodeColor(RGBFB_A8B8G8R8,c));
+/*
SetRPAttrs(currp,RPTAG_BPenColor,p96EncodeColor(RGBFB_A8B8G8R8,c),
TAG_DONE);
Move(currp,0,0);
ClearScreen(currp);
-
+*/
return true;
}