summaryrefslogtreecommitdiff
path: root/tests/cppbasic/compute.cpp
blob: e01516513abddcf62bdfaf0003b602534fe69535 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#include "RenderScript.h"

#include "ScriptC_mono.h"

using namespace android;
using namespace renderscriptCpp;

int main(int argc, char** argv)
{

    sp<RS> rs = new RS();
    printf("New RS %p\n", rs.get());

    bool r = rs->init();
    printf("Init returned %i\n", r);

    sp<const Element> e = Element::RGBA_8888(rs);
    printf("Element %p\n", e.get());

    Type::Builder tb(rs, e);
    tb.setX(128);
    tb.setY(128);
    sp<const Type> t = tb.create();
    printf("Type %p\n", t.get());


    sp<Allocation> a1 = Allocation::createSized(rs, e, 1000);
    printf("Allocation %p\n", a1.get());

    sp<Allocation> ain = Allocation::createTyped(rs, t);
    sp<Allocation> aout = Allocation::createTyped(rs, t);
    printf("Allocation %p %p\n", ain.get(), aout.get());

    sp<ScriptC_mono> sc = new ScriptC_mono(rs, NULL, 0);
    printf("new script\n");

    uint32_t *buf = new uint32_t[t->getCount()];
    for (uint32_t ct=0; ct < t->getCount(); ct++) {
        buf[ct] = ct | (ct << 16);
    }
    ain->copy1DRangeFrom(0, t->getCount(), buf, t->getCount()*4);

    sc->forEach_root(ain, aout);
    printf("for each done\n");

    printf("Deleting stuff\n");
    sc.clear();
    t.clear();
    a1.clear();
    e.clear();
    ain.clear();
    aout.clear();
    //    delete rs;
    printf("Delete OK\n");
}