From e4c487a75282e8a38a8b3defd49e7799c8670881 Mon Sep 17 00:00:00 2001 From: Jason Sams Date: Wed, 17 Feb 2010 15:38:10 -0800 Subject: 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. --- libs/rs/rsObjectBase.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'libs/rs/rsObjectBase.cpp') 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; } -- cgit v1.2.3-59-g8ed1b