summaryrefslogtreecommitdiffstats
path: root/libs/hwui/DisplayList.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/hwui/DisplayList.h')
-rw-r--r--libs/hwui/DisplayList.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/libs/hwui/DisplayList.h b/libs/hwui/DisplayList.h
index 6e6e596..6d9a8c1 100644
--- a/libs/hwui/DisplayList.h
+++ b/libs/hwui/DisplayList.h
@@ -190,12 +190,12 @@ public:
mClipToBounds = clipToBounds;
}
- void setIsContainedVolume(bool isContainedVolume) {
- mIsContainedVolume = isContainedVolume;
+ void setIsolatedZVolume(bool shouldIsolate) {
+ mIsolatedZVolume = shouldIsolate;
}
- void setProjectToContainedVolume(bool shouldProject) {
- mProjectToContainedVolume = shouldProject;
+ void setProjectBackwards(bool shouldProject) {
+ mProjectBackwards = shouldProject;
}
void setStaticMatrix(SkMatrix* matrix) {
@@ -590,8 +590,8 @@ private:
// Rendering properties
bool mClipToBounds;
- bool mIsContainedVolume;
- bool mProjectToContainedVolume;
+ bool mIsolatedZVolume;
+ bool mProjectBackwards;
float mAlpha;
bool mHasOverlappingRendering;
float mTranslationX, mTranslationY, mTranslationZ;