HomeSort by relevance Sort by last modified time
    Searched refs:layerContext (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebKit2/UIProcess/mac/
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(), m_size.height()));
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/
GraphicsContextCG.cpp 559 CGContextRef layerContext = CGLayerGetContext(layer);
561 CGContextTranslateCTM(layerContext, -rect.x(), -rect.y());
562 CGContextBeginPath(layerContext);
563 CGContextAddPath(layerContext, path.platformPath());
564 CGContextConcatCTM(layerContext, m_state.fillGradient->gradientSpaceTransform());
567 CGContextEOClip(layerContext);
569 CGContextClip(layerContext);
571 m_state.fillGradient->paint(layerContext);
619 CGContextRef layerContext = CGLayerGetContext(layer);
620 CGContextSetLineWidth(layerContext, lineWidth)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/mac/
WebLayer.mm 61 NSGraphicsContext* layerContext = [NSGraphicsContext graphicsContextWithGraphicsPort:context flipped:YES];
62 [NSGraphicsContext setCurrentContext:layerContext];

Completed in 884 milliseconds