1/*
2 * Copyright (C) 2012 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;
18
19import android.content.Context;
20import android.content.res.Resources;
21import android.renderscript.*;
22
23public class UT_struct extends UnitTest {
24    private Resources mRes;
25
26    protected UT_struct(RSTestCore rstc, Resources res, Context ctx) {
27        super(rstc, "Struct", ctx);
28        mRes = res;
29    }
30
31    public void run() {
32        RenderScript pRS = RenderScript.create(mCtx);
33        ScriptC_struct s = new ScriptC_struct(pRS);
34        pRS.setMessageHandler(mRsMessage);
35
36        ScriptField_Point2 p = new ScriptField_Point2(pRS, 1);
37        ScriptField_Point2.Item i = new ScriptField_Point2.Item();
38        int val = 100;
39        i.x = val;
40        i.y = val;
41        p.set(i, 0, true);
42        s.bind_point2(p);
43        s.invoke_struct_test(val);
44        pRS.finish();
45        waitForMessage();
46
47        val = 200;
48        p.set_x(0, val, true);
49        p.set_y(0, val, true);
50        s.invoke_struct_test(val);
51        pRS.finish();
52        waitForMessage();
53        pRS.destroy();
54    }
55}
56