summaryrefslogtreecommitdiffstats
path: root/libs/rs/java/Samples
diff options
context:
space:
mode:
authorStephen Hines <srhines@google.com>2010-09-22 14:37:52 -0700
committerStephen Hines <srhines@google.com>2010-09-23 15:37:57 -0700
commitff4d70872aa48675a06fc4673c732860c1619758 (patch)
tree00064b86f0843f98f16b6cad2966d40f24d6c12a /libs/rs/java/Samples
parent8cb9e9c5c71dabba826545b3d1fa0cd675f95100 (diff)
downloadframeworks_base-ff4d70872aa48675a06fc4673c732860c1619758.zip
frameworks_base-ff4d70872aa48675a06fc4673c732860c1619758.tar.gz
frameworks_base-ff4d70872aa48675a06fc4673c732860c1619758.tar.bz2
Add RsList implementation to RSTest.
Run subtests in their own thread / RS context. Created UnitTest framework using message passing for RS. Add color status reporting to device output. Fix some typos in RsList. Change-Id: I251d632b9550a1c117d677f011741a796b561e59
Diffstat (limited to 'libs/rs/java/Samples')
-rw-r--r--libs/rs/java/Samples/src/com/android/samples/RsList.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/rs/java/Samples/src/com/android/samples/RsList.java b/libs/rs/java/Samples/src/com/android/samples/RsList.java
index d8c733d..0f6b1ac 100644
--- a/libs/rs/java/Samples/src/com/android/samples/RsList.java
+++ b/libs/rs/java/Samples/src/com/android/samples/RsList.java
@@ -54,7 +54,7 @@ public class RsList extends Activity {
@Override
protected void onResume() {
// Ideally a game should implement onResume() and onPause()
- // to take appropriate action when the activity looses focus
+ // to take appropriate action when the activity loses focus
super.onResume();
mView.onResume();
}
@@ -62,7 +62,7 @@ public class RsList extends Activity {
@Override
protected void onPause() {
// Ideally a game should implement onResume() and onPause()
- // to take appropriate action when the activity looses focus
+ // to take appropriate action when the activity loses focus
super.onPause();
mView.onPause();
}