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

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;
        final int xStart = 2;
        final int xEnd = 5;
        final int yStart = 3;
        final int yEnd = 6;
        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(xStart);
        s.set_xEnd(xEnd);
        s.set_yStart(yStart);
        s.set_yEnd(yEnd);
        s.forEach_zero(A);

        Script.LaunchOptions sc = new Script.LaunchOptions();
        sc.setX(xStart, xEnd).setY(yStart, yEnd);
        s.forEach_root(A, sc);

        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_verify_root();
        s.invoke_foreach_bounds_test();
        pRS.finish();
        waitForMessage();
        pRS.destroy();