1/*
2 * Copyright (C) 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_bounds extends UnitTest {
24    private Resources mRes;
25    private Allocation A;
26
27    protected UT_foreach_bounds(RSTestCore rstc, Resources res, Context ctx) {
28        super(rstc, "ForEach (bounds)", ctx);
29        mRes = res;
30    }
31
32    private void initializeGlobals(RenderScript RS, ScriptC_foreach_bounds 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        s.set_s(s);
42        s.set_ain(A);
43        s.set_aout(A);
44        s.set_xStart(2);
45        s.set_xEnd(5);
46        s.set_yStart(3);
47        s.set_yEnd(6);
48        s.forEach_zero(A);
49
50        return;
51    }
52
53    public void run() {
54        RenderScript pRS = RenderScript.create(mCtx);
55        ScriptC_foreach_bounds s = new ScriptC_foreach_bounds(pRS);
56        pRS.setMessageHandler(mRsMessage);
57        initializeGlobals(pRS, s);
58        s.invoke_foreach_bounds_test();
59        pRS.finish();
60        waitForMessage();
61        pRS.destroy();
62    }
63}
64