diff options
author | Jason Sams <rjsams@android.com> | 2011-07-07 16:17:36 -0700 |
---|---|---|
committer | Jason Sams <rjsams@android.com> | 2011-07-07 16:17:36 -0700 |
commit | ad37cb26cd8d8a05077152ebc5b841a5629cfbbd (patch) | |
tree | 56beec542f08819324ee1abf2cb44ad80b947e4b /graphics/java/android/renderscript/Allocation.java | |
parent | 452a7661e8b06459b75493b441d33244939c1153 (diff) |
Fix more type info caching bugs.
Change-Id: I917a1190ec12fe954c9bf51ffd446ef564837e68
Diffstat (limited to 'graphics/java/android/renderscript/Allocation.java')
-rw-r--r-- | graphics/java/android/renderscript/Allocation.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/graphics/java/android/renderscript/Allocation.java b/graphics/java/android/renderscript/Allocation.java index cc59d18e9a83..625419218a8a 100644 --- a/graphics/java/android/renderscript/Allocation.java +++ b/graphics/java/android/renderscript/Allocation.java @@ -243,6 +243,7 @@ public class Allocation extends BaseObj { if(typeID != 0) { mType = new Type(typeID, mRS); mType.updateFromNative(); + updateCacheInfo(mType); } } |