summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2010-08-14 09:33:36 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2010-08-14 09:33:36 +0000
commita84a8618f1ea1636329cc75cc646560cf0d3ead5 (patch)
tree736461cea7400a8fdb41d3a1144ea0d7d980ee4e
parenta2276dc6ba123b82c2966c5afca0b59e16f43b85 (diff)
downloadnetsurf-a84a8618f1ea1636329cc75cc646560cf0d3ead5.tar.gz
netsurf-a84a8618f1ea1636329cc75cc646560cf0d3ead5.tar.bz2
Remove printfs from bitmap plotter.
svn path=/trunk/netsurf/; revision=10699
-rw-r--r--beos/beos_plotters.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/beos/beos_plotters.cpp b/beos/beos_plotters.cpp
index 120d7f935..e3372963e 100644
--- a/beos/beos_plotters.cpp
+++ b/beos/beos_plotters.cpp
@@ -561,13 +561,12 @@ bool nsbeos_plot_bitmap(int x, int y, int width, int height,
if (!repeat_x && repeat_y)
pretiled = nsbeos_bitmap_get_pretile_y(bitmap);
primary = nsbeos_bitmap_get_primary(bitmap);
+
/* use the primary and pretiled widths to scale the w/h provided */
-printf("plot_tile: -> %dx%d\n", width, height);
width *= pretiled->Bounds().Width() + 1;
width /= primary->Bounds().Width() + 1;
height *= pretiled->Bounds().Height() + 1;
height /= primary->Bounds().Height() + 1;
-printf("plot_tile: -> %dx%d\n", width, height);
BView *view;