diff options
author | Chris Craik <ccraik@google.com> | 2014-07-08 03:41:41 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-07-05 02:59:43 +0000 |
commit | 7f87e8acbbe02cb28af35f9f6dde09e700d7c5d2 (patch) | |
tree | 930a099050c3311434b5f90f1d37f84031c749f8 /libs | |
parent | 8845da77bb05075e3859ee566abcd9215c1e4618 (diff) | |
parent | 0f632046ddb26740aff356ef21b374521912075b (diff) | |
download | frameworks_base-7f87e8acbbe02cb28af35f9f6dde09e700d7c5d2.zip frameworks_base-7f87e8acbbe02cb28af35f9f6dde09e700d7c5d2.tar.gz frameworks_base-7f87e8acbbe02cb28af35f9f6dde09e700d7c5d2.tar.bz2 |
Merge "Query outline on background size change"
Diffstat (limited to 'libs')
-rw-r--r-- | libs/hwui/Outline.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/hwui/Outline.h b/libs/hwui/Outline.h index 5e7f899..024bdfd 100644 --- a/libs/hwui/Outline.h +++ b/libs/hwui/Outline.h @@ -30,7 +30,7 @@ public: , mType(kOutlineType_None) , mRadius(0) {} - void setRoundRect(int left, int top, int right, int bottom, int radius) { + void setRoundRect(int left, int top, int right, int bottom, float radius) { mType = kOutlineType_RoundRect; mBounds.set(left, top, right, bottom); mRadius = radius; |