blob: 13d5fcd57446febbb136ab82e4c7598234bee1bc [file] [log] [blame]
Jason Sams69f0d312009-08-03 18:11:17 -07001/*
Stephen Hinesadeb8092012-04-20 14:26:06 -07002 * Copyright (C) 2008-2012 The Android Open Source Project
Jason Sams69f0d312009-08-03 18:11:17 -07003 *
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 Sams08a81582012-09-18 12:32:10 -070019import android.util.SparseArray;
20
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -070021/**
Tim Murrayc11e25c2013-04-09 11:01:01 -070022 * The parent class for all executable scripts. This should not be used by
23 * applications.
Jason Sams69f0d312009-08-03 18:11:17 -070024 **/
25public class Script extends BaseObj {
Jason Sams08a81582012-09-18 12:32:10 -070026
27 /**
28 * KernelID is an identifier for a Script + root function pair. It is used
29 * as an identifier for ScriptGroup creation.
30 *
31 * This class should not be directly created. Instead use the method in the
32 * reflected or intrinsic code "getKernelID_funcname()".
33 *
34 */
35 public static final class KernelID extends BaseObj {
36 Script mScript;
37 int mSlot;
38 int mSig;
Tim Murray7a629fa2013-11-19 12:45:54 -080039 KernelID(long id, RenderScript rs, Script s, int slot, int sig) {
Jason Sams08a81582012-09-18 12:32:10 -070040 super(id, rs);
41 mScript = s;
42 mSlot = slot;
43 mSig = sig;
Yang Ni6484b6b2016-03-24 09:40:32 -070044 guard.open("destroy");
Jason Sams08a81582012-09-18 12:32:10 -070045 }
46 }
47
48 private final SparseArray<KernelID> mKIDs = new SparseArray<KernelID>();
49 /**
50 * Only to be used by generated reflected classes.
Jason Sams08a81582012-09-18 12:32:10 -070051 */
Chris Wailesbe7b1de2014-07-15 10:56:14 -070052 protected KernelID createKernelID(int slot, int sig, Element ein,
53 Element eout) {
Jason Sams08a81582012-09-18 12:32:10 -070054 KernelID k = mKIDs.get(slot);
55 if (k != null) {
56 return k;
57 }
58
Tim Murray7a629fa2013-11-19 12:45:54 -080059 long id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig);
Jason Sams08a81582012-09-18 12:32:10 -070060 if (id == 0) {
61 throw new RSDriverException("Failed to create KernelID");
62 }
63
64 k = new KernelID(id, mRS, this, slot, sig);
65 mKIDs.put(slot, k);
66 return k;
67 }
68
69 /**
Yang Nibe392ad2015-01-23 17:16:02 -080070 * InvokeID is an identifier for an invoke function. It is used
71 * as an identifier for ScriptGroup creation.
72 *
73 * This class should not be directly created. Instead use the method in the
74 * reflected or intrinsic code "getInvokeID_funcname()".
75 *
76 */
77 public static final class InvokeID extends BaseObj {
78 Script mScript;
79 int mSlot;
80 InvokeID(long id, RenderScript rs, Script s, int slot) {
81 super(id, rs);
82 mScript = s;
83 mSlot = slot;
84 }
85 }
86
87 private final SparseArray<InvokeID> mIIDs = new SparseArray<InvokeID>();
88 /**
Yang Nibe392ad2015-01-23 17:16:02 -080089 * Only to be used by generated reflected classes.
90 */
91 protected InvokeID createInvokeID(int slot) {
92 InvokeID i = mIIDs.get(slot);
93 if (i != null) {
94 return i;
95 }
96
97 long id = mRS.nScriptInvokeIDCreate(getID(mRS), slot);
98 if (id == 0) {
99 throw new RSDriverException("Failed to create KernelID");
100 }
101
102 i = new InvokeID(id, mRS, this, slot);
103 mIIDs.put(slot, i);
104 return i;
105 }
106
107 /**
Jason Sams08a81582012-09-18 12:32:10 -0700108 * FieldID is an identifier for a Script + exported field pair. It is used
109 * as an identifier for ScriptGroup creation.
110 *
111 * This class should not be directly created. Instead use the method in the
112 * reflected or intrinsic code "getFieldID_funcname()".
113 *
114 */
115 public static final class FieldID extends BaseObj {
116 Script mScript;
117 int mSlot;
Tim Murray7a629fa2013-11-19 12:45:54 -0800118 FieldID(long id, RenderScript rs, Script s, int slot) {
Jason Sams08a81582012-09-18 12:32:10 -0700119 super(id, rs);
120 mScript = s;
121 mSlot = slot;
Yang Ni6484b6b2016-03-24 09:40:32 -0700122 guard.open("destroy");
Jason Sams08a81582012-09-18 12:32:10 -0700123 }
124 }
125
126 private final SparseArray<FieldID> mFIDs = new SparseArray();
127 /**
128 * Only to be used by generated reflected classes.
Jason Sams08a81582012-09-18 12:32:10 -0700129 */
130 protected FieldID createFieldID(int slot, Element e) {
131 FieldID f = mFIDs.get(slot);
132 if (f != null) {
133 return f;
134 }
135
Tim Murray7a629fa2013-11-19 12:45:54 -0800136 long id = mRS.nScriptFieldIDCreate(getID(mRS), slot);
Jason Sams08a81582012-09-18 12:32:10 -0700137 if (id == 0) {
138 throw new RSDriverException("Failed to create FieldID");
139 }
140
141 f = new FieldID(id, mRS, this, slot);
142 mFIDs.put(slot, f);
143 return f;
144 }
145
146
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700147 /**
Jason Sams67e3d202011-01-09 13:49:01 -0800148 * Only intended for use by generated reflected code.
149 *
Jason Sams67e3d202011-01-09 13:49:01 -0800150 */
Jason Sams2d71bc72010-03-26 16:06:43 -0700151 protected void invoke(int slot) {
Jason Samse07694b2012-04-03 15:36:36 -0700152 mRS.nScriptInvoke(getID(mRS), slot);
Jason Sams2d71bc72010-03-26 16:06:43 -0700153 }
154
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700155 /**
Jason Sams67e3d202011-01-09 13:49:01 -0800156 * Only intended for use by generated reflected code.
157 *
Jason Sams67e3d202011-01-09 13:49:01 -0800158 */
Jason Sams96ed4cf2010-06-15 12:15:57 -0700159 protected void invoke(int slot, FieldPacker v) {
160 if (v != null) {
Jason Samse07694b2012-04-03 15:36:36 -0700161 mRS.nScriptInvokeV(getID(mRS), slot, v.getData());
Jason Sams96ed4cf2010-06-15 12:15:57 -0700162 } else {
Jason Samse07694b2012-04-03 15:36:36 -0700163 mRS.nScriptInvoke(getID(mRS), slot);
Jason Sams96ed4cf2010-06-15 12:15:57 -0700164 }
Jason Sams4d339932010-05-11 14:03:58 -0700165 }
166
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700167 /**
Jason Sams6e494d32011-04-27 16:33:11 -0700168 * Only intended for use by generated reflected code.
169 *
Jason Sams6e494d32011-04-27 16:33:11 -0700170 */
Chris Wailesbe7b1de2014-07-15 10:56:14 -0700171 protected void forEach(int slot, Allocation ain, Allocation aout,
172 FieldPacker v) {
173 forEach(slot, ain, aout, v, null);
Jason Sams6e494d32011-04-27 16:33:11 -0700174 }
175
Jason Samsf64cca92013-04-19 12:56:37 -0700176 /**
177 * Only intended for use by generated reflected code.
178 *
Jason Samsf64cca92013-04-19 12:56:37 -0700179 */
Chris Wailesbe7b1de2014-07-15 10:56:14 -0700180 protected void forEach(int slot, Allocation ain, Allocation aout,
181 FieldPacker v, LaunchOptions sc) {
182 // TODO: Is this necessary if nScriptForEach calls validate as well?
Jason Sams678cc7f2014-03-05 16:09:02 -0800183 mRS.validate();
184 mRS.validateObject(ain);
185 mRS.validateObject(aout);
Chris Wailesbe7b1de2014-07-15 10:56:14 -0700186
Jason Samsd1516df2015-05-05 18:00:34 -0700187 if (ain == null && aout == null && sc == null) {
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800188 throw new RSIllegalArgumentException(
Jason Samsd1516df2015-05-05 18:00:34 -0700189 "At least one of input allocation, output allocation, or LaunchOptions is required to be non-null.");
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800190 }
Tim Murrayba9dd062013-02-12 16:22:34 -0800191
Chris Wailesbe7b1de2014-07-15 10:56:14 -0700192 long[] in_ids = null;
Stephen Hinesc9c7daf2014-08-13 17:32:19 +0000193 if (ain != null) {
Chris Wailesbe7b1de2014-07-15 10:56:14 -0700194 in_ids = mInIdsBuffer;
195 in_ids[0] = ain.getID(mRS);
Stephen Hinesc9c7daf2014-08-13 17:32:19 +0000196 }
Chris Wailesbe7b1de2014-07-15 10:56:14 -0700197
Tim Murray7a629fa2013-11-19 12:45:54 -0800198 long out_id = 0;
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800199 if (aout != null) {
200 out_id = aout.getID(mRS);
201 }
Chris Wailesbe7b1de2014-07-15 10:56:14 -0700202
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800203 byte[] params = null;
204 if (v != null) {
205 params = v.getData();
206 }
Chris Wailesbe7b1de2014-07-15 10:56:14 -0700207
208 int[] limits = null;
209 if (sc != null) {
210 limits = new int[6];
211
212 limits[0] = sc.xstart;
213 limits[1] = sc.xend;
214 limits[2] = sc.ystart;
215 limits[3] = sc.yend;
216 limits[4] = sc.zstart;
217 limits[5] = sc.zend;
218 }
219
220 mRS.nScriptForEach(getID(mRS), slot, in_ids, out_id, params, limits);
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800221 }
Jason Sams4d339932010-05-11 14:03:58 -0700222
Chris Wailes94961062014-06-11 12:01:28 -0700223 /**
224 * Only intended for use by generated reflected code.
Chris Wailes94961062014-06-11 12:01:28 -0700225 */
Chris Wailesbe7b1de2014-07-15 10:56:14 -0700226 protected void forEach(int slot, Allocation[] ains, Allocation aout,
227 FieldPacker v) {
Jason Sams6a420b52015-03-30 15:31:26 -0700228
229 // FieldPacker is kept here to support regular params in the future.
Chris Wailesbe7b1de2014-07-15 10:56:14 -0700230 forEach(slot, ains, aout, v, null);
Chris Wailes94961062014-06-11 12:01:28 -0700231 }
232
233 /**
234 * Only intended for use by generated reflected code.
Chris Wailes94961062014-06-11 12:01:28 -0700235 */
Chris Wailesbe7b1de2014-07-15 10:56:14 -0700236 protected void forEach(int slot, Allocation[] ains, Allocation aout,
237 FieldPacker v, LaunchOptions sc) {
238 // TODO: Is this necessary if nScriptForEach calls validate as well?
Jason Sams6a420b52015-03-30 15:31:26 -0700239 // FieldPacker is kept here to support regular params in the future.
Chris Wailes94961062014-06-11 12:01:28 -0700240 mRS.validate();
Andreas Gampec8ddcdd2015-03-15 15:57:30 -0700241 if (ains != null) {
242 for (Allocation ain : ains) {
243 mRS.validateObject(ain);
244 }
Chris Wailes94961062014-06-11 12:01:28 -0700245 }
Stephen Hinesc9c7daf2014-08-13 17:32:19 +0000246 mRS.validateObject(aout);
Chris Wailesbe7b1de2014-07-15 10:56:14 -0700247
Chris Wailes94961062014-06-11 12:01:28 -0700248 if (ains == null && aout == null) {
249 throw new RSIllegalArgumentException(
250 "At least one of ain or aout is required to be non-null.");
251 }
252
Andreas Gampead555f92015-03-17 20:05:46 -0700253 long[] in_ids;
254 if (ains != null) {
255 in_ids = new long[ains.length];
256 for (int index = 0; index < ains.length; ++index) {
257 in_ids[index] = ains[index].getID(mRS);
258 }
259 } else {
260 in_ids = null;
Chris Wailes94961062014-06-11 12:01:28 -0700261 }
262
263 long out_id = 0;
264 if (aout != null) {
265 out_id = aout.getID(mRS);
266 }
Chris Wailesbe7b1de2014-07-15 10:56:14 -0700267
Chris Wailes94961062014-06-11 12:01:28 -0700268 byte[] params = null;
269 if (v != null) {
270 params = v.getData();
271 }
Chris Wailesbe7b1de2014-07-15 10:56:14 -0700272
273 int[] limits = null;
274 if (sc != null) {
275 limits = new int[6];
276
277 limits[0] = sc.xstart;
278 limits[1] = sc.xend;
279 limits[2] = sc.ystart;
280 limits[3] = sc.yend;
281 limits[4] = sc.zstart;
282 limits[5] = sc.zend;
283 }
284
285 mRS.nScriptForEach(getID(mRS), slot, in_ids, out_id, params, limits);
Chris Wailes94961062014-06-11 12:01:28 -0700286 }
287
Matt Wala36eb1f72015-07-20 15:35:27 -0700288 /**
David Gross26ef7a732016-01-12 12:19:15 -0800289 * Only intended for use by generated reflected code. (General reduction)
290 *
David Gross26ef7a732016-01-12 12:19:15 -0800291 */
292 protected void reduce(int slot, Allocation[] ains, Allocation aout, LaunchOptions sc) {
293 mRS.validate();
294 if (ains == null || ains.length < 1) {
295 throw new RSIllegalArgumentException(
296 "At least one input is required.");
297 }
298 if (aout == null) {
299 throw new RSIllegalArgumentException(
300 "aout is required to be non-null.");
301 }
302 for (Allocation ain : ains) {
303 mRS.validateObject(ain);
304 }
305
306 long[] in_ids = new long[ains.length];
307 for (int index = 0; index < ains.length; ++index) {
308 in_ids[index] = ains[index].getID(mRS);
309 }
310 long out_id = aout.getID(mRS);
311
312 int[] limits = null;
313 if (sc != null) {
314 limits = new int[6];
315
316 limits[0] = sc.xstart;
317 limits[1] = sc.xend;
318 limits[2] = sc.ystart;
319 limits[3] = sc.yend;
320 limits[4] = sc.zstart;
321 limits[5] = sc.zend;
322 }
323
David Gross4a457852016-06-02 14:46:55 -0700324 mRS.nScriptReduce(getID(mRS), slot, in_ids, out_id, limits);
David Gross26ef7a732016-01-12 12:19:15 -0800325 }
326
Chris Wailesbe7b1de2014-07-15 10:56:14 -0700327 long[] mInIdsBuffer;
328
Tim Murray7a629fa2013-11-19 12:45:54 -0800329 Script(long id, RenderScript rs) {
Alex Sakhartchouk0de94442010-08-11 14:41:28 -0700330 super(id, rs);
Chris Wailesbe7b1de2014-07-15 10:56:14 -0700331
332 mInIdsBuffer = new long[1];
Yang Ni6484b6b2016-03-24 09:40:32 -0700333
334 /* The constructors for the derived classes (including ScriptIntrinsic
335 * derived classes and ScriptC derived classes generated by Slang
336 * reflection) seem to be simple enough, so we just put the guard.open()
337 * call here, rather than in the end of the constructor for the derived
338 * class. This, of course, assumes the derived constructor would not
339 * throw any exception after calling this constructor.
340 *
341 * If new derived classes are added with more complicated constructors
342 * that throw exceptions, this call has to be (duplicated and) moved
343 * to the end of each derived class constructor.
344 */
345 guard.open("destroy");
Jason Sams69f0d312009-08-03 18:11:17 -0700346 }
347
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700348 /**
Jason Sams67e3d202011-01-09 13:49:01 -0800349 * Only intended for use by generated reflected code.
350 *
Jason Sams67e3d202011-01-09 13:49:01 -0800351 */
Jason Sams69f0d312009-08-03 18:11:17 -0700352 public void bindAllocation(Allocation va, int slot) {
Jason Sams771bebb2009-12-07 12:40:12 -0800353 mRS.validate();
Jason Sams678cc7f2014-03-05 16:09:02 -0800354 mRS.validateObject(va);
Jason Sams4d339932010-05-11 14:03:58 -0700355 if (va != null) {
Chris Wailesbe7b1de2014-07-15 10:56:14 -0700356
357 android.content.Context context = mRS.getApplicationContext();
358
359 if (context.getApplicationInfo().targetSdkVersion >= 20) {
Jason Samscf9c8942014-01-14 16:18:14 -0800360 final Type t = va.mType;
Chris Wailesbe7b1de2014-07-15 10:56:14 -0700361 if (t.hasMipmaps() || t.hasFaces() || (t.getY() != 0) ||
362 (t.getZ() != 0)) {
363
Jason Samscf9c8942014-01-14 16:18:14 -0800364 throw new RSIllegalArgumentException(
Chris Wailesbe7b1de2014-07-15 10:56:14 -0700365 "API 20+ only allows simple 1D allocations to be " +
366 "used with bind.");
Jason Samscf9c8942014-01-14 16:18:14 -0800367 }
368 }
Jason Samse07694b2012-04-03 15:36:36 -0700369 mRS.nScriptBindAllocation(getID(mRS), va.getID(mRS), slot);
Jason Sams4d339932010-05-11 14:03:58 -0700370 } else {
Jason Samse07694b2012-04-03 15:36:36 -0700371 mRS.nScriptBindAllocation(getID(mRS), 0, slot);
Jason Sams4d339932010-05-11 14:03:58 -0700372 }
373 }
374
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700375 /**
Jason Sams67e3d202011-01-09 13:49:01 -0800376 * Only intended for use by generated reflected code.
377 *
Jason Sams67e3d202011-01-09 13:49:01 -0800378 */
Jason Sams4d339932010-05-11 14:03:58 -0700379 public void setVar(int index, float v) {
Jason Samse07694b2012-04-03 15:36:36 -0700380 mRS.nScriptSetVarF(getID(mRS), index, v);
Jason Sams4d339932010-05-11 14:03:58 -0700381 }
Tim Murray7c4caad2013-04-10 16:21:40 -0700382 public float getVarF(int index) {
383 return mRS.nScriptGetVarF(getID(mRS), index);
384 }
Jason Sams4d339932010-05-11 14:03:58 -0700385
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700386 /**
Jason Sams67e3d202011-01-09 13:49:01 -0800387 * Only intended for use by generated reflected code.
388 *
Jason Sams67e3d202011-01-09 13:49:01 -0800389 */
Stephen Hinesca54ec32010-09-20 17:20:30 -0700390 public void setVar(int index, double v) {
Jason Samse07694b2012-04-03 15:36:36 -0700391 mRS.nScriptSetVarD(getID(mRS), index, v);
Stephen Hinesca54ec32010-09-20 17:20:30 -0700392 }
Tim Murray7c4caad2013-04-10 16:21:40 -0700393 public double getVarD(int index) {
394 return mRS.nScriptGetVarD(getID(mRS), index);
395 }
Stephen Hinesca54ec32010-09-20 17:20:30 -0700396
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700397 /**
Jason Sams67e3d202011-01-09 13:49:01 -0800398 * Only intended for use by generated reflected code.
399 *
Jason Sams67e3d202011-01-09 13:49:01 -0800400 */
Jason Sams4d339932010-05-11 14:03:58 -0700401 public void setVar(int index, int v) {
Jason Samse07694b2012-04-03 15:36:36 -0700402 mRS.nScriptSetVarI(getID(mRS), index, v);
Jason Sams4d339932010-05-11 14:03:58 -0700403 }
Tim Murray7c4caad2013-04-10 16:21:40 -0700404 public int getVarI(int index) {
405 return mRS.nScriptGetVarI(getID(mRS), index);
406 }
407
Jason Sams4d339932010-05-11 14:03:58 -0700408
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700409 /**
Jason Sams67e3d202011-01-09 13:49:01 -0800410 * Only intended for use by generated reflected code.
411 *
Jason Sams67e3d202011-01-09 13:49:01 -0800412 */
Stephen Hines031ec58c2010-10-11 10:54:21 -0700413 public void setVar(int index, long v) {
Jason Samse07694b2012-04-03 15:36:36 -0700414 mRS.nScriptSetVarJ(getID(mRS), index, v);
Stephen Hines031ec58c2010-10-11 10:54:21 -0700415 }
Tim Murray7c4caad2013-04-10 16:21:40 -0700416 public long getVarJ(int index) {
417 return mRS.nScriptGetVarJ(getID(mRS), index);
418 }
419
Stephen Hines031ec58c2010-10-11 10:54:21 -0700420
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700421 /**
Jason Sams67e3d202011-01-09 13:49:01 -0800422 * Only intended for use by generated reflected code.
423 *
Jason Sams67e3d202011-01-09 13:49:01 -0800424 */
Jason Sams0b9a22c2010-07-02 15:35:19 -0700425 public void setVar(int index, boolean v) {
Jason Samse07694b2012-04-03 15:36:36 -0700426 mRS.nScriptSetVarI(getID(mRS), index, v ? 1 : 0);
Jason Sams0b9a22c2010-07-02 15:35:19 -0700427 }
Tim Murray7c4caad2013-04-10 16:21:40 -0700428 public boolean getVarB(int index) {
429 return mRS.nScriptGetVarI(getID(mRS), index) > 0 ? true : false;
430 }
Jason Sams0b9a22c2010-07-02 15:35:19 -0700431
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700432 /**
Jason Sams67e3d202011-01-09 13:49:01 -0800433 * Only intended for use by generated reflected code.
434 *
Jason Sams67e3d202011-01-09 13:49:01 -0800435 */
Jason Sams6f4cf0b2010-11-16 17:37:02 -0800436 public void setVar(int index, BaseObj o) {
Jason Sams678cc7f2014-03-05 16:09:02 -0800437 mRS.validate();
438 mRS.validateObject(o);
Jason Samse07694b2012-04-03 15:36:36 -0700439 mRS.nScriptSetVarObj(getID(mRS), index, (o == null) ? 0 : o.getID(mRS));
Jason Sams6f4cf0b2010-11-16 17:37:02 -0800440 }
441
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700442 /**
Jason Sams67e3d202011-01-09 13:49:01 -0800443 * Only intended for use by generated reflected code.
444 *
Jason Sams67e3d202011-01-09 13:49:01 -0800445 */
Jason Sams4d339932010-05-11 14:03:58 -0700446 public void setVar(int index, FieldPacker v) {
Jason Samse07694b2012-04-03 15:36:36 -0700447 mRS.nScriptSetVarV(getID(mRS), index, v.getData());
Jason Sams69f0d312009-08-03 18:11:17 -0700448 }
449
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700450 /**
Stephen Hinesadeb8092012-04-20 14:26:06 -0700451 * Only intended for use by generated reflected code.
452 *
Stephen Hinesadeb8092012-04-20 14:26:06 -0700453 */
454 public void setVar(int index, FieldPacker v, Element e, int[] dims) {
455 mRS.nScriptSetVarVE(getID(mRS), index, v.getData(), e.getID(mRS), dims);
456 }
457
Jason Samsf64cca92013-04-19 12:56:37 -0700458 /**
459 * Only intended for use by generated reflected code.
460 *
Jason Samsf64cca92013-04-19 12:56:37 -0700461 */
Tim Murray7c4caad2013-04-10 16:21:40 -0700462 public void getVarV(int index, FieldPacker v) {
463 mRS.nScriptGetVarV(getID(mRS), index, v.getData());
464 }
465
Jason Sams22534172009-08-04 16:58:20 -0700466 public void setTimeZone(String timeZone) {
Jason Sams771bebb2009-12-07 12:40:12 -0800467 mRS.validate();
Jason Sams22534172009-08-04 16:58:20 -0700468 try {
Jason Samse07694b2012-04-03 15:36:36 -0700469 mRS.nScriptSetTimeZone(getID(mRS), timeZone.getBytes("UTF-8"));
Jason Sams22534172009-08-04 16:58:20 -0700470 } catch (java.io.UnsupportedEncodingException e) {
471 throw new RuntimeException(e);
472 }
473 }
Jason Sams69f0d312009-08-03 18:11:17 -0700474
Tim Murrayc11e25c2013-04-09 11:01:01 -0700475 /**
476 * Only intended for use by generated reflected code.
477 *
478 */
Jason Sams69f0d312009-08-03 18:11:17 -0700479 public static class Builder {
480 RenderScript mRS;
Jason Sams69f0d312009-08-03 18:11:17 -0700481
482 Builder(RenderScript rs) {
483 mRS = rs;
484 }
Jason Sams69f0d312009-08-03 18:11:17 -0700485 }
486
Jason Sams2d71bc72010-03-26 16:06:43 -0700487
Jason Samsf64cca92013-04-19 12:56:37 -0700488 /**
489 * Only intended for use by generated reflected code.
490 *
491 */
Jason Sams2d71bc72010-03-26 16:06:43 -0700492 public static class FieldBase {
493 protected Element mElement;
Jason Sams2d71bc72010-03-26 16:06:43 -0700494 protected Allocation mAllocation;
495
496 protected void init(RenderScript rs, int dimx) {
Chris Wailesbe7b1de2014-07-15 10:56:14 -0700497 mAllocation = Allocation.createSized(rs, mElement, dimx,
498 Allocation.USAGE_SCRIPT);
Jason Sams5476b452010-12-08 16:14:36 -0800499 }
500
501 protected void init(RenderScript rs, int dimx, int usages) {
Chris Wailesbe7b1de2014-07-15 10:56:14 -0700502 mAllocation =
503 Allocation.createSized(rs, mElement, dimx,
504 Allocation.USAGE_SCRIPT | usages);
Jason Sams2d71bc72010-03-26 16:06:43 -0700505 }
506
507 protected FieldBase() {
508 }
509
510 public Element getElement() {
511 return mElement;
512 }
513
514 public Type getType() {
Jason Sams31a7e422010-10-26 13:09:17 -0700515 return mAllocation.getType();
Jason Sams2d71bc72010-03-26 16:06:43 -0700516 }
517
518 public Allocation getAllocation() {
519 return mAllocation;
520 }
521
522 //@Override
523 public void updateAllocation() {
524 }
Jason Sams2d71bc72010-03-26 16:06:43 -0700525 }
Tim Murrayfbfaa852012-12-14 16:01:58 -0800526
Jason Samsf64cca92013-04-19 12:56:37 -0700527
528 /**
Jason Sams8610f832015-03-30 17:01:10 -0700529 * Class for specifying the specifics about how a kernel will be
Miao Wang53fdcfb2016-03-29 15:14:21 -0700530 * launched.
Jason Sams8610f832015-03-30 17:01:10 -0700531 *
532 * This class can specify a potential range of cells on which to
533 * run a kernel. If no set is called for a dimension then this
534 * class will have no impact on that dimension when the kernel
535 * is executed.
536 *
Miao Wang53fdcfb2016-03-29 15:14:21 -0700537 * The forEach kernel launch will operate over the intersection of
538 * the dimensions.
Jason Sams8610f832015-03-30 17:01:10 -0700539 *
540 * Example:
541 * LaunchOptions with setX(5, 15)
542 * Allocation with dimension X=10, Y=10
Miao Wang53fdcfb2016-03-29 15:14:21 -0700543 * The resulting forEach run would execute over:
544 * x = 5 to 9 (inclusive) and
545 * y = 0 to 9 (inclusive).
Jason Sams8610f832015-03-30 17:01:10 -0700546 *
Jason Samsf64cca92013-04-19 12:56:37 -0700547 *
548 */
Tim Murrayfbfaa852012-12-14 16:01:58 -0800549 public static final class LaunchOptions {
Jason Samsf64cca92013-04-19 12:56:37 -0700550 private int xstart = 0;
551 private int ystart = 0;
552 private int xend = 0;
553 private int yend = 0;
554 private int zstart = 0;
555 private int zend = 0;
556 private int strategy;
Tim Murrayfbfaa852012-12-14 16:01:58 -0800557
Jason Samsf64cca92013-04-19 12:56:37 -0700558 /**
Miao Wang53fdcfb2016-03-29 15:14:21 -0700559 * Set the X range. xstartArg is the lowest coordinate of the range,
560 * and xendArg-1 is the highest coordinate of the range.
Jason Samsf64cca92013-04-19 12:56:37 -0700561 *
562 * @param xstartArg Must be >= 0
Miao Wang53fdcfb2016-03-29 15:14:21 -0700563 * @param xendArg Must be > xstartArg
Jason Samsf64cca92013-04-19 12:56:37 -0700564 *
565 * @return LaunchOptions
566 */
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800567 public LaunchOptions setX(int xstartArg, int xendArg) {
Tim Murrayfbfaa852012-12-14 16:01:58 -0800568 if (xstartArg < 0 || xendArg <= xstartArg) {
569 throw new RSIllegalArgumentException("Invalid dimensions");
570 }
571 xstart = xstartArg;
572 xend = xendArg;
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800573 return this;
Tim Murrayfbfaa852012-12-14 16:01:58 -0800574 }
575
Jason Samsf64cca92013-04-19 12:56:37 -0700576 /**
Miao Wang53fdcfb2016-03-29 15:14:21 -0700577 * Set the Y range. ystartArg is the lowest coordinate of the range,
578 * and yendArg-1 is the highest coordinate of the range.
Jason Samsf64cca92013-04-19 12:56:37 -0700579 *
580 * @param ystartArg Must be >= 0
Miao Wang53fdcfb2016-03-29 15:14:21 -0700581 * @param yendArg Must be > ystartArg
Jason Samsf64cca92013-04-19 12:56:37 -0700582 *
583 * @return LaunchOptions
584 */
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800585 public LaunchOptions setY(int ystartArg, int yendArg) {
Tim Murrayfbfaa852012-12-14 16:01:58 -0800586 if (ystartArg < 0 || yendArg <= ystartArg) {
587 throw new RSIllegalArgumentException("Invalid dimensions");
588 }
589 ystart = ystartArg;
590 yend = yendArg;
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800591 return this;
Tim Murrayfbfaa852012-12-14 16:01:58 -0800592 }
593
Jason Samsf64cca92013-04-19 12:56:37 -0700594 /**
Miao Wang53fdcfb2016-03-29 15:14:21 -0700595 * Set the Z range. zstartArg is the lowest coordinate of the range,
596 * and zendArg-1 is the highest coordinate of the range.
Jason Samsf64cca92013-04-19 12:56:37 -0700597 *
598 * @param zstartArg Must be >= 0
Miao Wang53fdcfb2016-03-29 15:14:21 -0700599 * @param zendArg Must be > zstartArg
Jason Samsf64cca92013-04-19 12:56:37 -0700600 *
601 * @return LaunchOptions
602 */
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800603 public LaunchOptions setZ(int zstartArg, int zendArg) {
604 if (zstartArg < 0 || zendArg <= zstartArg) {
605 throw new RSIllegalArgumentException("Invalid dimensions");
606 }
607 zstart = zstartArg;
608 zend = zendArg;
609 return this;
610 }
611
612
Jason Samsf64cca92013-04-19 12:56:37 -0700613 /**
614 * Returns the current X start
615 *
616 * @return int current value
617 */
Tim Murrayfbfaa852012-12-14 16:01:58 -0800618 public int getXStart() {
619 return xstart;
620 }
Jason Samsf64cca92013-04-19 12:56:37 -0700621 /**
622 * Returns the current X end
623 *
624 * @return int current value
625 */
Tim Murrayfbfaa852012-12-14 16:01:58 -0800626 public int getXEnd() {
627 return xend;
628 }
Jason Samsf64cca92013-04-19 12:56:37 -0700629 /**
630 * Returns the current Y start
631 *
632 * @return int current value
633 */
Tim Murrayfbfaa852012-12-14 16:01:58 -0800634 public int getYStart() {
635 return ystart;
636 }
Jason Samsf64cca92013-04-19 12:56:37 -0700637 /**
638 * Returns the current Y end
639 *
640 * @return int current value
641 */
Tim Murrayfbfaa852012-12-14 16:01:58 -0800642 public int getYEnd() {
643 return yend;
644 }
Jason Samsf64cca92013-04-19 12:56:37 -0700645 /**
646 * Returns the current Z start
647 *
648 * @return int current value
649 */
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800650 public int getZStart() {
651 return zstart;
652 }
Jason Samsf64cca92013-04-19 12:56:37 -0700653 /**
654 * Returns the current Z end
655 *
656 * @return int current value
657 */
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800658 public int getZEnd() {
659 return zend;
660 }
Tim Murrayfbfaa852012-12-14 16:01:58 -0800661
662 }
Jason Sams69f0d312009-08-03 18:11:17 -0700663}