summaryrefslogtreecommitdiffstats
path: root/graphics
diff options
context:
space:
mode:
authorTim Murray <timmurray@google.com>2013-04-10 11:44:52 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-04-10 11:44:52 -0700
commitccdeb2f993efe64def9e99bdc1255a6c99230112 (patch)
treee32cdaa9c63d3e57874486f43f3b9d6d2b276da8 /graphics
parentc4c8f2d82e4d047c479fbdad5e1e296d745bfe3b (diff)
parentf38609536f27e8e6971869bf63d744bf12a60163 (diff)
downloadframeworks_base-ccdeb2f993efe64def9e99bdc1255a6c99230112.zip
frameworks_base-ccdeb2f993efe64def9e99bdc1255a6c99230112.tar.gz
frameworks_base-ccdeb2f993efe64def9e99bdc1255a6c99230112.tar.bz2
am f3860953: am a8aa6880: Merge "Add GC thread to RSGL." into jb-mr2-dev
* commit 'f38609536f27e8e6971869bf63d744bf12a60163': Add GC thread to RSGL.
Diffstat (limited to 'graphics')
-rw-r--r--graphics/java/android/renderscript/RenderScriptGL.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/graphics/java/android/renderscript/RenderScriptGL.java b/graphics/java/android/renderscript/RenderScriptGL.java
index 52034b1..fad8838 100644
--- a/graphics/java/android/renderscript/RenderScriptGL.java
+++ b/graphics/java/android/renderscript/RenderScriptGL.java
@@ -198,6 +198,9 @@ public class RenderScriptGL extends RenderScript {
}
mMessageThread = new MessageThread(this);
mMessageThread.start();
+ mGCThread = new GCThread(this);
+ mGCThread.start();
+
}
/**