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

  /external/webkit/Source/WebKit2/UIProcess/mac/
ChunkedUpdateDrawingAreaProxyMac.mm 47 if (m_bitmapContext)
52 m_bitmapContext.adoptCF(CGBitmapContextCreate(0, viewSize.width(), viewSize.height(), 8, viewSize.width() * 4, colorSpace.get(), kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host));
55 CGContextTranslateCTM(m_bitmapContext.get(), 0, viewSize.height());
56 CGContextScaleCTM(m_bitmapContext.get(), 1, -1);
61 m_bitmapContext = 0;
66 if (!m_bitmapContext)
79 RetainPtr<CGImageRef> image(AdoptCF, CGBitmapContextCreateImage(m_bitmapContext.get()));
93 CGContextSaveGState(m_bitmapContext.get());
96 CGContextSetBlendMode(m_bitmapContext.get(), kCGBlendModeCopy);
99 CGContextScaleCTM(m_bitmapContext.get(), 1, -1)
    [all...]
BackingStoreMac.mm 52 ASSERT(m_bitmapContext);
53 paintBitmapContext(context, m_bitmapContext.get(), rect.location(), rect);
72 if (m_bitmapContext) {
74 paintBitmapContext(layerContext, m_bitmapContext.get(), CGPointZero, CGRectMake(0, 0, m_size.width(), m_size.height()));
75 m_bitmapContext = nullptr;
81 if (!m_bitmapContext) {
84 m_bitmapContext.adoptCF(CGBitmapContextCreate(0, m_size.width(), m_size.height(), 8, m_size.width() * 4, colorSpace.get(), kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host));
86 CGContextSetBlendMode(m_bitmapContext.get(), kCGBlendModeCopy);
89 CGContextTranslateCTM(m_bitmapContext.get(), 0, m_size.height());
90 CGContextScaleCTM(m_bitmapContext.get(), 1, -1)
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
BackingStore.h 80 RetainPtr<CGContextRef> m_bitmapContext;
ChunkedUpdateDrawingAreaProxy.h 95 RetainPtr<CGContextRef> m_bitmapContext;

Completed in 89 milliseconds