Skip to content
Snippets Groups Projects
Commit f09d0f99 authored by Timur Pocheptsov's avatar Timur Pocheptsov
Browse files

Remove TStopwatch.

git-svn-id: http://root.cern.ch/svn/root/trunk@43501 27541ba8-7e3a-0410-8455-c3a389f83636
parent 4cba052b
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,6 @@
#import "IOSSelectionMarkers.h"
#import "SelectionView.h"
#import "TStopwatch.h"
#import "PadView.h"
#import "TAxis.h"
......@@ -62,15 +61,10 @@
//____________________________________________________________________________________________________
- (void)drawRect : (CGRect)rect
{
CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextSaveGState(ctx);
TStopwatch timer;
timer.Start();
const CGRect intersection = CGRectIntersection(rect, self.superview.superview.bounds);
const BOOL useShadows = CGRectEqualToRect(intersection, rect);
......@@ -103,9 +97,6 @@
else
CGContextFillRect(ctx, CGRectMake(0.f, panStart.y, rect.size.width, currentPanPoint.y - panStart.y));
}
timer.Stop();
NSLog(@"time %g", timer.RealTime());
}
//____________________________________________________________________________________________________
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment