diff options
author | Jason Sams <rjsams@android.com> | 2010-02-17 15:38:10 -0800 |
---|---|---|
committer | Jason Sams <rjsams@android.com> | 2010-02-17 15:38:10 -0800 |
commit | e4c487a75282e8a38a8b3defd49e7799c8670881 (patch) | |
tree | cce081d45415dfe54bdd65761e85f13046c91a82 /libs/rs/rsObjectBase.cpp | |
parent | 5bc54073186a83472963934d4325c3b9d968892f (diff) |
Implement type collapsing for Elements and Types. Now if a user creates two or more identical objects we simply reuse the existing object rather than create a new one.
Diffstat (limited to 'libs/rs/rsObjectBase.cpp')
-rw-r--r-- | libs/rs/rsObjectBase.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libs/rs/rsObjectBase.cpp b/libs/rs/rsObjectBase.cpp index 89c5b000c578..677413e12b07 100644 --- a/libs/rs/rsObjectBase.cpp +++ b/libs/rs/rsObjectBase.cpp @@ -191,6 +191,7 @@ void ObjectBase::dumpAll(Context *rsc) LOGV("Dumping all objects"); const ObjectBase * o = rsc->mObjHead; while (o) { + LOGV(" Object %p", o); o->dumpLOGV(" "); o = o->mNext; } |