1// Fountain test script
2#pragma version(1)
3
4#pragma rs java_package_name(com.android.rs.test)
5
6#pragma stateFragment(parent)
7
8#include "rs_graphics.rsh"
9
10
11typedef struct TestResult {
12    rs_allocation name;
13    bool pass;
14    float score;
15} TestResult_t;
16TestResult_t *results;
17
18int root() {
19
20    return 0;
21}
22
23
24