diff options
| author | 2016-03-03 14:16:31 -0800 | |
|---|---|---|
| committer | 2016-03-03 14:16:31 -0800 | |
| commit | a154f473076ca1574045f5044fe8af6cd1625316 (patch) | |
| tree | d926b470a96e4f281c210196adfca00894afd2d0 | |
| parent | 8316fac9c0772b1908d45b2286298b5b791d3ca7 (diff) | |
Improve handling of undefined-at-record-time bounds in new ops
bug:26591194
Change-Id: Ifc695d285d688903e2ef6aa3f0cb9e7ebf1f68d6
| -rw-r--r-- | libs/hwui/RecordingCanvas.cpp | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/libs/hwui/RecordingCanvas.cpp b/libs/hwui/RecordingCanvas.cpp index 9ae2212d0732..ddf0528467e0 100644 --- a/libs/hwui/RecordingCanvas.cpp +++ b/libs/hwui/RecordingCanvas.cpp @@ -24,6 +24,14 @@ namespace android { namespace uirenderer { + +static Rect sUnreasonablyLargeBounds(-10000, -10000, 10000, 10000); + +static const Rect& getConservativeOpBounds(const ClipBase* clip) { + // if op is clipped, that rect can be used, but otherwise just use a conservatively large rect + return clip ? clip->rect : sUnreasonablyLargeBounds; +} + RecordingCanvas::RecordingCanvas(size_t width, size_t height) : mState(*this) , mResourceCache(ResourceCache::getInstance()) { @@ -242,10 +250,8 @@ void RecordingCanvas::drawColor(int color, SkXfermode::Mode mode) { void RecordingCanvas::drawPaint(const SkPaint& paint) { const ClipBase* clip = getRecordedClip(); - // if there's no current clip, draw a big rect and hope we cover the eventual clip bounds - Rect bounds = clip ? clip->rect : Rect(-10000, -10000, 10000, 10000); addOp(alloc().create_trivial<RectOp>( - bounds, + getConservativeOpBounds(clip), Matrix4::identity(), clip, refPaint(&paint))); @@ -534,10 +540,11 @@ void RecordingCanvas::drawTextOnPath(const uint16_t* glyphs, int glyphCount, con float hOffset, float vOffset, const SkPaint& paint) { if (!glyphs || glyphCount <= 0 || PaintUtils::paintWillNotDrawText(paint)) return; glyphs = refBuffer<glyph_t>(glyphs, glyphCount); + auto clip = getRecordedClip(); addOp(alloc().create_trivial<TextOnPathOp>( - mState.getLocalClipBounds(), // TODO: explicitly define bounds + getConservativeOpBounds(clip), // TODO: explicitly define bounds *(mState.currentSnapshot()->transform), - getRecordedClip(), + clip, refPaint(&paint), glyphs, glyphCount, refPath(&path), hOffset, vOffset)); } @@ -586,10 +593,11 @@ void RecordingCanvas::drawLayer(DeferredLayerUpdater* layerHandle) { void RecordingCanvas::callDrawGLFunction(Functor* functor) { mDisplayList->functors.push_back(functor); + auto clip = getRecordedClip(); addOp(alloc().create_trivial<FunctorOp>( - mState.getLocalClipBounds(), // TODO: explicitly define bounds + getConservativeOpBounds(clip), // TODO: explicitly define bounds *(mState.currentSnapshot()->transform), - getRecordedClip(), + clip, functor)); } |