HomeSort by relevance Sort by last modified time
    Searched refs:dirtyRect (Results 1 - 25 of 95) sorted by null

1 2 3 4

  /external/webkit/Source/WebKit/android/plugins/
ANPSurface_npapi.h 34 to be written to. The dirtyRect param specifies which portion of the
35 bitmap will be written to. If the dirtyRect is NULL then the entire
40 bool (*lock)(JNIEnv* env, jobject surface, ANPBitmap* bitmap, ANPRectI* dirtyRect);
43 those inside the dirtyRect are written to the screen.
ANPSurfaceInterface.cpp 93 static bool anp_lock(JNIEnv* env, jobject surfaceView, ANPBitmap* bitmap, ANPRectI* dirtyRect) {
105 if (dirtyRect) {
106 Rect rect(dirtyRect->left, dirtyRect->top, dirtyRect->right, dirtyRect->bottom);
122 if (dirtyRect) {
124 dirtyRect->left = dirtyBounds.left;
125 dirtyRect->right = dirtyBounds.right;
126 dirtyRect->top = dirtyBounds.top
    [all...]
  /external/webkit/Source/WebCore/platform/chromium/
FramelessScrollView.cpp 49 IntRect dirtyRect = rect;
50 dirtyRect.move(scrollbar->x(), scrollbar->y());
51 invalidateRect(dirtyRect);
  /external/chromium/chrome/browser/ui/cocoa/
browser_frame_view.h 48 + (BOOL)drawWindowThemeInDirtyRect:(NSRect)dirtyRect
  /frameworks/base/core/java/android/view/
GLES20RenderLayer.java 113 void redrawLater(DisplayList displayList, Rect dirtyRect) {
116 dirtyRect.left, dirtyRect.top, dirtyRect.right, dirtyRect.bottom);
  /development/samples/BrowserPlugin/jni/paint/
PaintPlugin.h 41 ANPCanvas* getCanvas(ANPRectI* dirtyRect = NULL);
42 ANPCanvas* getCanvas(ANPRectF* dirtyRect);
PaintPlugin.cpp 96 ANPCanvas* PaintPlugin::getCanvas(ANPRectI* dirtyRect) {
101 !gSurfaceI.lock(env, m_surface, &bitmap, dirtyRect)) {
110 if (dirtyRect) {
112 clipR.left = dirtyRect->left;
113 clipR.top = dirtyRect->top;
114 clipR.right = dirtyRect->right;
115 clipR.bottom = dirtyRect->bottom;
122 ANPCanvas* PaintPlugin::getCanvas(ANPRectF* dirtyRect) {
125 newRect.left = (int) dirtyRect->left;
126 newRect.top = (int) dirtyRect->top
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/mac/
WebTiledLayer.mm 67 - (void)setNeedsDisplayInRect:(CGRect)dirtyRect
71 setLayerNeedsDisplayInRect(self, layer->owner(), dirtyRect);
  /external/webkit/Source/WebCore/platform/graphics/win/
WebLayer.h 53 virtual void internalSetNeedsDisplay(const CGRect* dirtyRect);
WebLayer.cpp 39 void WebLayer::internalSetNeedsDisplay(const CGRect* dirtyRect)
52 if (dirtyRect && m_owner->contentsOrientation() == WebCore::GraphicsLayer::CompositingCoordinatesTopDown) {
53 CGRect flippedDirtyRect = *dirtyRect;
60 WKCACFLayer::internalSetNeedsDisplay(dirtyRect);
WebTiledLayer.h 57 virtual void internalSetNeedsDisplay(const CGRect* dirtyRect);
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
PageOverlay.h 53 virtual void drawRect(PageOverlay*, WebCore::GraphicsContext&, const WebCore::IntRect& dirtyRect) = 0;
63 void setNeedsDisplay(const WebCore::IntRect& dirtyRect);
66 void drawRect(WebCore::GraphicsContext&, const WebCore::IntRect& dirtyRect);
PageOverlay.cpp 89 void PageOverlay::setNeedsDisplay(const IntRect& dirtyRect)
92 m_webPage->drawingArea()->setPageOverlayNeedsDisplay(dirtyRect);
100 void PageOverlay::drawRect(GraphicsContext& graphicsContext, const IntRect& dirtyRect)
103 IntRect paintRect = intersection(dirtyRect, bounds());
TiledDrawingArea.cpp 82 IntRect dirtyRect = m_dirtyRect;
85 WebProcess::shared().connection()->deprecatedSend(DrawingAreaProxyLegacyMessage::Invalidate, m_webPage->pageID(), CoreIPC::In(dirtyRect));
137 void TiledDrawingArea::updateTile(int tileID, const IntRect& dirtyRect, float scale)
141 UpdateChunk updateChunk(dirtyRect);
156 updateTile(update.tileID, update.dirtyRect, update.scale);
197 if (!arguments->decode(CoreIPC::Out(update.tileID, update.dirtyRect, update.scale)))
201 it->second.dirtyRect.unite(update.dirtyRect);
TiledDrawingArea.h 67 void updateTile(int tileID, const WebCore::IntRect& dirtyRect, float scale);
81 WebCore::IntRect dirtyRect;
FindController.h 63 virtual void drawRect(PageOverlay*, WebCore::GraphicsContext&, const WebCore::IntRect& dirtyRect);
  /external/webkit/Source/WebKit2/UIProcess/qt/
TiledDrawingAreaTileQt.cpp 80 void TiledDrawingAreaTile::invalidate(const IntRect& dirtyRect)
82 IntRect tileDirtyRect = intersection(dirtyRect, m_rect);
147 IntRect dirtyRect = m_dirtyRegion.boundingRect();
151 qDebug() << "requesting tile update id=" << m_ID << " rect=" << QRect(dirtyRect) << " scale=" << m_proxy->contentsScale();
155 m_proxy->requestTileUpdate(m_ID, dirtyRect);
  /frameworks/base/core/jni/
android_view_TextureView.cpp 124 jint nativeWindow, jobject canvas, jobject dirtyRect) {
133 if (dirtyRect) {
134 rect.left = GET_INT(dirtyRect, gRectClassInfo.left);
135 rect.top = GET_INT(dirtyRect, gRectClassInfo.top);
136 rect.right = GET_INT(dirtyRect, gRectClassInfo.right);
137 rect.bottom = GET_INT(dirtyRect, gRectClassInfo.bottom);
168 if (dirtyRect) {
169 INVOKEV(dirtyRect, gRectClassInfo.set,
  /external/webkit/Source/WebCore/platform/mac/
WidgetMac.mm 257 IntRect dirtyRect = r;
258 dirtyRect.move(-transformOrigin.x(), -transformOrigin.y());
260 dirtyRect.setY([view bounds].size.height - dirtyRect.maxY());
262 [view displayRectIgnoringOpacity:dirtyRect];
301 IntRect dirtyRect = r;
302 dirtyRect.move(-transformOrigin.x(), -transformOrigin.y());
304 dirtyRect.setY([view bounds].size.height - dirtyRect.maxY());
312 [view displayRectIgnoringOpacity:dirtyRect inContext:nsContext]
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
FindIndicator.h 53 void draw(WebCore::GraphicsContext&, const WebCore::IntRect& dirtyRect);
TiledDrawingAreaProxy.cpp 174 void TiledDrawingAreaProxy::requestTileUpdate(int tileID, const IntRect& dirtyRect)
176 page()->process()->connection()->deprecatedSend(DrawingAreaLegacyMessage::RequestTileUpdate, page()->pageID(), CoreIPC::In(tileID, dirtyRect, contentsScale()));
236 IntRect dirtyRect(mapFromContents(contentsDirtyRect));
238 TiledDrawingAreaTile::Coordinate topLeft = tileCoordinateForPoint(dirtyRect.location());
239 TiledDrawingAreaTile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(dirtyRect.maxX(), dirtyRect.maxY()));
250 if (!currentTile->rect().intersects(dirtyRect))
257 currentTile->invalidate(dirtyRect);
334 IntRect dirtyRect = mapFromContents(rect);
336 TiledDrawingAreaTile::Coordinate topLeft = tileCoordinateForPoint(dirtyRect.location())
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
TiledBackingStore.cpp 74 IntRect dirtyRect(mapFromContents(contentsDirtyRect));
76 Tile::Coordinate topLeft = tileCoordinateForPoint(dirtyRect.location());
77 Tile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(dirtyRect.maxX(), dirtyRect.maxY()));
84 currentTile->invalidate(dirtyRect);
133 IntRect dirtyRect = mapFromContents(rect);
135 Tile::Coordinate topLeft = tileCoordinateForPoint(dirtyRect.location());
136 Tile::Coordinate bottomRight = tileCoordinateForPoint(IntPoint(dirtyRect.maxX(), dirtyRect.maxY()));
143 currentTile->paint(context, dirtyRect);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
Tile.cpp 165 SkRect dirtyRect;
167 dirtyRect.set(cliperator.rect());
169 m_scale, dirtyRect, realTileRect)) {
269 float scale, const SkRect& dirtyRect,
278 // scale the dirtyRect for intersect computation.
279 SkRect realDirtyRect = SkRect::MakeWH(dirtyRect.width() * scale,
280 dirtyRect.height() * scale);
281 realDirtyRect.offset(dirtyRect.fLeft * scale, dirtyRect.fTop * scale);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
PreviewPlacerView.java 268 final Rect dirtyRect) {
270 if (!dirtyRect.isEmpty()) {
273 offscreenCanvas.drawRect(dirtyRect, paint);
275 dirtyRect.setEmpty();
289 dirtyRect.union(mGesturePreviewTrailBoundsRect);
295 dirtyRect.offset(0, mOffscreenOffsetY);
296 clipRect(dirtyRect, 0, 0, mOffscreenWidth, mOffscreenHeight);
  /external/webkit/Source/WebKit2/PluginProcess/
PluginControllerProxy.cpp 144 IntRect dirtyRect = m_dirtyRect;
155 graphicsContext->clearRect(dirtyRect);
157 m_plugin->paint(graphicsContext.get(), dirtyRect);
159 m_connection->connection()->send(Messages::PluginProxy::Update(dirtyRect), m_pluginInstanceID);
186 IntRect dirtyRect = rect;
187 dirtyRect.move(m_frameRect.x(), m_frameRect.y());
190 dirtyRect.intersect(m_frameRect);
192 m_dirtyRect.unite(dirtyRect);

Completed in 175 milliseconds

1 2 3 4