summaryrefslogtreecommitdiff
path: root/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/refcount.rscript
diff options
context:
space:
mode:
authorJeff Vander Stoep <jeffv@google.com>2019-07-12 10:29:52 -0700
committerJeffrey Vander Stoep <jeffv@google.com>2019-07-17 21:47:56 +0000
commitf539a140c0b006d7483f00caca25d47715df8987 (patch)
treee4e0091061fdebe5a599fc4c18e325b982781bad /tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/refcount.rscript
parentb3857425e3523e855521ab28e7ad7316960bca3f (diff)
downloadrs-f539a140c0b006d7483f00caca25d47715df8987.tar.gz
Renderscript: rename .rs extension to .rscript
Reserve .rs extension for Rust. Bug: 137365032 Test: make checkbuild Test: cd frameworks/compile/slang/tests ./slang_tests.py Test: atest CtsRenderscriptTestCases Test: CtsRsCppTestCases Exempt-From-Owner-Approval: Clean CP Change-Id: I88b87b253ddb63ba4a4946d185ef76a553ba6fee Merged-In: I88b87b253ddb63ba4a4946d185ef76a553ba6fee (cherry picked from commit ab7b68cabd2a98b500edc2a0f8977a3f737f5cde)
Diffstat (limited to 'tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/refcount.rscript')
-rw-r--r--tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/refcount.rscript13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/refcount.rscript b/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/refcount.rscript
new file mode 100644
index 00000000..4ea70e2e
--- /dev/null
+++ b/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/refcount.rscript
@@ -0,0 +1,13 @@
+#include "shared.rsh"
+
+// Testing reference counting of RS object types
+
+rs_allocation globalA;
+static rs_allocation staticGlobalA;
+
+void refcount_test() {
+ staticGlobalA = globalA;
+ rsClearObject(&globalA);
+ rsSendToClientBlocking(RS_MSG_TEST_PASSED);
+}
+