diff options
Diffstat (limited to 'libs/hwui/DisplayList.h')
-rw-r--r-- | libs/hwui/DisplayList.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/hwui/DisplayList.h b/libs/hwui/DisplayList.h index c3d9fd7..9487fae 100644 --- a/libs/hwui/DisplayList.h +++ b/libs/hwui/DisplayList.h @@ -196,8 +196,8 @@ public: mCastsShadow = castsShadow; } - void setSharesGlobalCamera(bool sharesGlobalCamera) { - mSharesGlobalCamera = sharesGlobalCamera; + void setUsesGlobalCamera(bool usesGlobalCamera) { + mUsesGlobalCamera = usesGlobalCamera; } void setProjectBackwards(bool shouldProject) { @@ -621,7 +621,7 @@ private: SkPath mOutline; bool mClipToOutline; bool mCastsShadow; - bool mSharesGlobalCamera; // TODO: respect value when rendering + bool mUsesGlobalCamera; // TODO: respect value when rendering float mAlpha; bool mHasOverlappingRendering; float mTranslationX, mTranslationY, mTranslationZ; |