summaryrefslogtreecommitdiffstats
path: root/tests/RenderScriptTests/tests_v14/src/com/android/rs/test/test_root.rs
blob: 88fe34a205cc21d7e4c98d1a52eb528386b0f4e9 (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_v14)

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