Enable native tracking for RS contexts to improve GC behavior.
This should prevent apps from leaking RS contexts as easily. bug 18579193 Change-Id: I2d943ce4443ce7cb90ebdd3dd37d338eda6df3a2
This commit is contained in:
@ -1146,6 +1146,13 @@ public class RenderScript {
|
||||
mApplicationContext = ctx.getApplicationContext();
|
||||
}
|
||||
mRWLock = new ReentrantReadWriteLock();
|
||||
try {
|
||||
registerNativeAllocation.invoke(sRuntime, 4 * 1024 * 1024 * 1024); // 4MB for GC sake
|
||||
} catch (Exception e) {
|
||||
Log.e(RenderScript.LOG_TAG, "Couldn't invoke registerNativeAllocation:" + e);
|
||||
throw new RSRuntimeException("Couldn't invoke registerNativeAllocation:" + e);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user