summaryrefslogtreecommitdiffstats
path: root/tests/RenderScriptTests/tests_v14/src/com/android/rs/test/refcount.rs
blob: 4ea70e2ed94d97d80d624c720e3b7f23e7e172fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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);
}