commit | 4e30623bdabfe392d5ef902666aad9be291cce73 | [log] [tgz] |
---|---|---|
author | Romain Guy <romainguy@google.com> | Wed Sep 08 18:04:33 2010 -0700 |
committer | Alex Ray <aray@google.com> | Tue Jul 30 13:56:54 2013 -0700 |
tree | a5c1888996a1a89708949746b999b0577bc874d7 | |
parent | b03e56d704af1a66b4552fb606418f3882e56a80 [diff] |
Purge Skia objects from GL caches as needed. Change-Id: I754c671cf790ad5ae8bf047ad328034217da4ecc
diff --git a/include/utils/Singleton.h b/include/utils/Singleton.h index 3b975b4..e1ee8eb 100644 --- a/include/utils/Singleton.h +++ b/include/utils/Singleton.h
@@ -37,6 +37,11 @@ } return *instance; } + + static bool hasInstance() { + Mutex::Autolock _l(sLock); + return sInstance != 0; + } protected: ~Singleton() { };