From e6935ce29c947222577917211043fb30fbd5f287 Mon Sep 17 00:00:00 2001 From: Manolo Gouy Date: Tue, 15 Jun 2010 17:44:51 +0000 Subject: Removed commented-out debugging statements git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7643 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_Double_Window.cxx | 3 --- 1 file changed, 3 deletions(-) (limited to 'src') diff --git a/src/Fl_Double_Window.cxx b/src/Fl_Double_Window.cxx index 88ccfd962..8d9acb65f 100644 --- a/src/Fl_Double_Window.cxx +++ b/src/Fl_Double_Window.cxx @@ -143,7 +143,6 @@ void fl_copy_offscreen(int x,int y,int w,int h,HBITMAP bitmap,int srcx,int srcy) DeleteDC(new_gc); } -//#include void fl_copy_offscreen_with_alpha(int x,int y,int w,int h,HBITMAP bitmap,int srcx,int srcy) { HDC new_gc = CreateCompatibleDC(fl_gc); int save = SaveDC(new_gc); @@ -152,10 +151,8 @@ void fl_copy_offscreen_with_alpha(int x,int y,int w,int h,HBITMAP bitmap,int src // first try to alpha blend // if to printer, always try alpha_blend int to_display = Fl_Surface_Device::surface()->type() == Fl_Display_Device::device_type; // true iff display output -//fl_alert("to_display=%d ",to_display); if ( (to_display && fl_can_do_alpha_blending()) || Fl_Surface_Device::surface()->type() == Fl_Printer::device_type) { alpha_ok = fl_alpha_blend(fl_gc, x, y, w, h, new_gc, srcx, srcy, w, h, blendfunc); -//fl_alert("alpha_ok=%d",alpha_ok); } // if that failed (it shouldn't), still copy the bitmap over, but now alpha is 1 if (!alpha_ok) { -- cgit v1.2.3