HomeSort by relevance Sort by last modified time
    Searched full:dirtyrect (Results 26 - 50 of 98) sorted by null

12 3 4

  /external/webkit/Source/WebCore/platform/graphics/ca/win/
CACFLayerTreeHost.cpp 250 RECT dirtyRect;
251 if (GetUpdateRect(window, &dirtyRect, false))
252 outRects.append(winRectToCGRect(dirtyRect, clientRect));
  /external/webkit/Source/WebCore/platform/graphics/chromium/
LayerChromium.h 109 void setNeedsDisplay(const FloatRect& dirtyRect);
111 virtual void invalidateRect(const FloatRect& dirtyRect) {}
112 const FloatRect& dirtyRect() const { return m_dirtyRect; }
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/win/
NetscapePluginWin.cpp 138 void NetscapePlugin::platformPaint(GraphicsContext* context, const IntRect& dirtyRect, bool)
148 LocalWindowsContext windowsContext(context, dirtyRect, false);
169 RECT dirtyWinRect = dirtyRect;
  /external/webkit/Source/WebCore/platform/graphics/
TiledBackingStore.h 53 void invalidate(const IntRect& dirtyRect);
  /external/webkit/Source/WebCore/platform/graphics/opengl/
TextureMapperGL.h 65 virtual PlatformGraphicsContext* beginPaint(const IntRect& dirtyRect, bool opaque) = 0;
  /external/webkit/Source/WebCore/platform/graphics/qt/
TextureMapperQt.h 35 virtual PlatformGraphicsContext* beginPaint(const IntRect& dirtyRect);
TextureMapperQt.cpp 50 PlatformGraphicsContext* BitmapTextureQt::beginPaint(const IntRect& dirtyRect)
55 m_painter.fillRect(QRect(dirtyRect), Qt::transparent);
TileQt.cpp 85 void Tile::invalidate(const IntRect& dirtyRect)
87 IntRect tileDirtyRect = intersection(dirtyRect, m_rect);
  /external/webkit/Source/WebCore/platform/graphics/win/
WebTiledLayer.h 57 virtual void internalSetNeedsDisplay(const CGRect* dirtyRect);
  /external/webkit/Source/WebKit2/UIProcess/
FindIndicator.h 53 void draw(WebCore::GraphicsContext&, const WebCore::IntRect& dirtyRect);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundlePageOverlay.h 46 typedef void (*WKBundlePageOverlayDrawRectCallback)(WKBundlePageOverlayRef pageOverlay, void* graphicsContext, WKRect dirtyRect, const void* clientInfo);
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
FindController.h 63 virtual void drawRect(PageOverlay*, WebCore::GraphicsContext&, const WebCore::IntRect& dirtyRect);
ChunkedUpdateDrawingArea.cpp 80 IntRect dirtyRect = m_dirtyRect;
84 UpdateChunk updateChunk(dirtyRect);
DrawingAreaImpl.cpp 81 IntRect dirtyRect = rect;
82 dirtyRect.intersect(m_webPage->bounds());
84 if (dirtyRect.isEmpty())
90 m_layerTreeHost->setNonCompositedContentsNeedDisplay(dirtyRect);
97 m_dirtyRegion.unite(dirtyRect);
  /frameworks/base/core/jni/
android_view_Surface.cpp 325 static jobject Surface_lockCanvas(JNIEnv* env, jobject clazz, jobject dirtyRect)
335 if (dirtyRect) {
337 dirty.left = env->GetIntField(dirtyRect, ro.l);
338 dirty.top = env->GetIntField(dirtyRect, ro.t);
339 dirty.right = env->GetIntField(dirtyRect, ro.r);
340 dirty.bottom= env->GetIntField(dirtyRect, ro.b);
395 if (dirtyRect) {
397 env->SetIntField(dirtyRect, ro.l, bounds.left);
398 env->SetIntField(dirtyRect, ro.t, bounds.top);
399 env->SetIntField(dirtyRect, ro.r, bounds.right)
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_view.mm 119 -(void)drawRect:(NSRect)dirtyRect {
120 [super drawRect:dirtyRect];
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
PageClientQt.h 67 virtual void update(const QRect& dirtyRect);
174 virtual void update(const QRect& dirtyRect);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapePlugin.h 132 void platformPaint(WebCore::GraphicsContext*, const WebCore::IntRect& dirtyRect, bool isSnapshot = false);
144 virtual void paint(WebCore::GraphicsContext*, const WebCore::IntRect& dirtyRect);
  /external/chromium/chrome/browser/ui/cocoa/
browser_frame_view.mm 187 + (BOOL)drawWindowThemeInDirtyRect:(NSRect)dirtyRect
263 NSRectFill(dirtyRect);
269 NSRectFillUsingOperation(dirtyRect, operation);
browser_frame_view.h 48 + (BOOL)drawWindowThemeInDirtyRect:(NSRect)dirtyRect
  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapper.h 65 virtual PlatformGraphicsContext* beginPaint(const IntRect& dirtyRect) = 0;
  /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];

Completed in 703 milliseconds

12 3 4