Lines Matching refs:rAquaGraphics
240 AquaSalGraphics& rAquaGraphics = static_cast<AquaSalGraphics&>(rGraphics); in DrawText() local
244 || !rAquaGraphics.CheckContext() ) in DrawText()
250 CGContextSaveGState( rAquaGraphics.mrContext ); in DrawText()
251 CGContextScaleCTM( rAquaGraphics.mrContext, +mfFontScale, -mfFontScale ); in DrawText()
252 CGContextSetShouldAntialias( rAquaGraphics.mrContext, !rAquaGraphics.mbNonAntialiasedText ); in DrawText()
260 CGContextRotateCTM( rAquaGraphics.mrContext, +mfFontRotation ); in DrawText()
266 CGContextSetTextPosition( rAquaGraphics.mrContext, aTextPos.x, aTextPos.y ); in DrawText()
269 if( rAquaGraphics.IsWindowGraphics() ) in DrawText()
271 const CGRect aInkRect = CTLineGetImageBounds( mpCTLine, rAquaGraphics.mrContext ); in DrawText()
272 …const CGRect aRefreshRect = CGContextConvertRectToDeviceSpace( rAquaGraphics.mrContext, aInkRect ); in DrawText()
273 rAquaGraphics.RefreshRect( aRefreshRect ); in DrawText()
277 CGContextSetFillColor( rAquaGraphics.mrContext, rAquaGraphics.maTextColor.AsArray() ); in DrawText()
280 CTLineDraw( mpCTLine, rAquaGraphics.mrContext ); in DrawText()
283 CGContextRestoreGState( rAquaGraphics.mrContext ); in DrawText()
517 AquaSalGraphics& rAquaGraphics = static_cast<AquaSalGraphics&>(rGraphics); in GetBoundRect() local
518 CGRect aMacRect = CTLineGetImageBounds( mpCTLine, rAquaGraphics.mrContext ); in GetBoundRect()
519 CGPoint aMacPos = CGContextGetTextPosition( rAquaGraphics.mrContext ); in GetBoundRect()