UT_foreach_boundspublic class UT_foreach_bounds extends UnitTest
Fields Summary |
---|
private android.content.res.Resources | mRes | private Allocation | A |
Methods Summary |
---|
private void | initializeGlobals(RenderScript RS, ScriptC_foreach_bounds s)
Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
int X = 5;
int Y = 7;
s.set_dimX(X);
s.set_dimY(Y);
typeBuilder.setX(X).setY(Y);
A = Allocation.createTyped(RS, typeBuilder.create());
s.set_aRaw(A);
s.set_s(s);
s.set_ain(A);
s.set_aout(A);
s.set_xStart(2);
s.set_xEnd(5);
s.set_yStart(3);
s.set_yEnd(6);
s.forEach_zero(A);
return;
| public void | run()
RenderScript pRS = RenderScript.create(mCtx);
ScriptC_foreach_bounds s = new ScriptC_foreach_bounds(pRS);
pRS.setMessageHandler(mRsMessage);
initializeGlobals(pRS, s);
s.invoke_foreach_bounds_test();
pRS.finish();
waitForMessage();
pRS.destroy();
|
|