diff options
Diffstat (limited to 'libs/hwui/FontRenderer.cpp')
-rw-r--r-- | libs/hwui/FontRenderer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/hwui/FontRenderer.cpp b/libs/hwui/FontRenderer.cpp index 47654f400ec2..9c8649fc9775 100644 --- a/libs/hwui/FontRenderer.cpp +++ b/libs/hwui/FontRenderer.cpp @@ -75,7 +75,8 @@ void TextDrawFunctor::draw(CacheTexture& texture, bool linearFiltering) { .setTransform(bakedState->computedState.transform, transformFlags) .setModelViewOffsetRect(0, 0, Rect(0, 0, 0, 0)) .build(); - renderer->renderGlop(*bakedState, glop); + // Note: don't pass dirty bounds here, so user must manage passing dirty bounds to renderer + renderer->renderGlop(nullptr, clip, glop); #else GlopBuilder(renderer->mRenderState, renderer->mCaches, &glop) .setRoundRectClipState(renderer->currentSnapshot()->roundRectClipState) |