summaryrefslogtreecommitdiff
path: root/desktop/plotters.h
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2006-07-10 09:52:31 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2006-07-10 09:52:31 +0000
commita47f148f2d9a7f06c7dddaf55d7e89c6e04349ef (patch)
tree1d0db22a55693f79ce5a4f267ebfde00c682d176 /desktop/plotters.h
parent0fe0a709ceeae77cc5d91aab318aec27320e09af (diff)
downloadnetsurf-a47f148f2d9a7f06c7dddaf55d7e89c6e04349ef.tar.gz
netsurf-a47f148f2d9a7f06c7dddaf55d7e89c6e04349ef.tar.bz2
Optimise out redundant group_start and group_end calls (speed up rendering.)
svn path=/trunk/netsurf/; revision=2725
Diffstat (limited to 'desktop/plotters.h')
-rw-r--r--desktop/plotters.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/plotters.h b/desktop/plotters.h
index 65abd1774..d10de3a2a 100644
--- a/desktop/plotters.h
+++ b/desktop/plotters.h
@@ -39,8 +39,8 @@ struct plotter_table {
bool (*bitmap_tile)(int x, int y, int width, int height,
struct bitmap *bitmap, colour bg,
bool repeat_x, bool repeat_y);
- bool (*group_start)(const char *name);
- bool (*group_end)(void);
+ bool (*group_start)(const char *name); /** optional */
+ bool (*group_end)(void); /** optional */
};
/** Current plotters, must be assigned before use. */