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

RSTest

public class RSTest extends android.app.ListActivity

Fields Summary
private static final String
LOG_TAG
private static final boolean
DEBUG
private static final boolean
LOG_ENABLED
private android.renderscript.RenderScript
mRS
private RSTestCore
RSTC
String[]
mTestNames
Constructors Summary
Methods Summary
static voidlog(java.lang.String message)

        if (LOG_ENABLED) {
            Log.v(LOG_TAG, message);
        }
    
public voidonCreate(android.os.Bundle icicle)


    
        
        super.onCreate(icicle);
        mRS = RenderScript.create(this);

        RSTC = new RSTestCore(this);
        RSTC.init(mRS, getResources());