1/*
2 * Copyright (C) 2017 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.unittest;
18
19import android.content.Context;
20import android.renderscript.Allocation;
21import android.renderscript.Element;
22import android.renderscript.RenderScript;
23import android.renderscript.Script;
24import android.renderscript.Type;
25
26public class UT_foreach_bounds extends UnitTest {
27    private Allocation A;
28
29    public UT_foreach_bounds(Context ctx) {
30        super("ForEach (bounds)", ctx);
31    }
32
33    private void initializeGlobals(RenderScript RS, ScriptC_foreach_bounds s) {
34        Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
35        int X = 5;
36        int Y = 7;
37        final int xStart = 2;
38        final int xEnd = 5;
39        final int yStart = 3;
40        final int yEnd = 6;
41        s.set_dimX(X);
42        s.set_dimY(Y);
43        typeBuilder.setX(X).setY(Y);
44        A = Allocation.createTyped(RS, typeBuilder.create());
45        s.set_aRaw(A);
46        s.set_s(s);
47        s.set_ain(A);
48        s.set_aout(A);
49        s.set_xStart(xStart);
50        s.set_xEnd(xEnd);
51        s.set_yStart(yStart);
52        s.set_yEnd(yEnd);
53        s.forEach_zero(A);
54
55        Script.LaunchOptions sc = new Script.LaunchOptions();
56        sc.setX(xStart, xEnd).setY(yStart, yEnd);
57        s.forEach_root(A, sc);
58
59        return;
60    }
61
62    public void run() {
63        RenderScript pRS = createRenderScript(true);
64        ScriptC_foreach_bounds s = new ScriptC_foreach_bounds(pRS);
65        initializeGlobals(pRS, s);
66        s.invoke_verify_root();
67        s.invoke_foreach_bounds_test();
68        pRS.finish();
69        A.getType().destroy();
70        A.destroy();
71        s.destroy();
72        pRS.destroy();
73    }
74}
75