From 77985f4faabb1abf1b75252e18f5a535b7e9b48b Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sun, 20 Feb 2011 15:32:20 +0000 Subject: Use core thumbnail_redraw() function in BeOS front end. svn path=/trunk/netsurf/; revision=11722 --- beos/beos_thumbnail.cpp | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'beos/beos_thumbnail.cpp') diff --git a/beos/beos_thumbnail.cpp b/beos/beos_thumbnail.cpp index fc966156f..62b60175d 100644 --- a/beos/beos_thumbnail.cpp +++ b/beos/beos_thumbnail.cpp @@ -70,7 +70,6 @@ bool thumbnail_create(hlcache_handle *content, struct bitmap *bitmap, int big_width; int big_height; int depth; - struct rect clip; assert(content); assert(bitmap); @@ -121,17 +120,8 @@ bool thumbnail_create(hlcache_handle *content, struct bitmap *bitmap, plot_scale = thumbnail_get_redraw_scale(content, big_width) nsbeos_plot_set_scale(plot_scale); - plot.rectangle(0, 0, big_width, big_height, - plot_style_fill_white); - - clip.x0 = 0; - clip.y0 = 0; - clip.x1 = big_width; - clip.y1 = big_height; - /* render the content */ - content_redraw(content, 0, 0, big_width, big_height, - &clip, plot_scale, 0xFFFFFF); + thumbnail_redraw(content, big_width, big_height); view->Sync(); view->UnlockLooper(); -- cgit v1.2.3