diff options
author | Chris Craik <ccraik@google.com> | 2014-08-07 14:34:46 -0700 |
---|---|---|
committer | Chris Craik <ccraik@google.com> | 2014-08-07 22:26:55 +0000 |
commit | 74cf7e6a25c6d7b331c231b7bc2512044f9d2950 (patch) | |
tree | 18e658508fa40721ce7c9ceb4308d875c8d718f3 /libs/hwui/RenderProperties.h | |
parent | d224a9dfd2d2f1977e7a40ba3bbfb42a4165aedc (diff) |
Cap scales used for tessellation with minimum and maximum
bug:15615144
Change-Id: I3e833864af3a7b34e444bd13db34b6c90496a8b6
Diffstat (limited to 'libs/hwui/RenderProperties.h')
-rw-r--r-- | libs/hwui/RenderProperties.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libs/hwui/RenderProperties.h b/libs/hwui/RenderProperties.h index 41f48cd62685..0c8d07f83e28 100644 --- a/libs/hwui/RenderProperties.h +++ b/libs/hwui/RenderProperties.h @@ -313,7 +313,6 @@ public: } bool setScaleX(float scaleX) { - LOG_ALWAYS_FATAL_IF(scaleX > 1000000, "invalid scaleX %e", scaleX); return RP_SET_AND_DIRTY(mPrimitiveFields.mScaleX, scaleX); } @@ -322,7 +321,6 @@ public: } bool setScaleY(float scaleY) { - LOG_ALWAYS_FATAL_IF(scaleY > 1000000, "invalid scaleY %e", scaleY); return RP_SET_AND_DIRTY(mPrimitiveFields.mScaleY, scaleY); } |