summaryrefslogtreecommitdiffstats
path: root/tests/RenderScriptTests/tests_v14/src/com/android/rs/test/UT_rstypes.java
diff options
context:
space:
mode:
authorStephen Hines <srhines@google.com>2012-03-08 11:41:34 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-03-08 11:41:34 -0800
commitebc34f820c5ba25352ec0eba11ee07787591f391 (patch)
tree023892009d7a1a159101ec5af072718d219174d3 /tests/RenderScriptTests/tests_v14/src/com/android/rs/test/UT_rstypes.java
parent3bef5e9f3aa90465ee3ab66ef33d7a88d1b0c5c1 (diff)
parent41f1e5edee2d2663ae46b64528894896ff96fa3d (diff)
downloadframeworks_base-ebc34f820c5ba25352ec0eba11ee07787591f391.zip
frameworks_base-ebc34f820c5ba25352ec0eba11ee07787591f391.tar.gz
frameworks_base-ebc34f820c5ba25352ec0eba11ee07787591f391.tar.bz2
Merge "Check in older versions of RS tests."
Diffstat (limited to 'tests/RenderScriptTests/tests_v14/src/com/android/rs/test/UT_rstypes.java')
-rw-r--r--tests/RenderScriptTests/tests_v14/src/com/android/rs/test/UT_rstypes.java40
1 files changed, 40 insertions, 0 deletions
diff --git a/tests/RenderScriptTests/tests_v14/src/com/android/rs/test/UT_rstypes.java b/tests/RenderScriptTests/tests_v14/src/com/android/rs/test/UT_rstypes.java
new file mode 100644
index 0000000..ab96867
--- /dev/null
+++ b/tests/RenderScriptTests/tests_v14/src/com/android/rs/test/UT_rstypes.java
@@ -0,0 +1,40 @@
+/*
+ * Copyright (C) 2010 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.android.rs.test_v14;
+
+import android.content.Context;
+import android.content.res.Resources;
+import android.renderscript.*;
+
+public class UT_rstypes extends UnitTest {
+ private Resources mRes;
+
+ protected UT_rstypes(RSTestCore rstc, Resources res, Context ctx) {
+ super(rstc, "rsTypes", ctx);
+ mRes = res;
+ }
+
+ public void run() {
+ RenderScript pRS = RenderScript.create(mCtx);
+ ScriptC_rstypes s = new ScriptC_rstypes(pRS, mRes, R.raw.rstypes);
+ pRS.setMessageHandler(mRsMessage);
+ s.invoke_test_rstypes(0, 0);
+ pRS.finish();
+ waitForMessage();
+ pRS.destroy();
+ }
+}