HomeSort by relevance Sort by last modified time
    Searched full:drawcontext (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/platform/win/
DragImageCGWin.cpp 128 CGContextRef drawContext = 0;
132 hbmp = allocImage(workingDC, img->size(), &drawContext);
137 if (!drawContext) {
148 CGContextScaleCTM(drawContext, 1, -1);
149 CGContextSetFillColor(drawContext, white);
150 CGContextFillRect(drawContext, rect);
151 CGContextSetBlendMode(drawContext, kCGBlendModeNormal);
152 CGContextDrawImage(drawContext, rect, srcImage);
153 CGContextRelease(drawContext);
DragImageCairoWin.cpp 161 PlatformContextCairo* drawContext = 0;
162 hbmp = allocImage(workingDC, img->size(), &drawContext);
166 if (!drawContext) {
171 cairo_t* cr = drawContext->cr();
181 deallocContext(drawContext);

Completed in 41 milliseconds