diff options
| author | Stephen Hines <srhines@google.com> | 2010-09-22 14:37:52 -0700 |
|---|---|---|
| committer | Stephen Hines <srhines@google.com> | 2010-09-23 15:37:57 -0700 |
| commit | ff4d70872aa48675a06fc4673c732860c1619758 (patch) | |
| tree | 00064b86f0843f98f16b6cad2966d40f24d6c12a /libs/rs/java/Samples | |
| parent | 8cb9e9c5c71dabba826545b3d1fa0cd675f95100 (diff) | |
| download | frameworks_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.java | 4 |
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(); } |
