blob: ae7d3e6691ec29610ddec8cf3e3fc0fb27b516f4 [file] [log] [blame]
#pragma version(1)
#pragma rs java_package_name(android.renderscript.cts)
const int* pointer;
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);
}