Searched refs:layerContext (Results 1 – 3 of 3) sorted by relevance
/external/webkit/Source/WebKit2/UIProcess/mac/ |
D | BackingStoreMac.mm | 64 CGContextRef layerContext = CGLayerGetContext(m_cgLayer.get()); 66 CGContextSetBlendMode(layerContext, kCGBlendModeCopy); 69 CGContextTranslateCTM(layerContext, 0, m_size.height()); 70 CGContextScaleCTM(layerContext, 1, -1); 74 …paintBitmapContext(layerContext, m_bitmapContext.get(), CGPointZero, CGRectMake(0, 0, m_size.width… 78 return layerContext; 122 CGContextRef layerContext = CGLayerGetContext(m_cgLayer.get()); 125 CGContextSaveGState(layerContext); 126 CGContextClipToRect(layerContext, scrollRect); 127 CGContextScaleCTM(layerContext, 1, -1); [all …]
|
/external/webkit/Source/WebCore/platform/graphics/cg/ |
D | GraphicsContextCG.cpp | 559 CGContextRef layerContext = CGLayerGetContext(layer); in fillPath() local 561 CGContextTranslateCTM(layerContext, -rect.x(), -rect.y()); in fillPath() 562 CGContextBeginPath(layerContext); in fillPath() 563 CGContextAddPath(layerContext, path.platformPath()); in fillPath() 564 CGContextConcatCTM(layerContext, m_state.fillGradient->gradientSpaceTransform()); in fillPath() 567 CGContextEOClip(layerContext); in fillPath() 569 CGContextClip(layerContext); in fillPath() 571 m_state.fillGradient->paint(layerContext); in fillPath() 619 CGContextRef layerContext = CGLayerGetContext(layer); in strokePath() local 620 CGContextSetLineWidth(layerContext, lineWidth); in strokePath() [all …]
|
/external/webkit/Source/WebCore/platform/graphics/mac/ |
D | WebLayer.mm | 61 …NSGraphicsContext* layerContext = [NSGraphicsContext graphicsContextWithGraphicsPort:context flipp… 62 [NSGraphicsContext setCurrentContext:layerContext];
|