diff options
author | 2009-09-25 16:37:33 -0700 | |
---|---|---|
committer | 2009-09-25 16:37:33 -0700 | |
commit | 61f08d6fa7c7657e9fbcd17e9a1c5b9114bb3844 (patch) | |
tree | e836663efc3047198d5aef1723cee4e5556fe8c4 /libs/rs/rsLight.cpp | |
parent | 66b2771d745aa66df5cf80b300b5ba0f936ff22e (diff) |
Improved object lifecycle tracking and fix leaks.
Diffstat (limited to 'libs/rs/rsLight.cpp')
-rw-r--r-- | libs/rs/rsLight.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/rs/rsLight.cpp b/libs/rs/rsLight.cpp index e9b8ef9bf356..6f2cf3e7f7f6 100644 --- a/libs/rs/rsLight.cpp +++ b/libs/rs/rsLight.cpp @@ -24,6 +24,8 @@ using namespace android::renderscript; Light::Light(Context *rsc, bool isLocal, bool isMono) : ObjectBase(rsc) { + mAllocFile = __FILE__; + mAllocLine = __LINE__; mIsLocal = isLocal; mIsMono = isMono; |