Home | History | Annotate | Download | only in unittest
      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 
     17 package com.android.rs.unittest;
     18 
     19 import android.content.Context;
     20 import android.renderscript.Allocation;
     21 import android.renderscript.Element;
     22 import android.renderscript.RenderScript;
     23 import android.renderscript.Type;
     24 
     25 public class UT_refcount extends UnitTest {
     26     private Type mT;
     27     private Allocation mA;
     28 
     29     public UT_refcount(Context ctx) {
     30         super("Refcount", ctx);
     31     }
     32 
     33     private void initializeGlobals(RenderScript RS, ScriptC_refcount s) {
     34         Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
     35         int X = 500;
     36         int Y = 700;
     37         typeBuilder.setX(X).setY(Y);
     38         mT = typeBuilder.create();
     39         mA = Allocation.createTyped(RS, mT);
     40         s.set_globalA(mA);
     41     }
     42 
     43     public void run() {
     44         RenderScript pRS = createRenderScript(true);
     45         ScriptC_refcount s = new ScriptC_refcount(pRS);
     46         initializeGlobals(pRS, s);
     47         s.invoke_refcount_test();
     48         pRS.finish();
     49         mA.destroy();
     50         mT.destroy();
     51         s.destroy();
     52         pRS.destroy();
     53     }
     54 }
     55