1// This file is automatically generated from
2// frameworks/rs/tests/java_api/RSUnitTests/RSUnitTests.py
3/*
4 * Copyright (C) 2017 The Android Open Source Project
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 *      http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18
19package com.android.rs.unittest;
20
21import android.content.Context;
22import android.support.v8.renderscript.Allocation;
23import android.support.v8.renderscript.Element;
24import android.support.v8.renderscript.RenderScript;
25import android.support.v8.renderscript.Type;
26
27public class UT_array_alloc extends UnitTest {
28
29    public UT_array_alloc(Context ctx) {
30        super("Array Allocation", ctx);
31    }
32
33    public void run() {
34        RenderScript pRS = createRenderScript(true);
35        ScriptC_array_alloc s = new ScriptC_array_alloc(pRS);
36
37        int dimX = s.get_dimX();
38        Allocation[] Arr = new Allocation[dimX];
39        Type.Builder typeBuilder = new Type.Builder(pRS, Element.I32(pRS));
40        Type T = typeBuilder.setX(1).create();
41        for (int i = 0; i < dimX; i++) {
42            Allocation A = Allocation.createTyped(pRS, T);
43            Arr[i] = A;
44        }
45        s.set_a(Arr);
46
47        s.invoke_array_alloc_test();
48        pRS.finish();
49        for (int i = 0; i < dimX; i++) {
50            Arr[i].destroy();
51        }
52        T.destroy();
53        s.destroy();
54        pRS.destroy();
55        passTest();
56    }
57}
58