summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2011-08-05 01:10:36 +0000
committerOle Loots <ole@monochrom.net>2011-08-05 01:10:36 +0000
commita1f7517f39a9ee44cf056ddb2679ece3fbdd6a2f (patch)
treee780de9358836ef2a9958d72129a4a93b86ed7c7
parentd7d48c34e6d65c2358202a9b1e09c44173140851 (diff)
downloadnetsurf-a1f7517f39a9ee44cf056ddb2679ece3fbdd6a2f.tar.gz
netsurf-a1f7517f39a9ee44cf056ddb2679ece3fbdd6a2f.tar.bz2
edit comments
svn path=/trunk/netsurf/; revision=12634
-rwxr-xr-xatari/plot/plotter.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/atari/plot/plotter.h b/atari/plot/plotter.h
index 3da927b60..dea333804 100755
--- a/atari/plot/plotter.h
+++ b/atari/plot/plotter.h
@@ -188,13 +188,17 @@ struct s_gem_plotter
int vdi_handle;
struct s_vdi_sysinfo * scr;
void * priv_data;
- int bpp_virt; /* bit depth of framebuffer */
+ /* bit depth of framebuffers: */
+ int bpp_virt;
struct rect clipping;
struct s_frame_buf fbuf[MAX_FRAMEBUFS];
- int cfbi; /* current framebuffer index */
+ /* current framebuffer index: */
+ int cfbi;
FONT_PLOTTER font_plotter;
+ /* set new dimensions (realloc memory): */
_pmf_resize resize;
+ /* set drawing origin: */
_pmf_move move;
_pmf_lock lock;
_pmf_unlock unlock;
@@ -212,8 +216,11 @@ struct s_gem_plotter
_pmf_rectangle rectangle;
_pmf_polygon polygon;
_pmf_path path;
+ /* scale an netsurf bitmap: */
_pmf_bitmap_resize bitmap_resize;
+ /* plot an netsurf bitmap into the buffer / screen: */
_pmf_bitmap bitmap;
+ /* plot an mfdb into the buffer / screen: */
_pmf_plot_mfdb plot_mfdb;
_pmf_text text;
_pmf_dtor dtor;