1/*
2 * Copyright (C) 2011-2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.rs.test_compat;
18
19import android.content.Context;
20import android.content.res.Resources;
21import android.support.v8.renderscript.*;
22
23public class UT_foreach extends UnitTest {
24    private Resources mRes;
25    private Allocation A;
26
27    protected UT_foreach(RSTestCore rstc, Resources res, Context ctx) {
28        super(rstc, "ForEach", ctx);
29        mRes = res;
30    }
31
32    private void initializeGlobals(RenderScript RS, ScriptC_foreach s) {
33        Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
34        int X = 5;
35        int Y = 7;
36        s.set_dimX(X);
37        s.set_dimY(Y);
38        typeBuilder.setX(X).setY(Y);
39        A = Allocation.createTyped(RS, typeBuilder.create());
40        s.set_aRaw(A);
41
42        return;
43    }
44
45    public void run() {
46        RenderScript pRS = RenderScript.create(mCtx);
47        ScriptC_foreach s = new ScriptC_foreach(pRS);
48        pRS.setMessageHandler(mRsMessage);
49        initializeGlobals(pRS, s);
50        s.forEach_root(A);
51        s.invoke_verify_root();
52        s.forEach_foo(A, A);
53        s.invoke_verify_foo();
54        s.invoke_foreach_test();
55        pRS.finish();
56        waitForMessage();
57        pRS.destroy();
58    }
59}
60