Home | History | Annotate | Download | only in mac

Lines Matching refs:updateChunk

29 #include "UpdateChunk.h"
41 void ChunkedUpdateDrawingArea::paintIntoUpdateChunk(UpdateChunk* updateChunk)
48 RetainPtr<CGContextRef> bitmapContext(AdoptCF, CGBitmapContextCreate(updateChunk->data(), updateChunk->rect().width(), updateChunk->rect().height(), 8, updateChunk->rect().width() * 4, colorSpace.get(), kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Host));
51 CGContextTranslateCTM(bitmapContext.get(), 0.0, updateChunk->rect().height());
56 graphicsContext.translate(-updateChunk->rect().x(), -updateChunk->rect().y());
58 m_webPage->drawRect(graphicsContext, updateChunk->rect());