FileDocCategorySizeDatePackage
UT_foreach_bounds.javaAPI DocAndroid 5.1 API1943Thu Mar 12 22:22:54 GMT 2015com.android.rs.test_compat

UT_foreach_bounds

public class UT_foreach_bounds extends UnitTest

Fields Summary
private android.content.res.Resources
mRes
private Allocation
A
Constructors Summary
protected UT_foreach_bounds(RSTestCore rstc, android.content.res.Resources res, android.content.Context ctx)

        super(rstc, "ForEach (bounds)", ctx);
        mRes = res;
    
Methods Summary
private voidinitializeGlobals(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 voidrun()

        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();