summaryrefslogtreecommitdiff
path: root/amiga/plotters.h
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2015-04-25 13:13:30 +0100
committerChris Young <chris@unsatisfactorysoftware.co.uk>2015-04-25 13:13:30 +0100
commitc8caf08ef16297379754d4a70e80cef3a0fde820 (patch)
treeb3622ee7aa25696331d0c74814499a0aa54e138d /amiga/plotters.h
parent5b5e621c7ac1bedc8c153b8ab99d47224b537497 (diff)
downloadnetsurf-c8caf08ef16297379754d4a70e80cef3a0fde820.tar.gz
netsurf-c8caf08ef16297379754d4a70e80cef3a0fde820.tar.bz2
As the content interface is now doing the scaling, we render to a native BitMap and then copy that to the RGBA32 bitmap buffer without re-scaling.
The native BitMap is currently discarded and will be re-created when it is displayed.
Diffstat (limited to 'amiga/plotters.h')
-rw-r--r--amiga/plotters.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/amiga/plotters.h b/amiga/plotters.h
index f286b98c5..49afbe177 100644
--- a/amiga/plotters.h
+++ b/amiga/plotters.h
@@ -33,6 +33,8 @@ struct gui_globals
APTR tmprasbuf;
struct Rectangle rect;
struct MinList *shared_pens;
+ int width; /* size of bm and */
+ int height; /* associated memory */
};
extern const struct plotter_table amiplot;