blob: 01cb47cac6b8d2c89440f864f6969c54e2f7e9fb [file] [log] [blame]
#pragma version(1)
#pragma rs java_package_name(android.renderscript.cts)
const int* pointer;
rs_script script;
rs_allocation alloc_in;
rs_allocation alloc_out;
int __attribute__((kernel)) copy(int in) {
return in;
}
void start() {
alloc_in = rsGetAllocation(pointer);
rsForEach(copy, alloc_in, alloc_out);
}