summaryrefslogtreecommitdiffstats
path: root/tests/RenderScriptTests/RSTest_CompatLib/src/com/android/rs/test/test_root.rs
blob: 6dc83ba1301945a77585fd22771fad836fb4cee6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Fountain test script
#pragma version(1)

#pragma rs java_package_name(com.android.rs.test)

#pragma stateFragment(parent)

#include "rs_graphics.rsh"


typedef struct TestResult {
    rs_allocation name;
    bool pass;
    float score;
} TestResult_t;
TestResult_t *results;

int root() {

    return 0;
}