diff options
| author | 2016-10-07 15:59:20 -0400 | |
|---|---|---|
| committer | 2016-10-13 17:14:52 -0400 | |
| commit | 260ab726486317496bc12a57d599ea96dcde3284 (patch) | |
| tree | be150530fd0597507dddf3a670f2480563dd1e00 /libs/hwui/FontRenderer.h | |
| parent | ccbc5c183067ae988f57725cfafda855bafa47ec (diff) | |
use SkBlendMode instead of SkXfermode
use sk_sp versions of paint setters/getters
Change-Id: I86591a0a8ec92e6039776cbf00424ea24f585b28
Diffstat (limited to 'libs/hwui/FontRenderer.h')
| -rw-r--r-- | libs/hwui/FontRenderer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/hwui/FontRenderer.h b/libs/hwui/FontRenderer.h index e836c20bbf9c..dd9c40f89ad0 100644 --- a/libs/hwui/FontRenderer.h +++ b/libs/hwui/FontRenderer.h @@ -58,7 +58,7 @@ public: const BakedOpState* bakedState, const ClipBase* clip, float x, float y, bool pureTranslate, - int alpha, SkXfermode::Mode mode, const SkPaint* paint) + int alpha, SkBlendMode mode, const SkPaint* paint) : renderer(renderer) , bakedState(bakedState) , clip(clip) @@ -79,7 +79,7 @@ public: float y; bool pureTranslate; int alpha; - SkXfermode::Mode mode; + SkBlendMode mode; const SkPaint* paint; }; |