// -reflect-c++
#pragma version(1)
#pragma rs java_package_name(foo)

//int2 i2;

int i1 = 5;
bool bt = true;
bool bf = false;
int2 i2 = 2;
int3 i3 = {1, 2, 3};

rs_allocation alloc;
rs_element elem;
rs_type type;
rs_script script;
rs_sampler sampler;

int RS_KERNEL root(uint32_t ain) {
  return 0;
}

void RS_KERNEL in_only(uint32_t ain) {
}

int RS_KERNEL out_only() {
  return 0;
}

int RS_KERNEL everything(uint32_t ain, uint32_t x, uint32_t y) {
  return 0;
}