HomeSort by relevance Sort by last modified time
    Searched defs:graphicsContext (Results 1 - 8 of 8) sorted by null

  /external/webkit/Source/WebKit2/Shared/API/c/cg/
WKImageCG.cpp 32 #include <WebCore/GraphicsContext.h>
46 OwnPtr<GraphicsContext> graphicsContext = webImage->bitmap()->createGraphicsContext();
47 CGContextDrawImage(graphicsContext->platformContext(), CGRectMake(0, 0, imageSize.width(), imageSize.height()), imageRef);
  /external/webkit/Source/WebKit2/Shared/cg/
ShareableBitmapCG.cpp 29 #include <WebCore/GraphicsContext.h>
48 PassOwnPtr<GraphicsContext> ShareableBitmap::createGraphicsContext()
62 return adoptPtr(new GraphicsContext(bitmapContext.get()));
65 void ShareableBitmap::paint(WebCore::GraphicsContext& context, const IntPoint& dstPoint, const IntRect& srcRect)
72 OwnPtr<GraphicsContext> graphicsContext = createGraphicsContext();
73 RetainPtr<CGImageRef> image(AdoptCF, CGBitmapContextCreateImage(graphicsContext->platformContext()));
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
DrawingAreaImpl.cpp 36 #include <WebCore/GraphicsContext.h>
595 OwnPtr<GraphicsContext> graphicsContext = bitmap->createGraphicsContext();
599 graphicsContext->translate(-bounds.x(), -bounds.y());
602 m_webPage->drawRect(*graphicsContext, rects[i]);
604 m_webPage->drawPageOverlay(*graphicsContext, rects[i]);
WebPage.cpp 642 void WebPage::drawRect(GraphicsContext& graphicsContext, const IntRect& rect)
644 graphicsContext.save();
645 graphicsContext.clip(rect);
646 m_mainFrame->coreFrame()->view()->paint(&graphicsContext, rect);
647 graphicsContext.restore();
650 void WebPage::drawPageOverlay(GraphicsContext& graphicsContext, const IntRect& rect)
654 graphicsContext.save();
655 graphicsContext.clip(rect)
    [all...]
  /external/webkit/Tools/WinLauncher/
WinLauncher.cpp 357 void* graphicsContext = 0;
360 framePrivate->spoolPages(printDC, page, page, graphicsContext);
  /external/webkit/Source/WebKit2/PluginProcess/
PluginControllerProxy.cpp 42 #include <WebCore/GraphicsContext.h>
150 OwnPtr<GraphicsContext> graphicsContext = m_backingStore->createGraphicsContext();
152 graphicsContext->translate(-m_frameRect.x(), -m_frameRect.y());
155 graphicsContext->clearRect(dirtyRect);
157 m_plugin->paint(graphicsContext.get(), dirtyRect);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginProxy.cpp 43 #include <WebCore/GraphicsContext.h>
125 void PluginProxy::paint(GraphicsContext* graphicsContext, const IntRect& dirtyRect)
134 OwnPtr<WebCore::GraphicsContext> graphicsContext = m_backingStore->createGraphicsContext();
135 graphicsContext->setCompositeOperation(CompositeCopy);
137 m_pluginBackingStore->paint(*graphicsContext, IntPoint(), IntRect(0, 0, m_frameRect.width(), m_frameRect.height()));
145 m_backingStore->paint(*graphicsContext, dirtyRect.location(), dirtyRectInPluginCoordinates);
470 OwnPtr<GraphicsContext> graphicsContext = m_backingStore->createGraphicsContext()
    [all...]
  /prebuilts/tools/darwin-x86_64/swt/
swt.jar 

Completed in 223 milliseconds