HomeSort by relevance Sort by last modified time
    Searched full:dirtyrect (Results 51 - 75 of 106) sorted by null

1 23 4 5

  /external/chromium/chrome/browser/ui/cocoa/
browser_frame_view.h 48 + (BOOL)drawWindowThemeInDirtyRect:(NSRect)dirtyRect
dock_icon.mm 41 - (void)drawRect:(NSRect)dirtyRect {
theme_install_bubble_view.mm 175 - (void)drawRect:(NSRect)dirtyRect {
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
Surface.cpp 434 IntRect dirtyRect = tile->dirtyArea().getBounds();
441 dirtyRect.intersect(enclosingIntRect(tileRectInDoc));
442 PrerenderedInval* prerenderedInval = content->prerenderForRect(dirtyRect);
448 FloatRect screenDirty = dirtyRect;
Tile.h 113 float scale, const SkRect& dirtyRect,
  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapper.h 65 virtual PlatformGraphicsContext* beginPaint(const IntRect& dirtyRect) = 0;
TextureMapperNode.cpp 446 IntRect dirtyRect = IntRect(0, 0, m_size.width(), m_size.height());
448 dirtyRect.intersect(m_currentContent.needsDisplayRect);
454 GraphicsContext context(m_texture->beginPaint(dirtyRect));
459 layer->paintGraphicsLayerContents(context, dirtyRect);
  /external/webkit/Source/WebKit/win/Interfaces/
IWebUIDelegatePrivate.idl 98 HRESULT drawBackground([in] IWebView* sender, [in] OLE_HANDLE hdc, [in] const RECT* dirtyRect);
  /external/webkit/Source/WebCore/platform/graphics/mac/
WebLayer.mm 153 - (void)setNeedsDisplayInRect:(CGRect)dirtyRect
157 setLayerNeedsDisplayInRect(self, layer->owner(), dirtyRect);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/mac/
NetscapePluginMac.mm 382 void NetscapePlugin::platformPaint(GraphicsContext* context, const IntRect& dirtyRect, bool isSnapshot)
398 event.data.draw.x = dirtyRect.x() - m_frameRect.x();
399 event.data.draw.y = dirtyRect.y() - m_frameRect.y();
400 event.data.draw.width = dirtyRect.width();
401 event.data.draw.height = dirtyRect.height();
  /external/webkit/Source/WebCore/platform/graphics/ca/mac/
PlatformCALayerMac.mm 239 void PlatformCALayer::setNeedsDisplay(const FloatRect* dirtyRect)
242 if (dirtyRect)
243 [m_layer.get() setNeedsDisplayInRect:*dirtyRect];
  /external/webkit/Source/WebKit/chromium/src/
WebPluginContainerImpl.cpp 134 IntRect dirtyRect = rect;
135 dirtyRect.move(renderer->borderLeft() + renderer->paddingLeft(),
137 renderer->repaintRectangle(dirtyRect);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginProxy.cpp 125 void PluginProxy::paint(GraphicsContext* graphicsContext, const IntRect& dirtyRect)
142 IntRect dirtyRectInPluginCoordinates = dirtyRect;
145 m_backingStore->paint(*graphicsContext, dirtyRect.location(), dirtyRectInPluginCoordinates);
PluginView.cpp 516 void PluginView::paint(GraphicsContext* context, const IntRect& dirtyRect)
521 IntRect dirtyRectInWindowCoordinates = parent()->contentsToWindow(dirtyRect);
823 void PluginView::invalidateRect(const IntRect& dirtyRect)
833 IntRect dirtyRectInWindowCoordinates = convertToContainingWindow(dirtyRect);
856 void PluginView::invalidate(const IntRect& dirtyRect)
858 invalidateRect(dirtyRect);
    [all...]
PluginProxy.h 66 virtual void paint(WebCore::GraphicsContext*, const WebCore::IntRect& dirtyRect);
  /external/webkit/Source/WebCore/platform/graphics/chromium/
LayerChromium.cpp 249 void LayerChromium::setNeedsDisplay(const FloatRect& dirtyRect)
256 m_dirtyRect.unite(dirtyRect);
LayerRendererChromium.h 76 void invalidateRootLayerRect(const IntRect& dirtyRect);
  /external/webkit/Source/WebCore/platform/graphics/win/
WebTiledLayer.cpp 105 void WebTiledLayer::internalSetNeedsDisplay(const CGRect* dirtyRect)
110 CACFLayerSetNeedsDisplay(tileAtIndex(i), dirtyRect);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/
NetscapePluginX11.cpp 196 void NetscapePlugin::platformPaint(GraphicsContext* context, const IntRect& dirtyRect, bool /*isSnapshot*/)
228 IntRect exposedRect(dirtyRect);
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
FindController.cpp 293 void FindController::drawRect(PageOverlay* pageOverlay, GraphicsContext& graphicsContext, const IntRect& dirtyRect)
300 graphicsContext.fillRect(dirtyRect, overlayBackgroundColor(fractionFadedIn), ColorSpaceSRGB);
  /external/webkit/Source/WebCore/platform/graphics/ca/
PlatformCALayer.h 87 void setNeedsDisplay(const FloatRect* dirtyRect = 0);
  /external/webkit/Source/WebCore/platform/graphics/opengl/
TextureMapperGL.cpp 229 virtual PlatformGraphicsContext* beginPaint(const IntRect& dirtyRect);
468 PlatformGraphicsContext* BitmapTextureGL::beginPaint(const IntRect& dirtyRect)
471 m_dirtyRect = dirtyRect;
472 return m_buffer->beginPaint(dirtyRect, m_opaque);
  /external/webkit/Source/WebKit2/UIProcess/
FindIndicator.cpp 145 void FindIndicator::draw(GraphicsContext& graphicsContext, const IntRect& dirtyRect)
TiledDrawingAreaProxy.h 124 void requestTileUpdate(int tileID, const WebCore::IntRect& dirtyRect);
  /external/webkit/Source/WebKit/win/
WebView.cpp 791 void WebView::addToDirtyRegion(const IntRect& dirtyRect)
793 // FIXME: We want an assert here saying that the dirtyRect is inside the clienRect,
799 m_backingLayer->setNeedsDisplayInRect(dirtyRect);
804 HRGN newRegion = ::CreateRectRgn(dirtyRect.x(), dirtyRect.y(),
805 dirtyRect.maxX(), dirtyRect.maxY());
902 static void getUpdateRects(HRGN region, const IntRect& dirtyRect, Vector<IntRect>& rects)
913 rects.append(dirtyRect);
921 rects.append(dirtyRect);
    [all...]

Completed in 887 milliseconds

1 23 4 5