refcount.rs revision 648a1c137663ef7207684d0d7009dd5518942111
1#include "shared.rsh"
2
3// Testing reference counting of RS object types
4
5rs_allocation globalA;
6static rs_allocation staticGlobalA;
7
8void refcount_test() {
9    staticGlobalA = globalA;
10    rsClearObject(&globalA);
11    rsSendToClientBlocking(RS_MSG_TEST_PASSED);
12}
13
14