From 0b8116ff72145816c3e1d4909038c126327e7bf2 Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Thu, 22 Mar 2018 15:27:02 +0000 Subject: Android: Implemented vector drawing and polygons. Started to implement arc and pie drawing git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12783 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/drivers/Android/Fl_Android_Graphics_Font.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/drivers/Android/Fl_Android_Graphics_Font.cxx') diff --git a/src/drivers/Android/Fl_Android_Graphics_Font.cxx b/src/drivers/Android/Fl_Android_Graphics_Font.cxx index 5a06a0ad7..da8f9ddf4 100644 --- a/src/drivers/Android/Fl_Android_Graphics_Font.cxx +++ b/src/drivers/Android/Fl_Android_Graphics_Font.cxx @@ -517,11 +517,11 @@ void Fl_Android_Graphics_Driver::draw_unscaled(const char* str, int n, int x, in if (str) { int dx, dy, w, h; text_extents_unscaled(str, n, dx, dy, w, h); - pClippingRegion.print("<---- clip text to this"); - Fl_Rect_Region(x+dx, y+dy, w, h).print(str); + //pClippingRegion.print("<---- clip text to this"); + //Fl_Rect_Region(x+dx, y+dy, w, h).print(str); for (const auto &it: pClippingRegion.overlapping(Fl_Rect_Region(x+dx, y+dy, w, h))) { Fl_Rect_Region &r = it->clipped_rect(); - r.print("Clip"); + //r.print("Clip"); const char *e = str + n; for (int i = 0; i < n;) { int incr = 1; -- cgit v1.2.3