summaryrefslogtreecommitdiffstats
path: root/tests/RenderScriptTests/RSTest_CompatLib/src/com/android/rs/test/test_root.rs
blob: 89e7de70b98e9dd84278bb7ce88053bd5b2141d8 (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_compat)

#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;
}