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.RenderScript;
21
22public class UT_struct extends UnitTest {
23
24    public UT_struct(Context ctx) {
25        super("Struct", ctx);
26    }
27
28    public void run() {
29        RenderScript pRS = createRenderScript(true);
30        ScriptC_struct s = new ScriptC_struct(pRS);
31
32        ScriptField_Point2 p = new ScriptField_Point2(pRS, 1);
33        ScriptField_Point2.Item i = new ScriptField_Point2.Item();
34        int val = 100;
35        i.x = val;
36        i.y = val;
37        p.set(i, 0, true);
38        s.bind_point2(p);
39        s.invoke_struct_test(val);
40        pRS.finish();
41
42        val = 200;
43        p.set_x(0, val, true);
44        p.set_y(0, val, true);
45        s.invoke_struct_test(val);
46        pRS.finish();
47        p.getAllocation().destroy();
48        p.getElement().destroy();
49        s.destroy();
50        pRS.destroy();
51    }
52}
53