| Jason Sams | 69f0d31 | 2009-08-03 18:11:17 -0700 | [diff] [blame] | 1 | /* |
| Stephen Hines | adeb809 | 2012-04-20 14:26:06 -0700 | [diff] [blame] | 2 | * Copyright (C) 2008-2012 The Android Open Source Project |
| Jason Sams | 69f0d31 | 2009-08-03 18:11:17 -0700 | [diff] [blame] | 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 android.renderscript; |
| 18 | |
| Jason Sams | 08a8158 | 2012-09-18 12:32:10 -0700 | [diff] [blame] | 19 | import android.util.SparseArray; |
| 20 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 21 | /** |
| Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 22 | * The parent class for all executable scripts. This should not be used by |
| 23 | * applications. |
| Jason Sams | 69f0d31 | 2009-08-03 18:11:17 -0700 | [diff] [blame] | 24 | **/ |
| 25 | public class Script extends BaseObj { |
| Jason Sams | 08a8158 | 2012-09-18 12:32:10 -0700 | [diff] [blame] | 26 | |
| 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 Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 39 | KernelID(long id, RenderScript rs, Script s, int slot, int sig) { |
| Jason Sams | 08a8158 | 2012-09-18 12:32:10 -0700 | [diff] [blame] | 40 | super(id, rs); |
| 41 | mScript = s; |
| 42 | mSlot = slot; |
| 43 | mSig = sig; |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | private final SparseArray<KernelID> mKIDs = new SparseArray<KernelID>(); |
| 48 | /** |
| 49 | * Only to be used by generated reflected classes. |
| Jason Sams | 08a8158 | 2012-09-18 12:32:10 -0700 | [diff] [blame] | 50 | */ |
| Chris Wailes | be7b1de | 2014-07-15 10:56:14 -0700 | [diff] [blame] | 51 | protected KernelID createKernelID(int slot, int sig, Element ein, |
| 52 | Element eout) { |
| Jason Sams | 08a8158 | 2012-09-18 12:32:10 -0700 | [diff] [blame] | 53 | KernelID k = mKIDs.get(slot); |
| 54 | if (k != null) { |
| 55 | return k; |
| 56 | } |
| 57 | |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 58 | long id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig); |
| Jason Sams | 08a8158 | 2012-09-18 12:32:10 -0700 | [diff] [blame] | 59 | if (id == 0) { |
| 60 | throw new RSDriverException("Failed to create KernelID"); |
| 61 | } |
| 62 | |
| 63 | k = new KernelID(id, mRS, this, slot, sig); |
| 64 | mKIDs.put(slot, k); |
| 65 | return k; |
| 66 | } |
| 67 | |
| 68 | /** |
| Yang Ni | be392ad | 2015-01-23 17:16:02 -0800 | [diff] [blame] | 69 | * InvokeID is an identifier for an invoke function. It is used |
| 70 | * as an identifier for ScriptGroup creation. |
| 71 | * |
| 72 | * This class should not be directly created. Instead use the method in the |
| 73 | * reflected or intrinsic code "getInvokeID_funcname()". |
| 74 | * |
| 75 | */ |
| 76 | public static final class InvokeID extends BaseObj { |
| 77 | Script mScript; |
| 78 | int mSlot; |
| 79 | InvokeID(long id, RenderScript rs, Script s, int slot) { |
| 80 | super(id, rs); |
| 81 | mScript = s; |
| 82 | mSlot = slot; |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | private final SparseArray<InvokeID> mIIDs = new SparseArray<InvokeID>(); |
| 87 | /** |
| Yang Ni | be392ad | 2015-01-23 17:16:02 -0800 | [diff] [blame] | 88 | * Only to be used by generated reflected classes. |
| 89 | */ |
| 90 | protected InvokeID createInvokeID(int slot) { |
| 91 | InvokeID i = mIIDs.get(slot); |
| 92 | if (i != null) { |
| 93 | return i; |
| 94 | } |
| 95 | |
| 96 | long id = mRS.nScriptInvokeIDCreate(getID(mRS), slot); |
| 97 | if (id == 0) { |
| 98 | throw new RSDriverException("Failed to create KernelID"); |
| 99 | } |
| 100 | |
| 101 | i = new InvokeID(id, mRS, this, slot); |
| 102 | mIIDs.put(slot, i); |
| 103 | return i; |
| 104 | } |
| 105 | |
| 106 | /** |
| Jason Sams | 08a8158 | 2012-09-18 12:32:10 -0700 | [diff] [blame] | 107 | * FieldID is an identifier for a Script + exported field pair. It is used |
| 108 | * as an identifier for ScriptGroup creation. |
| 109 | * |
| 110 | * This class should not be directly created. Instead use the method in the |
| 111 | * reflected or intrinsic code "getFieldID_funcname()". |
| 112 | * |
| 113 | */ |
| 114 | public static final class FieldID extends BaseObj { |
| 115 | Script mScript; |
| 116 | int mSlot; |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 117 | FieldID(long id, RenderScript rs, Script s, int slot) { |
| Jason Sams | 08a8158 | 2012-09-18 12:32:10 -0700 | [diff] [blame] | 118 | super(id, rs); |
| 119 | mScript = s; |
| 120 | mSlot = slot; |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | private final SparseArray<FieldID> mFIDs = new SparseArray(); |
| 125 | /** |
| 126 | * Only to be used by generated reflected classes. |
| Jason Sams | 08a8158 | 2012-09-18 12:32:10 -0700 | [diff] [blame] | 127 | */ |
| 128 | protected FieldID createFieldID(int slot, Element e) { |
| 129 | FieldID f = mFIDs.get(slot); |
| 130 | if (f != null) { |
| 131 | return f; |
| 132 | } |
| 133 | |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 134 | long id = mRS.nScriptFieldIDCreate(getID(mRS), slot); |
| Jason Sams | 08a8158 | 2012-09-18 12:32:10 -0700 | [diff] [blame] | 135 | if (id == 0) { |
| 136 | throw new RSDriverException("Failed to create FieldID"); |
| 137 | } |
| 138 | |
| 139 | f = new FieldID(id, mRS, this, slot); |
| 140 | mFIDs.put(slot, f); |
| 141 | return f; |
| 142 | } |
| 143 | |
| 144 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 145 | /** |
| Jason Sams | 67e3d20 | 2011-01-09 13:49:01 -0800 | [diff] [blame] | 146 | * Only intended for use by generated reflected code. |
| 147 | * |
| Jason Sams | 67e3d20 | 2011-01-09 13:49:01 -0800 | [diff] [blame] | 148 | */ |
| Jason Sams | 2d71bc7 | 2010-03-26 16:06:43 -0700 | [diff] [blame] | 149 | protected void invoke(int slot) { |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 150 | mRS.nScriptInvoke(getID(mRS), slot); |
| Jason Sams | 2d71bc7 | 2010-03-26 16:06:43 -0700 | [diff] [blame] | 151 | } |
| 152 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 153 | /** |
| Jason Sams | 67e3d20 | 2011-01-09 13:49:01 -0800 | [diff] [blame] | 154 | * Only intended for use by generated reflected code. |
| 155 | * |
| Jason Sams | 67e3d20 | 2011-01-09 13:49:01 -0800 | [diff] [blame] | 156 | */ |
| Jason Sams | 96ed4cf | 2010-06-15 12:15:57 -0700 | [diff] [blame] | 157 | protected void invoke(int slot, FieldPacker v) { |
| 158 | if (v != null) { |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 159 | mRS.nScriptInvokeV(getID(mRS), slot, v.getData()); |
| Jason Sams | 96ed4cf | 2010-06-15 12:15:57 -0700 | [diff] [blame] | 160 | } else { |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 161 | mRS.nScriptInvoke(getID(mRS), slot); |
| Jason Sams | 96ed4cf | 2010-06-15 12:15:57 -0700 | [diff] [blame] | 162 | } |
| Jason Sams | 4d33993 | 2010-05-11 14:03:58 -0700 | [diff] [blame] | 163 | } |
| 164 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 165 | /** |
| Jason Sams | 6e494d3 | 2011-04-27 16:33:11 -0700 | [diff] [blame] | 166 | * Only intended for use by generated reflected code. |
| 167 | * |
| Jason Sams | 6e494d3 | 2011-04-27 16:33:11 -0700 | [diff] [blame] | 168 | */ |
| Chris Wailes | be7b1de | 2014-07-15 10:56:14 -0700 | [diff] [blame] | 169 | protected void forEach(int slot, Allocation ain, Allocation aout, |
| 170 | FieldPacker v) { |
| 171 | forEach(slot, ain, aout, v, null); |
| Jason Sams | 6e494d3 | 2011-04-27 16:33:11 -0700 | [diff] [blame] | 172 | } |
| 173 | |
| Jason Sams | f64cca9 | 2013-04-19 12:56:37 -0700 | [diff] [blame] | 174 | /** |
| 175 | * Only intended for use by generated reflected code. |
| 176 | * |
| Jason Sams | f64cca9 | 2013-04-19 12:56:37 -0700 | [diff] [blame] | 177 | */ |
| Chris Wailes | be7b1de | 2014-07-15 10:56:14 -0700 | [diff] [blame] | 178 | protected void forEach(int slot, Allocation ain, Allocation aout, |
| 179 | FieldPacker v, LaunchOptions sc) { |
| 180 | // TODO: Is this necessary if nScriptForEach calls validate as well? |
| Jason Sams | 678cc7f | 2014-03-05 16:09:02 -0800 | [diff] [blame] | 181 | mRS.validate(); |
| 182 | mRS.validateObject(ain); |
| 183 | mRS.validateObject(aout); |
| Chris Wailes | be7b1de | 2014-07-15 10:56:14 -0700 | [diff] [blame] | 184 | |
| Jason Sams | bc5c64b | 2015-04-16 15:13:52 -0700 | [diff] [blame] | 185 | if (ain == null && aout == null && sc == null) { |
| Tim Murray | eb8c29c | 2013-02-07 12:16:41 -0800 | [diff] [blame] | 186 | throw new RSIllegalArgumentException( |
| Jason Sams | bc5c64b | 2015-04-16 15:13:52 -0700 | [diff] [blame] | 187 | "At least one of input allocation, output allocation, or LaunchOptions is required to be non-null."); |
| Tim Murray | eb8c29c | 2013-02-07 12:16:41 -0800 | [diff] [blame] | 188 | } |
| Tim Murray | ba9dd06 | 2013-02-12 16:22:34 -0800 | [diff] [blame] | 189 | |
| Chris Wailes | be7b1de | 2014-07-15 10:56:14 -0700 | [diff] [blame] | 190 | long[] in_ids = null; |
| Stephen Hines | c9c7daf | 2014-08-13 17:32:19 +0000 | [diff] [blame] | 191 | if (ain != null) { |
| Chris Wailes | be7b1de | 2014-07-15 10:56:14 -0700 | [diff] [blame] | 192 | in_ids = mInIdsBuffer; |
| 193 | in_ids[0] = ain.getID(mRS); |
| Stephen Hines | c9c7daf | 2014-08-13 17:32:19 +0000 | [diff] [blame] | 194 | } |
| Chris Wailes | be7b1de | 2014-07-15 10:56:14 -0700 | [diff] [blame] | 195 | |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 196 | long out_id = 0; |
| Tim Murray | eb8c29c | 2013-02-07 12:16:41 -0800 | [diff] [blame] | 197 | if (aout != null) { |
| 198 | out_id = aout.getID(mRS); |
| 199 | } |
| Chris Wailes | be7b1de | 2014-07-15 10:56:14 -0700 | [diff] [blame] | 200 | |
| Tim Murray | eb8c29c | 2013-02-07 12:16:41 -0800 | [diff] [blame] | 201 | byte[] params = null; |
| 202 | if (v != null) { |
| 203 | params = v.getData(); |
| 204 | } |
| Chris Wailes | be7b1de | 2014-07-15 10:56:14 -0700 | [diff] [blame] | 205 | |
| 206 | int[] limits = null; |
| 207 | if (sc != null) { |
| 208 | limits = new int[6]; |
| 209 | |
| 210 | limits[0] = sc.xstart; |
| 211 | limits[1] = sc.xend; |
| 212 | limits[2] = sc.ystart; |
| 213 | limits[3] = sc.yend; |
| 214 | limits[4] = sc.zstart; |
| 215 | limits[5] = sc.zend; |
| 216 | } |
| 217 | |
| 218 | mRS.nScriptForEach(getID(mRS), slot, in_ids, out_id, params, limits); |
| Tim Murray | eb8c29c | 2013-02-07 12:16:41 -0800 | [diff] [blame] | 219 | } |
| Jason Sams | 4d33993 | 2010-05-11 14:03:58 -0700 | [diff] [blame] | 220 | |
| Chris Wailes | 9496106 | 2014-06-11 12:01:28 -0700 | [diff] [blame] | 221 | /** |
| 222 | * Only intended for use by generated reflected code. |
| 223 | * |
| 224 | * @hide |
| 225 | */ |
| Chris Wailes | be7b1de | 2014-07-15 10:56:14 -0700 | [diff] [blame] | 226 | protected void forEach(int slot, Allocation[] ains, Allocation aout, |
| 227 | FieldPacker v) { |
| 228 | forEach(slot, ains, aout, v, null); |
| Chris Wailes | 9496106 | 2014-06-11 12:01:28 -0700 | [diff] [blame] | 229 | } |
| 230 | |
| 231 | /** |
| 232 | * Only intended for use by generated reflected code. |
| 233 | * |
| 234 | * @hide |
| 235 | */ |
| Chris Wailes | be7b1de | 2014-07-15 10:56:14 -0700 | [diff] [blame] | 236 | 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? |
| Chris Wailes | 9496106 | 2014-06-11 12:01:28 -0700 | [diff] [blame] | 239 | mRS.validate(); |
| Andreas Gampe | c8ddcdd | 2015-03-15 15:57:30 -0700 | [diff] [blame] | 240 | if (ains != null) { |
| 241 | for (Allocation ain : ains) { |
| 242 | mRS.validateObject(ain); |
| 243 | } |
| Chris Wailes | 9496106 | 2014-06-11 12:01:28 -0700 | [diff] [blame] | 244 | } |
| Stephen Hines | c9c7daf | 2014-08-13 17:32:19 +0000 | [diff] [blame] | 245 | mRS.validateObject(aout); |
| Chris Wailes | be7b1de | 2014-07-15 10:56:14 -0700 | [diff] [blame] | 246 | |
| Chris Wailes | 9496106 | 2014-06-11 12:01:28 -0700 | [diff] [blame] | 247 | if (ains == null && aout == null) { |
| 248 | throw new RSIllegalArgumentException( |
| 249 | "At least one of ain or aout is required to be non-null."); |
| 250 | } |
| 251 | |
| Andreas Gampe | ad555f9 | 2015-03-17 20:05:46 -0700 | [diff] [blame] | 252 | long[] in_ids; |
| 253 | if (ains != null) { |
| 254 | in_ids = new long[ains.length]; |
| 255 | for (int index = 0; index < ains.length; ++index) { |
| 256 | in_ids[index] = ains[index].getID(mRS); |
| 257 | } |
| 258 | } else { |
| 259 | in_ids = null; |
| Chris Wailes | 9496106 | 2014-06-11 12:01:28 -0700 | [diff] [blame] | 260 | } |
| 261 | |
| 262 | long out_id = 0; |
| 263 | if (aout != null) { |
| 264 | out_id = aout.getID(mRS); |
| 265 | } |
| Chris Wailes | be7b1de | 2014-07-15 10:56:14 -0700 | [diff] [blame] | 266 | |
| Chris Wailes | 9496106 | 2014-06-11 12:01:28 -0700 | [diff] [blame] | 267 | byte[] params = null; |
| 268 | if (v != null) { |
| 269 | params = v.getData(); |
| 270 | } |
| Chris Wailes | be7b1de | 2014-07-15 10:56:14 -0700 | [diff] [blame] | 271 | |
| 272 | int[] limits = null; |
| 273 | if (sc != null) { |
| 274 | limits = new int[6]; |
| 275 | |
| 276 | limits[0] = sc.xstart; |
| 277 | limits[1] = sc.xend; |
| 278 | limits[2] = sc.ystart; |
| 279 | limits[3] = sc.yend; |
| 280 | limits[4] = sc.zstart; |
| 281 | limits[5] = sc.zend; |
| 282 | } |
| 283 | |
| 284 | mRS.nScriptForEach(getID(mRS), slot, in_ids, out_id, params, limits); |
| Chris Wailes | 9496106 | 2014-06-11 12:01:28 -0700 | [diff] [blame] | 285 | } |
| 286 | |
| Matt Wala | 36eb1f7 | 2015-07-20 15:35:27 -0700 | [diff] [blame^] | 287 | /** |
| 288 | * Only intended for use by generated reflected code. |
| 289 | * |
| 290 | * @hide |
| 291 | */ |
| 292 | protected void reduce(int slot, Allocation ain, Allocation aout, LaunchOptions sc) { |
| 293 | mRS.validate(); |
| 294 | mRS.validateObject(ain); |
| 295 | mRS.validateObject(aout); |
| 296 | |
| 297 | if (ain == null || aout == null) { |
| 298 | throw new RSIllegalArgumentException( |
| 299 | "Both ain and aout are required to be non-null."); |
| 300 | } |
| 301 | |
| 302 | long in_id = ain.getID(mRS); |
| 303 | long out_id = aout.getID(mRS); |
| 304 | |
| 305 | int[] limits = null; |
| 306 | if (sc != null) { |
| 307 | limits = new int[2]; |
| 308 | |
| 309 | limits[0] = sc.xstart; |
| 310 | limits[1] = sc.xend; |
| 311 | } |
| 312 | |
| 313 | mRS.nScriptReduce(getID(mRS), slot, in_id, out_id, limits); |
| 314 | } |
| 315 | |
| Chris Wailes | be7b1de | 2014-07-15 10:56:14 -0700 | [diff] [blame] | 316 | long[] mInIdsBuffer; |
| 317 | |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 318 | Script(long id, RenderScript rs) { |
| Alex Sakhartchouk | 0de9444 | 2010-08-11 14:41:28 -0700 | [diff] [blame] | 319 | super(id, rs); |
| Chris Wailes | be7b1de | 2014-07-15 10:56:14 -0700 | [diff] [blame] | 320 | |
| 321 | mInIdsBuffer = new long[1]; |
| Jason Sams | 69f0d31 | 2009-08-03 18:11:17 -0700 | [diff] [blame] | 322 | } |
| 323 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 324 | /** |
| Jason Sams | 67e3d20 | 2011-01-09 13:49:01 -0800 | [diff] [blame] | 325 | * Only intended for use by generated reflected code. |
| 326 | * |
| Jason Sams | 67e3d20 | 2011-01-09 13:49:01 -0800 | [diff] [blame] | 327 | */ |
| Jason Sams | 69f0d31 | 2009-08-03 18:11:17 -0700 | [diff] [blame] | 328 | public void bindAllocation(Allocation va, int slot) { |
| Jason Sams | 771bebb | 2009-12-07 12:40:12 -0800 | [diff] [blame] | 329 | mRS.validate(); |
| Jason Sams | 678cc7f | 2014-03-05 16:09:02 -0800 | [diff] [blame] | 330 | mRS.validateObject(va); |
| Jason Sams | 4d33993 | 2010-05-11 14:03:58 -0700 | [diff] [blame] | 331 | if (va != null) { |
| Chris Wailes | be7b1de | 2014-07-15 10:56:14 -0700 | [diff] [blame] | 332 | |
| 333 | android.content.Context context = mRS.getApplicationContext(); |
| 334 | |
| 335 | if (context.getApplicationInfo().targetSdkVersion >= 20) { |
| Jason Sams | cf9c894 | 2014-01-14 16:18:14 -0800 | [diff] [blame] | 336 | final Type t = va.mType; |
| Chris Wailes | be7b1de | 2014-07-15 10:56:14 -0700 | [diff] [blame] | 337 | if (t.hasMipmaps() || t.hasFaces() || (t.getY() != 0) || |
| 338 | (t.getZ() != 0)) { |
| 339 | |
| Jason Sams | cf9c894 | 2014-01-14 16:18:14 -0800 | [diff] [blame] | 340 | throw new RSIllegalArgumentException( |
| Chris Wailes | be7b1de | 2014-07-15 10:56:14 -0700 | [diff] [blame] | 341 | "API 20+ only allows simple 1D allocations to be " + |
| 342 | "used with bind."); |
| Jason Sams | cf9c894 | 2014-01-14 16:18:14 -0800 | [diff] [blame] | 343 | } |
| 344 | } |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 345 | mRS.nScriptBindAllocation(getID(mRS), va.getID(mRS), slot); |
| Jason Sams | 4d33993 | 2010-05-11 14:03:58 -0700 | [diff] [blame] | 346 | } else { |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 347 | mRS.nScriptBindAllocation(getID(mRS), 0, slot); |
| Jason Sams | 4d33993 | 2010-05-11 14:03:58 -0700 | [diff] [blame] | 348 | } |
| 349 | } |
| 350 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 351 | /** |
| Jason Sams | 67e3d20 | 2011-01-09 13:49:01 -0800 | [diff] [blame] | 352 | * Only intended for use by generated reflected code. |
| 353 | * |
| Jason Sams | 67e3d20 | 2011-01-09 13:49:01 -0800 | [diff] [blame] | 354 | */ |
| Jason Sams | 4d33993 | 2010-05-11 14:03:58 -0700 | [diff] [blame] | 355 | public void setVar(int index, float v) { |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 356 | mRS.nScriptSetVarF(getID(mRS), index, v); |
| Jason Sams | 4d33993 | 2010-05-11 14:03:58 -0700 | [diff] [blame] | 357 | } |
| Tim Murray | 7c4caad | 2013-04-10 16:21:40 -0700 | [diff] [blame] | 358 | public float getVarF(int index) { |
| 359 | return mRS.nScriptGetVarF(getID(mRS), index); |
| 360 | } |
| Jason Sams | 4d33993 | 2010-05-11 14:03:58 -0700 | [diff] [blame] | 361 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 362 | /** |
| Jason Sams | 67e3d20 | 2011-01-09 13:49:01 -0800 | [diff] [blame] | 363 | * Only intended for use by generated reflected code. |
| 364 | * |
| Jason Sams | 67e3d20 | 2011-01-09 13:49:01 -0800 | [diff] [blame] | 365 | */ |
| Stephen Hines | ca54ec3 | 2010-09-20 17:20:30 -0700 | [diff] [blame] | 366 | public void setVar(int index, double v) { |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 367 | mRS.nScriptSetVarD(getID(mRS), index, v); |
| Stephen Hines | ca54ec3 | 2010-09-20 17:20:30 -0700 | [diff] [blame] | 368 | } |
| Tim Murray | 7c4caad | 2013-04-10 16:21:40 -0700 | [diff] [blame] | 369 | public double getVarD(int index) { |
| 370 | return mRS.nScriptGetVarD(getID(mRS), index); |
| 371 | } |
| Stephen Hines | ca54ec3 | 2010-09-20 17:20:30 -0700 | [diff] [blame] | 372 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 373 | /** |
| Jason Sams | 67e3d20 | 2011-01-09 13:49:01 -0800 | [diff] [blame] | 374 | * Only intended for use by generated reflected code. |
| 375 | * |
| Jason Sams | 67e3d20 | 2011-01-09 13:49:01 -0800 | [diff] [blame] | 376 | */ |
| Jason Sams | 4d33993 | 2010-05-11 14:03:58 -0700 | [diff] [blame] | 377 | public void setVar(int index, int v) { |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 378 | mRS.nScriptSetVarI(getID(mRS), index, v); |
| Jason Sams | 4d33993 | 2010-05-11 14:03:58 -0700 | [diff] [blame] | 379 | } |
| Tim Murray | 7c4caad | 2013-04-10 16:21:40 -0700 | [diff] [blame] | 380 | public int getVarI(int index) { |
| 381 | return mRS.nScriptGetVarI(getID(mRS), index); |
| 382 | } |
| 383 | |
| Jason Sams | 4d33993 | 2010-05-11 14:03:58 -0700 | [diff] [blame] | 384 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 385 | /** |
| Jason Sams | 67e3d20 | 2011-01-09 13:49:01 -0800 | [diff] [blame] | 386 | * Only intended for use by generated reflected code. |
| 387 | * |
| Jason Sams | 67e3d20 | 2011-01-09 13:49:01 -0800 | [diff] [blame] | 388 | */ |
| Stephen Hines | 031ec58c | 2010-10-11 10:54:21 -0700 | [diff] [blame] | 389 | public void setVar(int index, long v) { |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 390 | mRS.nScriptSetVarJ(getID(mRS), index, v); |
| Stephen Hines | 031ec58c | 2010-10-11 10:54:21 -0700 | [diff] [blame] | 391 | } |
| Tim Murray | 7c4caad | 2013-04-10 16:21:40 -0700 | [diff] [blame] | 392 | public long getVarJ(int index) { |
| 393 | return mRS.nScriptGetVarJ(getID(mRS), index); |
| 394 | } |
| 395 | |
| Stephen Hines | 031ec58c | 2010-10-11 10:54:21 -0700 | [diff] [blame] | 396 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 397 | /** |
| Jason Sams | 67e3d20 | 2011-01-09 13:49:01 -0800 | [diff] [blame] | 398 | * Only intended for use by generated reflected code. |
| 399 | * |
| Jason Sams | 67e3d20 | 2011-01-09 13:49:01 -0800 | [diff] [blame] | 400 | */ |
| Jason Sams | 0b9a22c | 2010-07-02 15:35:19 -0700 | [diff] [blame] | 401 | public void setVar(int index, boolean v) { |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 402 | mRS.nScriptSetVarI(getID(mRS), index, v ? 1 : 0); |
| Jason Sams | 0b9a22c | 2010-07-02 15:35:19 -0700 | [diff] [blame] | 403 | } |
| Tim Murray | 7c4caad | 2013-04-10 16:21:40 -0700 | [diff] [blame] | 404 | public boolean getVarB(int index) { |
| 405 | return mRS.nScriptGetVarI(getID(mRS), index) > 0 ? true : false; |
| 406 | } |
| Jason Sams | 0b9a22c | 2010-07-02 15:35:19 -0700 | [diff] [blame] | 407 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 408 | /** |
| Jason Sams | 67e3d20 | 2011-01-09 13:49:01 -0800 | [diff] [blame] | 409 | * Only intended for use by generated reflected code. |
| 410 | * |
| Jason Sams | 67e3d20 | 2011-01-09 13:49:01 -0800 | [diff] [blame] | 411 | */ |
| Jason Sams | 6f4cf0b | 2010-11-16 17:37:02 -0800 | [diff] [blame] | 412 | public void setVar(int index, BaseObj o) { |
| Jason Sams | 678cc7f | 2014-03-05 16:09:02 -0800 | [diff] [blame] | 413 | mRS.validate(); |
| 414 | mRS.validateObject(o); |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 415 | mRS.nScriptSetVarObj(getID(mRS), index, (o == null) ? 0 : o.getID(mRS)); |
| Jason Sams | 6f4cf0b | 2010-11-16 17:37:02 -0800 | [diff] [blame] | 416 | } |
| 417 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 418 | /** |
| Jason Sams | 67e3d20 | 2011-01-09 13:49:01 -0800 | [diff] [blame] | 419 | * Only intended for use by generated reflected code. |
| 420 | * |
| Jason Sams | 67e3d20 | 2011-01-09 13:49:01 -0800 | [diff] [blame] | 421 | */ |
| Jason Sams | 4d33993 | 2010-05-11 14:03:58 -0700 | [diff] [blame] | 422 | public void setVar(int index, FieldPacker v) { |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 423 | mRS.nScriptSetVarV(getID(mRS), index, v.getData()); |
| Jason Sams | 69f0d31 | 2009-08-03 18:11:17 -0700 | [diff] [blame] | 424 | } |
| 425 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 426 | /** |
| Stephen Hines | adeb809 | 2012-04-20 14:26:06 -0700 | [diff] [blame] | 427 | * Only intended for use by generated reflected code. |
| 428 | * |
| Stephen Hines | adeb809 | 2012-04-20 14:26:06 -0700 | [diff] [blame] | 429 | */ |
| 430 | public void setVar(int index, FieldPacker v, Element e, int[] dims) { |
| 431 | mRS.nScriptSetVarVE(getID(mRS), index, v.getData(), e.getID(mRS), dims); |
| 432 | } |
| 433 | |
| Jason Sams | f64cca9 | 2013-04-19 12:56:37 -0700 | [diff] [blame] | 434 | /** |
| 435 | * Only intended for use by generated reflected code. |
| 436 | * |
| Jason Sams | f64cca9 | 2013-04-19 12:56:37 -0700 | [diff] [blame] | 437 | */ |
| Tim Murray | 7c4caad | 2013-04-10 16:21:40 -0700 | [diff] [blame] | 438 | public void getVarV(int index, FieldPacker v) { |
| 439 | mRS.nScriptGetVarV(getID(mRS), index, v.getData()); |
| 440 | } |
| 441 | |
| Jason Sams | 2253417 | 2009-08-04 16:58:20 -0700 | [diff] [blame] | 442 | public void setTimeZone(String timeZone) { |
| Jason Sams | 771bebb | 2009-12-07 12:40:12 -0800 | [diff] [blame] | 443 | mRS.validate(); |
| Jason Sams | 2253417 | 2009-08-04 16:58:20 -0700 | [diff] [blame] | 444 | try { |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 445 | mRS.nScriptSetTimeZone(getID(mRS), timeZone.getBytes("UTF-8")); |
| Jason Sams | 2253417 | 2009-08-04 16:58:20 -0700 | [diff] [blame] | 446 | } catch (java.io.UnsupportedEncodingException e) { |
| 447 | throw new RuntimeException(e); |
| 448 | } |
| 449 | } |
| Jason Sams | 69f0d31 | 2009-08-03 18:11:17 -0700 | [diff] [blame] | 450 | |
| Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 451 | /** |
| 452 | * Only intended for use by generated reflected code. |
| 453 | * |
| 454 | */ |
| Jason Sams | 69f0d31 | 2009-08-03 18:11:17 -0700 | [diff] [blame] | 455 | public static class Builder { |
| 456 | RenderScript mRS; |
| Jason Sams | 69f0d31 | 2009-08-03 18:11:17 -0700 | [diff] [blame] | 457 | |
| 458 | Builder(RenderScript rs) { |
| 459 | mRS = rs; |
| 460 | } |
| Jason Sams | 69f0d31 | 2009-08-03 18:11:17 -0700 | [diff] [blame] | 461 | } |
| 462 | |
| Jason Sams | 2d71bc7 | 2010-03-26 16:06:43 -0700 | [diff] [blame] | 463 | |
| Jason Sams | f64cca9 | 2013-04-19 12:56:37 -0700 | [diff] [blame] | 464 | /** |
| 465 | * Only intended for use by generated reflected code. |
| 466 | * |
| 467 | */ |
| Jason Sams | 2d71bc7 | 2010-03-26 16:06:43 -0700 | [diff] [blame] | 468 | public static class FieldBase { |
| 469 | protected Element mElement; |
| Jason Sams | 2d71bc7 | 2010-03-26 16:06:43 -0700 | [diff] [blame] | 470 | protected Allocation mAllocation; |
| 471 | |
| 472 | protected void init(RenderScript rs, int dimx) { |
| Chris Wailes | be7b1de | 2014-07-15 10:56:14 -0700 | [diff] [blame] | 473 | mAllocation = Allocation.createSized(rs, mElement, dimx, |
| 474 | Allocation.USAGE_SCRIPT); |
| Jason Sams | 5476b45 | 2010-12-08 16:14:36 -0800 | [diff] [blame] | 475 | } |
| 476 | |
| 477 | protected void init(RenderScript rs, int dimx, int usages) { |
| Chris Wailes | be7b1de | 2014-07-15 10:56:14 -0700 | [diff] [blame] | 478 | mAllocation = |
| 479 | Allocation.createSized(rs, mElement, dimx, |
| 480 | Allocation.USAGE_SCRIPT | usages); |
| Jason Sams | 2d71bc7 | 2010-03-26 16:06:43 -0700 | [diff] [blame] | 481 | } |
| 482 | |
| 483 | protected FieldBase() { |
| 484 | } |
| 485 | |
| 486 | public Element getElement() { |
| 487 | return mElement; |
| 488 | } |
| 489 | |
| 490 | public Type getType() { |
| Jason Sams | 31a7e42 | 2010-10-26 13:09:17 -0700 | [diff] [blame] | 491 | return mAllocation.getType(); |
| Jason Sams | 2d71bc7 | 2010-03-26 16:06:43 -0700 | [diff] [blame] | 492 | } |
| 493 | |
| 494 | public Allocation getAllocation() { |
| 495 | return mAllocation; |
| 496 | } |
| 497 | |
| 498 | //@Override |
| 499 | public void updateAllocation() { |
| 500 | } |
| Jason Sams | 2d71bc7 | 2010-03-26 16:06:43 -0700 | [diff] [blame] | 501 | } |
| Tim Murray | fbfaa85 | 2012-12-14 16:01:58 -0800 | [diff] [blame] | 502 | |
| Jason Sams | f64cca9 | 2013-04-19 12:56:37 -0700 | [diff] [blame] | 503 | |
| 504 | /** |
| 505 | * Class used to specify clipping for a kernel launch. |
| 506 | * |
| 507 | */ |
| Tim Murray | fbfaa85 | 2012-12-14 16:01:58 -0800 | [diff] [blame] | 508 | public static final class LaunchOptions { |
| Jason Sams | f64cca9 | 2013-04-19 12:56:37 -0700 | [diff] [blame] | 509 | private int xstart = 0; |
| 510 | private int ystart = 0; |
| 511 | private int xend = 0; |
| 512 | private int yend = 0; |
| 513 | private int zstart = 0; |
| 514 | private int zend = 0; |
| 515 | private int strategy; |
| Tim Murray | fbfaa85 | 2012-12-14 16:01:58 -0800 | [diff] [blame] | 516 | |
| Jason Sams | f64cca9 | 2013-04-19 12:56:37 -0700 | [diff] [blame] | 517 | /** |
| 518 | * Set the X range. If the end value is set to 0 the X dimension is not |
| 519 | * clipped. |
| 520 | * |
| 521 | * @param xstartArg Must be >= 0 |
| 522 | * @param xendArg Must be >= xstartArg |
| 523 | * |
| 524 | * @return LaunchOptions |
| 525 | */ |
| Tim Murray | eb8c29c | 2013-02-07 12:16:41 -0800 | [diff] [blame] | 526 | public LaunchOptions setX(int xstartArg, int xendArg) { |
| Tim Murray | fbfaa85 | 2012-12-14 16:01:58 -0800 | [diff] [blame] | 527 | if (xstartArg < 0 || xendArg <= xstartArg) { |
| 528 | throw new RSIllegalArgumentException("Invalid dimensions"); |
| 529 | } |
| 530 | xstart = xstartArg; |
| 531 | xend = xendArg; |
| Tim Murray | eb8c29c | 2013-02-07 12:16:41 -0800 | [diff] [blame] | 532 | return this; |
| Tim Murray | fbfaa85 | 2012-12-14 16:01:58 -0800 | [diff] [blame] | 533 | } |
| 534 | |
| Jason Sams | f64cca9 | 2013-04-19 12:56:37 -0700 | [diff] [blame] | 535 | /** |
| 536 | * Set the Y range. If the end value is set to 0 the Y dimension is not |
| 537 | * clipped. |
| 538 | * |
| 539 | * @param ystartArg Must be >= 0 |
| 540 | * @param yendArg Must be >= ystartArg |
| 541 | * |
| 542 | * @return LaunchOptions |
| 543 | */ |
| Tim Murray | eb8c29c | 2013-02-07 12:16:41 -0800 | [diff] [blame] | 544 | public LaunchOptions setY(int ystartArg, int yendArg) { |
| Tim Murray | fbfaa85 | 2012-12-14 16:01:58 -0800 | [diff] [blame] | 545 | if (ystartArg < 0 || yendArg <= ystartArg) { |
| 546 | throw new RSIllegalArgumentException("Invalid dimensions"); |
| 547 | } |
| 548 | ystart = ystartArg; |
| 549 | yend = yendArg; |
| Tim Murray | eb8c29c | 2013-02-07 12:16:41 -0800 | [diff] [blame] | 550 | return this; |
| Tim Murray | fbfaa85 | 2012-12-14 16:01:58 -0800 | [diff] [blame] | 551 | } |
| 552 | |
| Jason Sams | f64cca9 | 2013-04-19 12:56:37 -0700 | [diff] [blame] | 553 | /** |
| 554 | * Set the Z range. If the end value is set to 0 the Z dimension is not |
| 555 | * clipped. |
| 556 | * |
| 557 | * @param zstartArg Must be >= 0 |
| 558 | * @param zendArg Must be >= zstartArg |
| 559 | * |
| 560 | * @return LaunchOptions |
| 561 | */ |
| Tim Murray | eb8c29c | 2013-02-07 12:16:41 -0800 | [diff] [blame] | 562 | public LaunchOptions setZ(int zstartArg, int zendArg) { |
| 563 | if (zstartArg < 0 || zendArg <= zstartArg) { |
| 564 | throw new RSIllegalArgumentException("Invalid dimensions"); |
| 565 | } |
| 566 | zstart = zstartArg; |
| 567 | zend = zendArg; |
| 568 | return this; |
| 569 | } |
| 570 | |
| 571 | |
| Jason Sams | f64cca9 | 2013-04-19 12:56:37 -0700 | [diff] [blame] | 572 | /** |
| 573 | * Returns the current X start |
| 574 | * |
| 575 | * @return int current value |
| 576 | */ |
| Tim Murray | fbfaa85 | 2012-12-14 16:01:58 -0800 | [diff] [blame] | 577 | public int getXStart() { |
| 578 | return xstart; |
| 579 | } |
| Jason Sams | f64cca9 | 2013-04-19 12:56:37 -0700 | [diff] [blame] | 580 | /** |
| 581 | * Returns the current X end |
| 582 | * |
| 583 | * @return int current value |
| 584 | */ |
| Tim Murray | fbfaa85 | 2012-12-14 16:01:58 -0800 | [diff] [blame] | 585 | public int getXEnd() { |
| 586 | return xend; |
| 587 | } |
| Jason Sams | f64cca9 | 2013-04-19 12:56:37 -0700 | [diff] [blame] | 588 | /** |
| 589 | * Returns the current Y start |
| 590 | * |
| 591 | * @return int current value |
| 592 | */ |
| Tim Murray | fbfaa85 | 2012-12-14 16:01:58 -0800 | [diff] [blame] | 593 | public int getYStart() { |
| 594 | return ystart; |
| 595 | } |
| Jason Sams | f64cca9 | 2013-04-19 12:56:37 -0700 | [diff] [blame] | 596 | /** |
| 597 | * Returns the current Y end |
| 598 | * |
| 599 | * @return int current value |
| 600 | */ |
| Tim Murray | fbfaa85 | 2012-12-14 16:01:58 -0800 | [diff] [blame] | 601 | public int getYEnd() { |
| 602 | return yend; |
| 603 | } |
| Jason Sams | f64cca9 | 2013-04-19 12:56:37 -0700 | [diff] [blame] | 604 | /** |
| 605 | * Returns the current Z start |
| 606 | * |
| 607 | * @return int current value |
| 608 | */ |
| Tim Murray | eb8c29c | 2013-02-07 12:16:41 -0800 | [diff] [blame] | 609 | public int getZStart() { |
| 610 | return zstart; |
| 611 | } |
| Jason Sams | f64cca9 | 2013-04-19 12:56:37 -0700 | [diff] [blame] | 612 | /** |
| 613 | * Returns the current Z end |
| 614 | * |
| 615 | * @return int current value |
| 616 | */ |
| Tim Murray | eb8c29c | 2013-02-07 12:16:41 -0800 | [diff] [blame] | 617 | public int getZEnd() { |
| 618 | return zend; |
| 619 | } |
| Tim Murray | fbfaa85 | 2012-12-14 16:01:58 -0800 | [diff] [blame] | 620 | |
| 621 | } |
| Jason Sams | 69f0d31 | 2009-08-03 18:11:17 -0700 | [diff] [blame] | 622 | } |