diff options
author | Chris Craik <ccraik@google.com> | 2013-12-15 17:10:19 -0800 |
---|---|---|
committer | Chris Craik <ccraik@google.com> | 2013-12-16 14:57:00 -0800 |
commit | ba9b613437c34873fa95800a25fc51720638267c (patch) | |
tree | c47ac384de0306a48956ad6efaa3c5c5e51553c0 /libs/hwui/Caches.h | |
parent | d83adf00ae6cb073fa0e4fbb837c2b87d824ec4f (diff) | |
download | frameworks_base-ba9b613437c34873fa95800a25fc51720638267c.zip frameworks_base-ba9b613437c34873fa95800a25fc51720638267c.tar.gz frameworks_base-ba9b613437c34873fa95800a25fc51720638267c.tar.bz2 |
Create private properties on GLCanvas for experimentation with 3d
Change-Id: I17772f61efce727cb4c1111f4d97f58c741786b8
Diffstat (limited to 'libs/hwui/Caches.h')
-rw-r--r-- | libs/hwui/Caches.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libs/hwui/Caches.h b/libs/hwui/Caches.h index 963965d..01e8d84 100644 --- a/libs/hwui/Caches.h +++ b/libs/hwui/Caches.h @@ -353,6 +353,14 @@ public: PFNGLLABELOBJECTEXTPROC setLabel; PFNGLGETOBJECTLABELEXTPROC getLabel; + // TEMPORARY properties + void initTempProperties(); + void setTempProperty(const char* name, const char* value); + bool propertyEnable3d; + bool propertyDirtyViewport; // flag set when dirtying the viewport + float propertyCameraDistance; + int propertyShadowStrength; + private: enum OverdrawColorSet { kColorSet_Default = 0, |