blob: dd9fa155ffe2263d393af7996ea56754cad2ce41 [file] [log] [blame]
Jason Sams36e612a2009-07-31 16:26:13 -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
Jason Sams43ee06852009-08-12 17:54:11 -070019import java.lang.reflect.Field;
Alex Sakhartchoukdfac8142010-07-15 11:33:03 -070020import android.util.Log;
Jason Sams36e612a2009-07-31 16:26:13 -070021
22/**
23 * @hide
24 *
25 **/
26public class Element extends BaseObj {
Jason Samsea84a7c2009-09-04 14:42:41 -070027 int mSize;
Jason Sams718cd1f2009-12-23 14:35:29 -080028 Element[] mElements;
29 String[] mElementNames;
Jason Sams70d4e502010-09-02 17:35:23 -070030 int[] mArraySizes;
Jason Sams36e612a2009-07-31 16:26:13 -070031
Jason Sams718cd1f2009-12-23 14:35:29 -080032 DataType mType;
33 DataKind mKind;
34 boolean mNormalized;
35 int mVectorSize;
Jason Sams768bc022009-09-21 19:41:04 -070036
Jason Sams718cd1f2009-12-23 14:35:29 -080037 int getSizeBytes() {return mSize;}
Jason Sams36e612a2009-07-31 16:26:13 -070038
39 public enum DataType {
Jason Sams718cd1f2009-12-23 14:35:29 -080040 //FLOAT_16 (1, 2),
41 FLOAT_32 (2, 4),
Stephen Hines02f417052010-09-30 15:19:22 -070042 FLOAT_64 (3, 8),
Jason Sams718cd1f2009-12-23 14:35:29 -080043 SIGNED_8 (4, 1),
44 SIGNED_16 (5, 2),
45 SIGNED_32 (6, 4),
46 //SIGNED_64 (7, 8),
47 UNSIGNED_8 (8, 1),
48 UNSIGNED_16 (9, 2),
49 UNSIGNED_32 (10, 4),
50 //UNSIGNED_64 (11, 8),
51
Jason Samsf110d4b2010-06-21 17:42:41 -070052 BOOLEAN(12, 1),
Jason Sams718cd1f2009-12-23 14:35:29 -080053
Jason Samsf110d4b2010-06-21 17:42:41 -070054 UNSIGNED_5_6_5 (13, 2),
55 UNSIGNED_5_5_5_1 (14, 2),
56 UNSIGNED_4_4_4_4 (15, 2),
57
Jason Sams1d45c472010-08-25 14:31:48 -070058 MATRIX_4X4 (16, 64),
59 MATRIX_3X3 (17, 36),
60 MATRIX_2X2 (18, 16),
61
62 RS_ELEMENT (1000, 4),
63 RS_TYPE (1001, 4),
64 RS_ALLOCATION (1002, 4),
65 RS_SAMPLER (1003, 4),
66 RS_SCRIPT (1004, 4),
67 RS_MESH (1005, 4),
68 RS_PROGRAM_FRAGMENT (1006, 4),
69 RS_PROGRAM_VERTEX (1007, 4),
70 RS_PROGRAM_RASTER (1008, 4),
71 RS_PROGRAM_STORE (1009, 4);
Jason Sams36e612a2009-07-31 16:26:13 -070072
73 int mID;
Jason Sams718cd1f2009-12-23 14:35:29 -080074 int mSize;
75 DataType(int id, int size) {
Jason Sams36e612a2009-07-31 16:26:13 -070076 mID = id;
Jason Sams718cd1f2009-12-23 14:35:29 -080077 mSize = size;
Jason Sams36e612a2009-07-31 16:26:13 -070078 }
79 }
80
81 public enum DataKind {
82 USER (0),
Jason Sams718cd1f2009-12-23 14:35:29 -080083
84 PIXEL_L (7),
85 PIXEL_A (8),
86 PIXEL_LA (9),
87 PIXEL_RGB (10),
88 PIXEL_RGBA (11);
Jason Sams36e612a2009-07-31 16:26:13 -070089
90 int mID;
91 DataKind(int id) {
92 mID = id;
93 }
94 }
95
Jason Samsf110d4b2010-06-21 17:42:41 -070096 public static Element BOOLEAN(RenderScript rs) {
97 if(rs.mElement_BOOLEAN == null) {
98 rs.mElement_BOOLEAN = createUser(rs, DataType.BOOLEAN);
99 }
100 return rs.mElement_BOOLEAN;
101 }
102
Jason Sams8cb39de2010-06-01 15:47:01 -0700103 public static Element U8(RenderScript rs) {
104 if(rs.mElement_U8 == null) {
105 rs.mElement_U8 = createUser(rs, DataType.UNSIGNED_8);
Jason Sams718cd1f2009-12-23 14:35:29 -0800106 }
Jason Sams8cb39de2010-06-01 15:47:01 -0700107 return rs.mElement_U8;
Jason Sams718cd1f2009-12-23 14:35:29 -0800108 }
109
Jason Sams8cb39de2010-06-01 15:47:01 -0700110 public static Element I8(RenderScript rs) {
111 if(rs.mElement_I8 == null) {
112 rs.mElement_I8 = createUser(rs, DataType.SIGNED_8);
Jason Sams718cd1f2009-12-23 14:35:29 -0800113 }
Jason Sams8cb39de2010-06-01 15:47:01 -0700114 return rs.mElement_I8;
Jason Sams718cd1f2009-12-23 14:35:29 -0800115 }
116
Jason Samse29f3e72010-06-08 15:40:48 -0700117 public static Element U16(RenderScript rs) {
118 if(rs.mElement_U16 == null) {
119 rs.mElement_U16 = createUser(rs, DataType.UNSIGNED_16);
120 }
121 return rs.mElement_U16;
122 }
123
124 public static Element I16(RenderScript rs) {
125 if(rs.mElement_I16 == null) {
126 rs.mElement_I16 = createUser(rs, DataType.SIGNED_16);
127 }
128 return rs.mElement_I16;
129 }
130
Jason Sams8cb39de2010-06-01 15:47:01 -0700131 public static Element U32(RenderScript rs) {
132 if(rs.mElement_U32 == null) {
133 rs.mElement_U32 = createUser(rs, DataType.UNSIGNED_32);
Jason Sams718cd1f2009-12-23 14:35:29 -0800134 }
Jason Sams8cb39de2010-06-01 15:47:01 -0700135 return rs.mElement_U32;
Jason Sams718cd1f2009-12-23 14:35:29 -0800136 }
137
Jason Sams8cb39de2010-06-01 15:47:01 -0700138 public static Element I32(RenderScript rs) {
139 if(rs.mElement_I32 == null) {
140 rs.mElement_I32 = createUser(rs, DataType.SIGNED_32);
Jason Sams718cd1f2009-12-23 14:35:29 -0800141 }
Jason Sams8cb39de2010-06-01 15:47:01 -0700142 return rs.mElement_I32;
Jason Sams718cd1f2009-12-23 14:35:29 -0800143 }
144
Jason Sams8cb39de2010-06-01 15:47:01 -0700145 public static Element F32(RenderScript rs) {
146 if(rs.mElement_F32 == null) {
147 rs.mElement_F32 = createUser(rs, DataType.FLOAT_32);
Jason Sams718cd1f2009-12-23 14:35:29 -0800148 }
Jason Sams8cb39de2010-06-01 15:47:01 -0700149 return rs.mElement_F32;
Jason Sams718cd1f2009-12-23 14:35:29 -0800150 }
151
Stephen Hines02f417052010-09-30 15:19:22 -0700152 public static Element F64(RenderScript rs) {
153 if(rs.mElement_F64 == null) {
154 rs.mElement_F64 = createUser(rs, DataType.FLOAT_64);
155 }
156 return rs.mElement_F64;
157 }
158
Jason Sams8cb39de2010-06-01 15:47:01 -0700159 public static Element ELEMENT(RenderScript rs) {
160 if(rs.mElement_ELEMENT == null) {
161 rs.mElement_ELEMENT = createUser(rs, DataType.RS_ELEMENT);
Jason Samsa70f4162010-03-26 15:33:42 -0700162 }
Jason Sams8cb39de2010-06-01 15:47:01 -0700163 return rs.mElement_ELEMENT;
Jason Samsa70f4162010-03-26 15:33:42 -0700164 }
165
Jason Sams8cb39de2010-06-01 15:47:01 -0700166 public static Element TYPE(RenderScript rs) {
167 if(rs.mElement_TYPE == null) {
168 rs.mElement_TYPE = createUser(rs, DataType.RS_TYPE);
Jason Samsa70f4162010-03-26 15:33:42 -0700169 }
Jason Sams8cb39de2010-06-01 15:47:01 -0700170 return rs.mElement_TYPE;
Jason Samsa70f4162010-03-26 15:33:42 -0700171 }
172
Jason Sams8cb39de2010-06-01 15:47:01 -0700173 public static Element ALLOCATION(RenderScript rs) {
174 if(rs.mElement_ALLOCATION == null) {
175 rs.mElement_ALLOCATION = createUser(rs, DataType.RS_ALLOCATION);
Jason Samsa70f4162010-03-26 15:33:42 -0700176 }
Jason Sams8cb39de2010-06-01 15:47:01 -0700177 return rs.mElement_ALLOCATION;
Jason Samsa70f4162010-03-26 15:33:42 -0700178 }
179
Jason Sams8cb39de2010-06-01 15:47:01 -0700180 public static Element SAMPLER(RenderScript rs) {
181 if(rs.mElement_SAMPLER == null) {
182 rs.mElement_SAMPLER = createUser(rs, DataType.RS_SAMPLER);
Jason Samsa70f4162010-03-26 15:33:42 -0700183 }
Jason Sams8cb39de2010-06-01 15:47:01 -0700184 return rs.mElement_SAMPLER;
Jason Samsa70f4162010-03-26 15:33:42 -0700185 }
186
Jason Sams8cb39de2010-06-01 15:47:01 -0700187 public static Element SCRIPT(RenderScript rs) {
188 if(rs.mElement_SCRIPT == null) {
189 rs.mElement_SCRIPT = createUser(rs, DataType.RS_SCRIPT);
Jason Samsa70f4162010-03-26 15:33:42 -0700190 }
Jason Sams8cb39de2010-06-01 15:47:01 -0700191 return rs.mElement_SCRIPT;
Jason Samsa70f4162010-03-26 15:33:42 -0700192 }
193
Jason Sams8cb39de2010-06-01 15:47:01 -0700194 public static Element MESH(RenderScript rs) {
195 if(rs.mElement_MESH == null) {
196 rs.mElement_MESH = createUser(rs, DataType.RS_MESH);
Jason Samsa70f4162010-03-26 15:33:42 -0700197 }
Jason Sams8cb39de2010-06-01 15:47:01 -0700198 return rs.mElement_MESH;
Jason Samsa70f4162010-03-26 15:33:42 -0700199 }
200
Jason Sams8cb39de2010-06-01 15:47:01 -0700201 public static Element PROGRAM_FRAGMENT(RenderScript rs) {
202 if(rs.mElement_PROGRAM_FRAGMENT == null) {
203 rs.mElement_PROGRAM_FRAGMENT = createUser(rs, DataType.RS_PROGRAM_FRAGMENT);
Jason Samsa70f4162010-03-26 15:33:42 -0700204 }
Jason Sams8cb39de2010-06-01 15:47:01 -0700205 return rs.mElement_PROGRAM_FRAGMENT;
Jason Samsa70f4162010-03-26 15:33:42 -0700206 }
207
Jason Sams8cb39de2010-06-01 15:47:01 -0700208 public static Element PROGRAM_VERTEX(RenderScript rs) {
209 if(rs.mElement_PROGRAM_VERTEX == null) {
210 rs.mElement_PROGRAM_VERTEX = createUser(rs, DataType.RS_PROGRAM_VERTEX);
Jason Samsa70f4162010-03-26 15:33:42 -0700211 }
Jason Sams8cb39de2010-06-01 15:47:01 -0700212 return rs.mElement_PROGRAM_VERTEX;
Jason Samsa70f4162010-03-26 15:33:42 -0700213 }
214
Jason Sams8cb39de2010-06-01 15:47:01 -0700215 public static Element PROGRAM_RASTER(RenderScript rs) {
216 if(rs.mElement_PROGRAM_RASTER == null) {
217 rs.mElement_PROGRAM_RASTER = createUser(rs, DataType.RS_PROGRAM_RASTER);
Jason Samsa70f4162010-03-26 15:33:42 -0700218 }
Jason Sams8cb39de2010-06-01 15:47:01 -0700219 return rs.mElement_PROGRAM_RASTER;
Jason Samsa70f4162010-03-26 15:33:42 -0700220 }
221
Jason Sams8cb39de2010-06-01 15:47:01 -0700222 public static Element PROGRAM_STORE(RenderScript rs) {
223 if(rs.mElement_PROGRAM_STORE == null) {
224 rs.mElement_PROGRAM_STORE = createUser(rs, DataType.RS_PROGRAM_STORE);
Jason Samsa70f4162010-03-26 15:33:42 -0700225 }
Jason Sams8cb39de2010-06-01 15:47:01 -0700226 return rs.mElement_PROGRAM_STORE;
Jason Samsa70f4162010-03-26 15:33:42 -0700227 }
228
229
Jason Sams718cd1f2009-12-23 14:35:29 -0800230 public static Element A_8(RenderScript rs) {
231 if(rs.mElement_A_8 == null) {
232 rs.mElement_A_8 = createPixel(rs, DataType.UNSIGNED_8, DataKind.PIXEL_A);
233 }
234 return rs.mElement_A_8;
235 }
236
237 public static Element RGB_565(RenderScript rs) {
238 if(rs.mElement_RGB_565 == null) {
239 rs.mElement_RGB_565 = createPixel(rs, DataType.UNSIGNED_5_6_5, DataKind.PIXEL_RGB);
240 }
241 return rs.mElement_RGB_565;
242 }
243
244 public static Element RGB_888(RenderScript rs) {
245 if(rs.mElement_RGB_888 == null) {
246 rs.mElement_RGB_888 = createPixel(rs, DataType.UNSIGNED_8, DataKind.PIXEL_RGB);
247 }
248 return rs.mElement_RGB_888;
249 }
250
251 public static Element RGBA_5551(RenderScript rs) {
252 if(rs.mElement_RGBA_5551 == null) {
253 rs.mElement_RGBA_5551 = createPixel(rs, DataType.UNSIGNED_5_5_5_1, DataKind.PIXEL_RGBA);
254 }
255 return rs.mElement_RGBA_5551;
256 }
257
258 public static Element RGBA_4444(RenderScript rs) {
259 if(rs.mElement_RGBA_4444 == null) {
260 rs.mElement_RGBA_4444 = createPixel(rs, DataType.UNSIGNED_4_4_4_4, DataKind.PIXEL_RGBA);
261 }
262 return rs.mElement_RGBA_4444;
263 }
264
265 public static Element RGBA_8888(RenderScript rs) {
266 if(rs.mElement_RGBA_8888 == null) {
267 rs.mElement_RGBA_8888 = createPixel(rs, DataType.UNSIGNED_8, DataKind.PIXEL_RGBA);
268 }
269 return rs.mElement_RGBA_8888;
270 }
271
Jason Sams8cb39de2010-06-01 15:47:01 -0700272 public static Element F32_2(RenderScript rs) {
273 if(rs.mElement_FLOAT_2 == null) {
274 rs.mElement_FLOAT_2 = createVector(rs, DataType.FLOAT_32, 2);
Jason Sams718cd1f2009-12-23 14:35:29 -0800275 }
Jason Sams8cb39de2010-06-01 15:47:01 -0700276 return rs.mElement_FLOAT_2;
Jason Sams718cd1f2009-12-23 14:35:29 -0800277 }
278
Jason Sams8cb39de2010-06-01 15:47:01 -0700279 public static Element F32_3(RenderScript rs) {
280 if(rs.mElement_FLOAT_3 == null) {
281 rs.mElement_FLOAT_3 = createVector(rs, DataType.FLOAT_32, 3);
Jason Sams718cd1f2009-12-23 14:35:29 -0800282 }
Jason Sams8cb39de2010-06-01 15:47:01 -0700283 return rs.mElement_FLOAT_3;
Jason Sams718cd1f2009-12-23 14:35:29 -0800284 }
285
Jason Sams8cb39de2010-06-01 15:47:01 -0700286 public static Element F32_4(RenderScript rs) {
287 if(rs.mElement_FLOAT_4 == null) {
288 rs.mElement_FLOAT_4 = createVector(rs, DataType.FLOAT_32, 4);
Jason Sams718cd1f2009-12-23 14:35:29 -0800289 }
Jason Sams8cb39de2010-06-01 15:47:01 -0700290 return rs.mElement_FLOAT_4;
Jason Sams718cd1f2009-12-23 14:35:29 -0800291 }
292
Jason Sams8cb39de2010-06-01 15:47:01 -0700293 public static Element U8_4(RenderScript rs) {
294 if(rs.mElement_UCHAR_4 == null) {
295 rs.mElement_UCHAR_4 = createVector(rs, DataType.UNSIGNED_8, 4);
Jason Sams718cd1f2009-12-23 14:35:29 -0800296 }
Jason Sams8cb39de2010-06-01 15:47:01 -0700297 return rs.mElement_UCHAR_4;
Jason Sams718cd1f2009-12-23 14:35:29 -0800298 }
299
Jason Sams1d45c472010-08-25 14:31:48 -0700300 public static Element MATRIX_4X4(RenderScript rs) {
301 if(rs.mElement_MATRIX_4X4 == null) {
302 rs.mElement_MATRIX_4X4 = createUser(rs, DataType.MATRIX_4X4);
303 }
304 return rs.mElement_MATRIX_4X4;
305 }
306 public static Element MATRIX4X4(RenderScript rs) {
307 return MATRIX_4X4(rs);
308 }
309
310 public static Element MATRIX_3X3(RenderScript rs) {
311 if(rs.mElement_MATRIX_3X3 == null) {
312 rs.mElement_MATRIX_3X3 = createUser(rs, DataType.MATRIX_3X3);
313 }
314 return rs.mElement_MATRIX_4X4;
315 }
316
317 public static Element MATRIX_2X2(RenderScript rs) {
318 if(rs.mElement_MATRIX_2X2 == null) {
319 rs.mElement_MATRIX_2X2 = createUser(rs, DataType.MATRIX_2X2);
320 }
321 return rs.mElement_MATRIX_2X2;
322 }
Jason Sams718cd1f2009-12-23 14:35:29 -0800323
Jason Sams70d4e502010-09-02 17:35:23 -0700324 Element(int id, RenderScript rs, Element[] e, String[] n, int[] as) {
Alex Sakhartchouk0de94442010-08-11 14:41:28 -0700325 super(id, rs);
Jason Samsea84a7c2009-09-04 14:42:41 -0700326 mSize = 0;
Jason Sams718cd1f2009-12-23 14:35:29 -0800327 mElements = e;
328 mElementNames = n;
Jason Sams70d4e502010-09-02 17:35:23 -0700329 mArraySizes = as;
Jason Sams718cd1f2009-12-23 14:35:29 -0800330 for (int ct = 0; ct < mElements.length; ct++ ) {
331 mSize += mElements[ct].mSize;
Jason Sams718cd1f2009-12-23 14:35:29 -0800332 }
Jason Sams718cd1f2009-12-23 14:35:29 -0800333 }
334
Alex Sakhartchouk0de94442010-08-11 14:41:28 -0700335 Element(int id, RenderScript rs, DataType dt, DataKind dk, boolean norm, int size) {
336 super(id, rs);
Jason Sams718cd1f2009-12-23 14:35:29 -0800337 mSize = dt.mSize * size;
338 mType = dt;
339 mKind = dk;
340 mNormalized = norm;
341 mVectorSize = size;
Jason Sams36e612a2009-07-31 16:26:13 -0700342 }
343
Alex Sakhartchouk0de94442010-08-11 14:41:28 -0700344 Element(int id, RenderScript rs) {
345 super(id, rs);
Alex Sakhartchoukdfac8142010-07-15 11:33:03 -0700346 }
347
348 @Override
349 void updateFromNative() {
350
351 // we will pack mType; mKind; mNormalized; mVectorSize; NumSubElements
352 int[] dataBuffer = new int[5];
353 mRS.nElementGetNativeData(mID, dataBuffer);
Alex Sakhartchouk0de94442010-08-11 14:41:28 -0700354
355 mNormalized = dataBuffer[2] == 1 ? true : false;
356 mVectorSize = dataBuffer[3];
357 mSize = 0;
Alex Sakhartchoukdfac8142010-07-15 11:33:03 -0700358 for (DataType dt: DataType.values()) {
359 if(dt.mID == dataBuffer[0]){
360 mType = dt;
Alex Sakhartchouk0de94442010-08-11 14:41:28 -0700361 mSize = mType.mSize * mVectorSize;
Alex Sakhartchoukdfac8142010-07-15 11:33:03 -0700362 }
363 }
364 for (DataKind dk: DataKind.values()) {
365 if(dk.mID == dataBuffer[1]){
366 mKind = dk;
367 }
368 }
369
Alex Sakhartchoukdfac8142010-07-15 11:33:03 -0700370 int numSubElements = dataBuffer[4];
371 if(numSubElements > 0) {
372 mElements = new Element[numSubElements];
373 mElementNames = new String[numSubElements];
374
375 int[] subElementIds = new int[numSubElements];
376 mRS.nElementGetSubElements(mID, subElementIds, mElementNames);
377 for(int i = 0; i < numSubElements; i ++) {
Alex Sakhartchouk0de94442010-08-11 14:41:28 -0700378 mElements[i] = new Element(subElementIds[i], mRS);
Alex Sakhartchoukdfac8142010-07-15 11:33:03 -0700379 mElements[i].updateFromNative();
Alex Sakhartchouk0de94442010-08-11 14:41:28 -0700380 mSize += mElements[i].mSize;
Alex Sakhartchoukdfac8142010-07-15 11:33:03 -0700381 }
382 }
383
384 }
385
Jason Sams36e612a2009-07-31 16:26:13 -0700386 public void destroy() throws IllegalStateException {
Jason Sams7ce033d2009-08-18 14:14:24 -0700387 super.destroy();
Jason Sams36e612a2009-07-31 16:26:13 -0700388 }
389
Jason Sams718cd1f2009-12-23 14:35:29 -0800390 /////////////////////////////////////////
391 public static Element createUser(RenderScript rs, DataType dt) {
Alex Sakhartchouk0de94442010-08-11 14:41:28 -0700392 DataKind dk = DataKind.USER;
393 boolean norm = false;
394 int vecSize = 1;
395 int id = rs.nElementCreate(dt.mID, dk.mID, norm, vecSize);
396 return new Element(id, rs, dt, dk, norm, vecSize);
Jason Sams718cd1f2009-12-23 14:35:29 -0800397 }
398
399 public static Element createVector(RenderScript rs, DataType dt, int size) {
Jason Sams718cd1f2009-12-23 14:35:29 -0800400 if (size < 2 || size > 4) {
401 throw new IllegalArgumentException("Bad size");
Jason Samsea84a7c2009-09-04 14:42:41 -0700402 }
Alex Sakhartchouk0de94442010-08-11 14:41:28 -0700403 DataKind dk = DataKind.USER;
404 boolean norm = false;
405 int id = rs.nElementCreate(dt.mID, dk.mID, norm, size);
406 return new Element(id, rs, dt, dk, norm, size);
Jason Samsea84a7c2009-09-04 14:42:41 -0700407 }
408
Jason Sams718cd1f2009-12-23 14:35:29 -0800409 public static Element createPixel(RenderScript rs, DataType dt, DataKind dk) {
Jason Sams718cd1f2009-12-23 14:35:29 -0800410 if (!(dk == DataKind.PIXEL_L ||
411 dk == DataKind.PIXEL_A ||
412 dk == DataKind.PIXEL_LA ||
413 dk == DataKind.PIXEL_RGB ||
414 dk == DataKind.PIXEL_RGBA)) {
415 throw new IllegalArgumentException("Unsupported DataKind");
416 }
417 if (!(dt == DataType.UNSIGNED_8 ||
418 dt == DataType.UNSIGNED_5_6_5 ||
419 dt == DataType.UNSIGNED_4_4_4_4 ||
420 dt == DataType.UNSIGNED_5_5_5_1)) {
421 throw new IllegalArgumentException("Unsupported DataType");
422 }
423 if (dt == DataType.UNSIGNED_5_6_5 && dk != DataKind.PIXEL_RGB) {
424 throw new IllegalArgumentException("Bad kind and type combo");
425 }
426 if (dt == DataType.UNSIGNED_5_5_5_1 && dk != DataKind.PIXEL_RGBA) {
427 throw new IllegalArgumentException("Bad kind and type combo");
428 }
429 if (dt == DataType.UNSIGNED_4_4_4_4 && dk != DataKind.PIXEL_RGBA) {
430 throw new IllegalArgumentException("Bad kind and type combo");
431 }
432
433 int size = 1;
434 if (dk == DataKind.PIXEL_LA) {
435 size = 2;
436 }
437 if (dk == DataKind.PIXEL_RGB) {
438 size = 3;
439 }
440 if (dk == DataKind.PIXEL_RGBA) {
441 size = 4;
442 }
443
Alex Sakhartchouk0de94442010-08-11 14:41:28 -0700444 boolean norm = true;
445 int id = rs.nElementCreate(dt.mID, dk.mID, norm, size);
446 return new Element(id, rs, dt, dk, norm, size);
Jason Sams718cd1f2009-12-23 14:35:29 -0800447 }
Jason Sams36e612a2009-07-31 16:26:13 -0700448
449 public static class Builder {
450 RenderScript mRS;
Jason Sams718cd1f2009-12-23 14:35:29 -0800451 Element[] mElements;
452 String[] mElementNames;
Jason Sams70d4e502010-09-02 17:35:23 -0700453 int[] mArraySizes;
Jason Sams718cd1f2009-12-23 14:35:29 -0800454 int mCount;
Jason Sams22534172009-08-04 16:58:20 -0700455
456 public Builder(RenderScript rs) {
Jason Sams36e612a2009-07-31 16:26:13 -0700457 mRS = rs;
Jason Sams718cd1f2009-12-23 14:35:29 -0800458 mCount = 0;
459 mElements = new Element[8];
460 mElementNames = new String[8];
Jason Sams70d4e502010-09-02 17:35:23 -0700461 mArraySizes = new int[8];
Jason Sams36e612a2009-07-31 16:26:13 -0700462 }
463
Jason Sams70d4e502010-09-02 17:35:23 -0700464 public void add(Element element, String name, int arraySize) {
465 if (arraySize < 1) {
466 throw new IllegalArgumentException("Array size cannot be less than 1.");
467 }
Jason Sams718cd1f2009-12-23 14:35:29 -0800468 if(mCount == mElements.length) {
469 Element[] e = new Element[mCount + 8];
470 String[] s = new String[mCount + 8];
Jason Sams70d4e502010-09-02 17:35:23 -0700471 int[] as = new int[mCount + 8];
Jason Sams718cd1f2009-12-23 14:35:29 -0800472 System.arraycopy(mElements, 0, e, 0, mCount);
473 System.arraycopy(mElementNames, 0, s, 0, mCount);
Jason Sams70d4e502010-09-02 17:35:23 -0700474 System.arraycopy(mArraySizes, 0, as, 0, mCount);
Jason Sams718cd1f2009-12-23 14:35:29 -0800475 mElements = e;
476 mElementNames = s;
Jason Sams70d4e502010-09-02 17:35:23 -0700477 mArraySizes = as;
Jason Sams36e612a2009-07-31 16:26:13 -0700478 }
Jason Sams718cd1f2009-12-23 14:35:29 -0800479 mElements[mCount] = element;
480 mElementNames[mCount] = name;
Jason Sams70d4e502010-09-02 17:35:23 -0700481 mArraySizes[mCount] = arraySize;
Jason Sams718cd1f2009-12-23 14:35:29 -0800482 mCount++;
Jason Sams07ae4062009-08-27 20:23:34 -0700483 }
484
Jason Sams70d4e502010-09-02 17:35:23 -0700485 public void add(Element element, String name) {
486 add(element, name, 1);
487 }
488
Jason Sams22534172009-08-04 16:58:20 -0700489 public Element create() {
Jason Sams771bebb2009-12-07 12:40:12 -0800490 mRS.validate();
Jason Sams718cd1f2009-12-23 14:35:29 -0800491 Element[] ein = new Element[mCount];
492 String[] sin = new String[mCount];
Jason Sams70d4e502010-09-02 17:35:23 -0700493 int[] asin = new int[mCount];
Jason Sams718cd1f2009-12-23 14:35:29 -0800494 java.lang.System.arraycopy(mElements, 0, ein, 0, mCount);
495 java.lang.System.arraycopy(mElementNames, 0, sin, 0, mCount);
Jason Sams70d4e502010-09-02 17:35:23 -0700496 java.lang.System.arraycopy(mArraySizes, 0, asin, 0, mCount);
Alex Sakhartchouk0de94442010-08-11 14:41:28 -0700497
498 int[] ids = new int[ein.length];
499 for (int ct = 0; ct < ein.length; ct++ ) {
500 ids[ct] = ein[ct].mID;
501 }
Jason Sams70d4e502010-09-02 17:35:23 -0700502 int id = mRS.nElementCreate2(ids, sin, asin);
503 return new Element(id, mRS, ein, sin, asin);
Jason Sams36e612a2009-07-31 16:26:13 -0700504 }
505 }
506
Jason Sams718cd1f2009-12-23 14:35:29 -0800507 static void initPredefined(RenderScript rs) {
508 int a8 = rs.nElementCreate(DataType.UNSIGNED_8.mID,
509 DataKind.PIXEL_A.mID, true, 1);
510 int rgba4444 = rs.nElementCreate(DataType.UNSIGNED_4_4_4_4.mID,
511 DataKind.PIXEL_RGBA.mID, true, 4);
512 int rgba8888 = rs.nElementCreate(DataType.UNSIGNED_8.mID,
513 DataKind.PIXEL_RGBA.mID, true, 4);
514 int rgb565 = rs.nElementCreate(DataType.UNSIGNED_5_6_5.mID,
515 DataKind.PIXEL_RGB.mID, true, 3);
516 rs.nInitElements(a8, rgba4444, rgba8888, rgb565);
517 }
Jason Sams36e612a2009-07-31 16:26:13 -0700518}
519