diff options
| author | 2009-11-17 18:07:54 -0800 | |
|---|---|---|
| committer | 2009-11-17 18:07:54 -0800 | |
| commit | 644a0e320d4bda1871f38858e63aad2c9864570f (patch) | |
| tree | dbe08bd7d8c08e8366b51a1c835e755ccbd856ac /libs/rs/rsObjectBase.cpp | |
| parent | e30c29feea0300dbf5355d08bbf90c0f85584e87 (diff) | |
| parent | f630904134a81e9e5edbd7b2bd77e402c180782f (diff) | |
resolved conflicts for merge of f6309041 to master
Diffstat (limited to 'libs/rs/rsObjectBase.cpp')
| -rw-r--r-- | libs/rs/rsObjectBase.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libs/rs/rsObjectBase.cpp b/libs/rs/rsObjectBase.cpp index b7d67cca4b3c..05791cbf4931 100644 --- a/libs/rs/rsObjectBase.cpp +++ b/libs/rs/rsObjectBase.cpp @@ -190,3 +190,15 @@ void ObjectBase::zeroAllUserRef(Context *rsc) } } +void ObjectBase::dumpAll(Context *rsc) +{ + if (rsc->props.mLogObjects) { + LOGV("Dumping all objects"); + const ObjectBase * o = rsc->mObjHead; + while (o) { + o->dumpLOGV(" "); + o = o->mNext; + } + } +} + |