summaryrefslogtreecommitdiff
path: root/frontends/amiga/plotters.h
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2017-02-13 17:46:20 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2017-02-13 17:46:20 +0000
commit075e9c0258bd75307a90b3e6bd576742bf212b08 (patch)
treed915cc2b8788b585e8123e9715ff623eed0f1717 /frontends/amiga/plotters.h
parentedaa9c29f22a550ddc7c8e1f02ff6d9dedf9a5b1 (diff)
downloadnetsurf-075e9c0258bd75307a90b3e6bd576742bf212b08.tar.gz
netsurf-075e9c0258bd75307a90b3e6bd576742bf212b08.tar.bz2
Alloc gui_global structure when initialising
Diffstat (limited to 'frontends/amiga/plotters.h')
-rw-r--r--frontends/amiga/plotters.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/frontends/amiga/plotters.h b/frontends/amiga/plotters.h
index b92cdd4de..c82208f53 100644
--- a/frontends/amiga/plotters.h
+++ b/frontends/amiga/plotters.h
@@ -45,11 +45,13 @@ struct gui_globals
extern const struct plotter_table amiplot;
-void ami_init_layers(struct gui_globals *gg, ULONG width, ULONG height, bool force32bit);
-void ami_free_layers(struct gui_globals *gg);
void ami_clearclipreg(struct gui_globals *gg);
void ami_plot_clear_bbox(struct RastPort *rp, struct IBox *bbox);
void ami_plot_release_pens(struct MinList *shared_pens);
bool ami_plot_screen_is_palettemapped(void);
+struct gui_globals *ami_plot_ra_alloc(ULONG width, ULONG height, bool force32bit);
+void ami_plot_ra_free(struct gui_globals *gg);
+struct BitMap *ami_plot_ra_get_bitmap(struct gui_globals *gg);
+
#endif