blob: 4078c8ad84fd9dba021e4087faa0de95908a1b84 [file] [log] [blame]
Jason Samsb8c5a842009-07-31 20:40:47 -07001/*
2 * Copyright (C) 2008 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 android.renderscript;
18
19
20import java.io.IOException;
21import java.io.InputStream;
22
23import android.content.res.Resources;
24import android.os.Bundle;
25import android.util.Config;
26import android.util.Log;
27
28import android.graphics.Bitmap;
29import android.graphics.BitmapFactory;
30
31/**
32 * @hide
33 *
34 **/
35public class Type extends BaseObj {
36 Type(int id, RenderScript rs) {
37 super(rs);
38 mID = id;
39 }
40
41 public void destroy() {
42 mRS.nTypeDestroy(mID);
43 mID = 0;
44 }
45
46 public static class Builder {
47 RenderScript mRS;
Jason Sams22534172009-08-04 16:58:20 -070048 Entry[] mEntries;
49 int mEntryCount;
50 Element mElement;
Jason Samsb8c5a842009-07-31 20:40:47 -070051
Jason Sams22534172009-08-04 16:58:20 -070052 class Entry {
53 Dimension mDim;
54 int mValue;
Jason Samsb8c5a842009-07-31 20:40:47 -070055 }
56
Jason Sams22534172009-08-04 16:58:20 -070057 public Builder(RenderScript rs, Element e) {
58 mRS = rs;
59 mEntries = new Entry[4];
60 mElement = e;
Jason Samsb8c5a842009-07-31 20:40:47 -070061 }
62
63 public void add(Dimension d, int value) {
Jason Sams22534172009-08-04 16:58:20 -070064 if(mEntries.length >= mEntryCount) {
65 Entry[] en = new Entry[mEntryCount + 8];
66 for(int ct=0; ct < mEntries.length; ct++) {
67 en[ct] = mEntries[ct];
68 }
69 mEntries = en;
70 }
71 mEntries[mEntryCount] = new Entry();
72 mEntries[mEntryCount].mDim = d;
73 mEntries[mEntryCount].mValue = value;
74 mEntryCount++;
75 }
76
77 static synchronized Type internalCreate(RenderScript rs, Builder b) {
78 rs.nTypeBegin(b.mElement.mID);
79 for (int ct=0; ct < b.mEntryCount; ct++) {
80 Entry en = b.mEntries[ct];
81 rs.nTypeAdd(en.mDim.mID, en.mValue);
82 }
83 int id = rs.nTypeCreate();
84 return new Type(id, rs);
Jason Samsb8c5a842009-07-31 20:40:47 -070085 }
86
87 public Type create() {
Jason Sams22534172009-08-04 16:58:20 -070088 return internalCreate(mRS, this);
Jason Samsb8c5a842009-07-31 20:40:47 -070089 }
90 }
91
92}