Searched refs:m_bitmapContext (Results 1 – 4 of 4) sorted by relevance
/external/webkit/Source/WebKit2/UIProcess/mac/ |
D | 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… 75 m_bitmapContext = nullptr; 81 if (!m_bitmapContext) { 84 …m_bitmapContext.adoptCF(CGBitmapContextCreate(0, m_size.width(), m_size.height(), 8, m_size.width(… 86 CGContextSetBlendMode(m_bitmapContext.get(), kCGBlendModeCopy); 89 CGContextTranslateCTM(m_bitmapContext.get(), 0, m_size.height()); 90 CGContextScaleCTM(m_bitmapContext.get(), 1, -1); [all …]
|
D | ChunkedUpdateDrawingAreaProxyMac.mm | 47 if (m_bitmapContext) 52 …m_bitmapContext.adoptCF(CGBitmapContextCreate(0, viewSize.width(), viewSize.height(), 8, viewSize.… 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 …]
|
/external/webkit/Source/WebKit2/UIProcess/ |
D | BackingStore.h | 80 RetainPtr<CGContextRef> m_bitmapContext; variable
|
D | ChunkedUpdateDrawingAreaProxy.h | 95 RetainPtr<CGContextRef> m_bitmapContext; variable
|