From a47f148f2d9a7f06c7dddaf55d7e89c6e04349ef Mon Sep 17 00:00:00 2001 From: Richard Wilson Date: Mon, 10 Jul 2006 09:52:31 +0000 Subject: Optimise out redundant group_start and group_end calls (speed up rendering.) svn path=/trunk/netsurf/; revision=2725 --- desktop/plotters.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'desktop/plotters.h') 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. */ -- cgit v1.2.3