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

1 2

  /external/chromium_org/ui/gfx/
canvas_paint_mac.h 23 explicit CanvasSkiaPaint(NSRect dirtyRect);
24 CanvasSkiaPaint(NSRect dirtyRect, bool opaque);
  /frameworks/base/libs/hwui/
Layer.cpp 192 if (dirtyRect.isEmpty() || (dirtyRect.left <= 0 && dirtyRect.top <= 0 &&
193 dirtyRect.right >= width && dirtyRect.bottom >= height)) {
194 dirtyRect.set(0, 0, width, height);
198 deferredList->reset(dirtyRect);
200 deferredList = new DeferredDisplayList(dirtyRect);
206 renderer->setupFrameState(dirtyRect.left, dirtyRect.top
    [all...]
Layer.h 90 dirtyRect.unionWith(r);
288 Rect dirtyRect;
  /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/
FramelessScrollView.cpp 48 IntRect dirtyRect = rect;
49 dirtyRect.move(scrollbar->x(), scrollbar->y());
50 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 125 void redrawLater(DisplayList displayList, Rect dirtyRect) {
128 dirtyRect.left, dirtyRect.top, dirtyRect.right, dirtyRect.bottom);
GLES20TextureLayer.java 106 void redrawLater(DisplayList displayList, Rect dirtyRect) {
HardwareLayer.java 217 * @param dirtyRect The dirty region of the layer that needs to be redrawn
219 abstract void redrawLater(DisplayList displayList, Rect dirtyRect);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
FilterEffectRenderer.h 64 bool prepareFilterEffect(RenderLayer*, const LayoutRect& filterBoxRect, const LayoutRect& dirtyRect, const LayoutRect& layerRepaintRect);
105 LayoutRect computeSourceImageRectForDirtyRect(const LayoutRect& filterBoxRect, const LayoutRect& dirtyRect);
FilterEffectRenderer.cpp 343 LayoutRect FilterEffectRenderer::computeSourceImageRectForDirtyRect(const LayoutRect& filterBoxRect, const LayoutRect& dirtyRect)
350 // The result of this function is the area in the "filterBoxRect" that needs to be repainted, so that we fully cover the "dirtyRect".
351 FloatRect rectForRepaint = dirtyRect;
361 bool FilterEffectRendererHelper::prepareFilterEffect(RenderLayer* renderLayer, const LayoutRect& filterBoxRect, const LayoutRect& dirtyRect, const LayoutRect& layerRepaintRect)
365 m_repaintRect = dirtyRect;
368 LayoutRect filterSourceRect = filter->computeSourceImageRectForDirtyRect(filterBoxRect, dirtyRect);
RenderMultiColumnSet.h 121 virtual void collectLayerFragments(LayerFragments&, const LayoutRect& layerBoundingBox, const LayoutRect& dirtyRect) OVERRIDE;
  /frameworks/base/core/jni/
android_view_TextureView.cpp 131 jint nativeWindow, jobject canvas, jobject dirtyRect) {
140 if (dirtyRect) {
141 rect.left = GET_INT(dirtyRect, gRectClassInfo.left);
142 rect.top = GET_INT(dirtyRect, gRectClassInfo.top);
143 rect.right = GET_INT(dirtyRect, gRectClassInfo.right);
144 rect.bottom = GET_INT(dirtyRect, gRectClassInfo.bottom);
177 if (dirtyRect) {
178 INVOKEV(dirtyRect, gRectClassInfo.set,
android_view_Surface.cpp 209 Rect dirtyRect;
213 dirtyRect.left = env->GetIntField(dirtyRectObj, gRectClassInfo.left);
214 dirtyRect.top = env->GetIntField(dirtyRectObj, gRectClassInfo.top);
215 dirtyRect.right = env->GetIntField(dirtyRectObj, gRectClassInfo.right);
216 dirtyRect.bottom = env->GetIntField(dirtyRectObj, gRectClassInfo.bottom);
217 dirtyRectPtr = &dirtyRect;
250 nativeCanvas->clipRect( SkRect::Make(reinterpret_cast<const SkIRect&>(dirtyRect)) );
254 env->SetIntField(dirtyRectObj, gRectClassInfo.left, dirtyRect.left);
255 env->SetIntField(dirtyRectObj, gRectClassInfo.top, dirtyRect.top);
256 env->SetIntField(dirtyRectObj, gRectClassInfo.right, dirtyRect.right)
    [all...]
android_view_GraphicBuffer.cpp 163 GraphicBufferWrapper* wrapper, jobject canvas, jobject dirtyRect) {
172 if (dirtyRect) {
173 rect.left = GET_INT(dirtyRect, gRectClassInfo.left);
174 rect.top = GET_INT(dirtyRect, gRectClassInfo.top);
175 rect.right = GET_INT(dirtyRect, gRectClassInfo.right);
176 rect.bottom = GET_INT(dirtyRect, gRectClassInfo.bottom);
211 if (dirtyRect) {
212 INVOKEV(dirtyRect, gRectClassInfo.set,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureTrailsPreview.java 133 final Rect dirtyRect) {
135 if (!dirtyRect.isEmpty()) {
138 offscreenCanvas.drawRect(dirtyRect, paint);
140 dirtyRect.setEmpty();
151 dirtyRect.union(mGestureTrailBoundsRect);
  /external/chromium_org/chrome/browser/ui/cocoa/
framed_browser_window.h 57 + (BOOL)drawWindowThemeInDirtyRect:(NSRect)dirtyRect
  /external/chromium_org/third_party/WebKit/Source/core/platform/mac/
ScrollbarThemeMac.h 47 virtual void paintOverhangAreas(ScrollView*, GraphicsContext*, const IntRect& horizontalOverhangArea, const IntRect& verticalOverhangArea, const IntRect& dirtyRect) OVERRIDE;
ScrollbarThemeMac.mm 183 void ScrollbarThemeMacCommon::paintOverhangAreas(ScrollView* view, GraphicsContext* context, const IntRect& horizontalOverhangRect, const IntRect& verticalOverhangRect, const IntRect& dirtyRect)
211 context->fillRect(intersection(horizontalOverhangRect, dirtyRect));
213 context->fillRect(intersection(verticalOverhangRect, dirtyRect));
254 context->fillRect(intersection(shadowRect, dirtyRect));
264 context->fillRect(intersection(shadowRect, dirtyRect));
282 context->fillRect(intersection(shadowRect, dirtyRect));
292 context->fillRect(intersection(shadowRect, dirtyRect));
  /external/chromium_org/third_party/WebKit/Source/web/
PageWidgetDelegate.cpp 91 IntRect dirtyRect(rect);
96 gc.clip(dirtyRect);
97 view->paint(&gc, dirtyRect);
101 gc.fillRect(dirtyRect, Color::white);
WebPluginContainerImpl.cpp 148 IntRect dirtyRect = rect;
149 dirtyRect.move(renderer->borderLeft() + renderer->paddingLeft(),
151 renderer->repaintRectangle(dirtyRect);
620 bool WebPluginContainerImpl::paintCustomOverhangArea(GraphicsContext* context, const IntRect& horizontalOverhangArea, const IntRect& verticalOverhangArea, const IntRect& dirtyRect)
624 context->fillRect(intersection(horizontalOverhangArea, dirtyRect));
625 context->fillRect(intersection(verticalOverhangArea, dirtyRect));
  /frameworks/base/libs/hwui/font/
CacheTexture.cpp 207 const Rect& dirtyRect = mDirtyRect;
209 uint32_t x = mHasUnpackRowLength ? dirtyRect.left : 0;
210 uint32_t y = dirtyRect.top;
211 uint32_t width = mHasUnpackRowLength ? dirtyRect.getWidth() : mWidth;
212 uint32_t height = dirtyRect.getHeight();
  /external/chromium_org/third_party/WebKit/Source/core/platform/
ScrollbarTheme.cpp 300 void ScrollbarTheme::paintOverhangAreas(ScrollView*, GraphicsContext* context, const IntRect& horizontalOverhangRect, const IntRect& verticalOverhangRect, const IntRect& dirtyRect)
304 context->fillRect(intersection(horizontalOverhangRect, dirtyRect));
306 context->fillRect(intersection(verticalOverhangRect, dirtyRect));
ScrollView.h 264 void calculateAndPaintOverhangAreas(GraphicsContext*, const IntRect& dirtyRect);
274 virtual void paintOverhangAreas(GraphicsContext*, const IntRect& horizontalOverhangArea, const IntRect& verticalOverhangArea, const IntRect& dirtyRect);
ScrollView.cpp     [all...]
  /frameworks/base/services/java/com/android/server/wm/
DisplayMagnifier.java 376 Rect dirtyRect = mTempRect1;
379 dirtyRect.set(mHalfBorderWidth, mHalfBorderWidth,
381 mWindow.invalidate(dirtyRect);
387 dirtyRegion.getBounds(dirtyRect);
388 mWindow.invalidate(dirtyRect);
602 public void invalidate(Rect dirtyRect) {
603 if (dirtyRect != null) {
604 mDirtyRect.set(dirtyRect);

Completed in 518 milliseconds

1 2