From 69491c3dd52dffcb3fdbaffeffb63483fbd15088 Mon Sep 17 00:00:00 2001 From: "gtm.daemon" Date: Tue, 25 May 2010 21:05:40 +0000 Subject: [Author: dmaclach] Makes the rounded rect calls fit the CG calling conventions. R=thomasvl --- iPhone/GTMRoundedRectPath.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'iPhone/GTMRoundedRectPath.h') diff --git a/iPhone/GTMRoundedRectPath.h b/iPhone/GTMRoundedRectPath.h index 1bc8a08..2b20fec 100644 --- a/iPhone/GTMRoundedRectPath.h +++ b/iPhone/GTMRoundedRectPath.h @@ -18,5 +18,31 @@ #import +// Inscribe a round rectangle inside of rectangle |rect| with a corner radius +// of |radius| +// +// Args: +// rect: outer rectangle to inscribe into +// radius: radius of the corners. |radius| is clamped internally +// to be no larger than the smaller of half |rect|'s width or height +void GTMCGContextAddRoundRect(CGContextRef context, + CGRect rect, + CGFloat radius); + +// Adds a path which is a round rectangle inscribed inside of rectangle |rect| +// with a corner radius of |radius| +// +// Args: +// path: path to add the rounded rectangle to +// m: matrix modifying the round rect +// rect: outer rectangle to inscribe into +// radius: radius of the corners. |radius| is clamped internally +// to be no larger than the smaller of half |rect|'s width or height +void GTMCGPathAddRoundRect(CGMutablePathRef path, + const CGAffineTransform *m, + CGRect rect, + CGFloat radius); + // Allocates a new rounded corner rectangle path. +// DEPRECATED. Please use one of the above. CGPathRef GTMCreateRoundedRectPath(CGRect rect, CGFloat radius); -- cgit v1.2.3