blob: 2222d2c61c973e01dc8f16bdad9dffd024a6507c [file] [log] [blame]
Jack Palevich60aa3ea2009-05-26 13:45:08 -07001/*
Stephen Hinesbe74bdd2012-02-03 15:29:36 -08002 * Copyright (C) 2008-2012 The Android Open Source Project
Jack Palevich60aa3ea2009-05-26 13:45:08 -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
Jason Sams94d8e90a2009-06-10 16:09:05 -070017package android.renderscript;
Jack Palevich60aa3ea2009-05-26 13:45:08 -070018
Jason Samsa6f338c2012-02-24 16:22:16 -080019import java.io.File;
Tim Murray2f2472c2013-08-22 14:55:26 -070020import java.lang.reflect.Method;
Tim Murray06b45672014-01-07 11:13:56 -080021import java.util.concurrent.locks.ReentrantReadWriteLock;
Jason Sams36e612a2009-07-31 16:26:13 -070022
Shih-wei Liao6b32fab2010-12-10 01:03:59 -080023import android.content.Context;
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -080024import android.content.res.AssetManager;
Jason Samsb8c5a842009-07-31 20:40:47 -070025import android.graphics.Bitmap;
Jason Samsfaa32b32011-06-20 16:58:04 -070026import android.graphics.SurfaceTexture;
Glenn Kasten260c77a2011-06-01 17:25:54 -070027import android.os.Process;
Jason Sams36e612a2009-07-31 16:26:13 -070028import android.util.Log;
29import android.view.Surface;
Dan Morrille4d9a012013-03-28 18:10:43 -070030import android.os.SystemProperties;
Tim Murray6d7a53c2013-05-23 16:59:23 -070031import android.os.Trace;
Stephen Hines4382467a2011-08-01 15:02:34 -070032
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -070033/**
Tim Murrayc11e25c2013-04-09 11:01:01 -070034 * This class provides access to a RenderScript context, which controls RenderScript
35 * initialization, resource management, and teardown. An instance of the RenderScript
36 * class must be created before any other RS objects can be created.
Jason Sams27676fe2010-11-10 17:00:59 -080037 *
Joe Fernandez3aef8e1d2011-12-20 10:38:34 -080038 * <div class="special reference">
39 * <h3>Developer Guides</h3>
Tim Murrayc11e25c2013-04-09 11:01:01 -070040 * <p>For more information about creating an application that uses RenderScript, read the
41 * <a href="{@docRoot}guide/topics/renderscript/index.html">RenderScript</a> developer guide.</p>
Joe Fernandez3aef8e1d2011-12-20 10:38:34 -080042 * </div>
Jason Samse29d4712009-07-23 15:19:03 -070043 **/
Jack Palevich60aa3ea2009-05-26 13:45:08 -070044public class RenderScript {
Tim Murray6d7a53c2013-05-23 16:59:23 -070045 static final long TRACE_TAG = Trace.TRACE_TAG_RS;
46
Jason Sams3bc47d42009-11-12 15:10:25 -080047 static final String LOG_TAG = "RenderScript_jni";
Jason Samsbf6ef8d2010-12-06 15:59:59 -080048 static final boolean DEBUG = false;
Romain Guy650a3eb2009-08-31 14:06:43 -070049 @SuppressWarnings({"UnusedDeclaration", "deprecation"})
Joe Onorato43a17652011-04-06 19:22:23 -070050 static final boolean LOG_ENABLED = false;
Jack Palevich60aa3ea2009-05-26 13:45:08 -070051
Shih-wei Liao6b32fab2010-12-10 01:03:59 -080052 private Context mApplicationContext;
Jack Palevich60aa3ea2009-05-26 13:45:08 -070053
Shih-wei Liao6b32fab2010-12-10 01:03:59 -080054 /*
Jack Palevich60aa3ea2009-05-26 13:45:08 -070055 * We use a class initializer to allow the native code to cache some
56 * field offsets.
57 */
Dan Morrille4d9a012013-03-28 18:10:43 -070058 @SuppressWarnings({"FieldCanBeLocal", "UnusedDeclaration"}) // TODO: now used locally; remove?
Jason Samsbf6ef8d2010-12-06 15:59:59 -080059 static boolean sInitialized;
60 native static void _nInit();
Jack Palevich60aa3ea2009-05-26 13:45:08 -070061
Tim Murray2f2472c2013-08-22 14:55:26 -070062 static Object sRuntime;
63 static Method registerNativeAllocation;
64 static Method registerNativeFree;
Jason Samsdba3ba52009-07-30 14:56:12 -070065
Jason Sams26e90512014-05-07 14:23:27 -070066 /*
67 * Context creation flag which specifies a normal context.
68 */
69 public static final long CREATE_FLAG_NONE = 0x0000;
70
71 /*
72 * Context creation flag which specifies a context optimized for low
73 * latency over peak performance. This is a hint and may have no effect
74 * on some implementations.
75 */
Jason Samsb69c7912014-05-20 18:48:35 -070076 public static final long CREATE_FLAG_LOW_LATENCY = 0x0002;
Jason Sams26e90512014-05-07 14:23:27 -070077
78 /*
79 * Context creation flag which specifies a context optimized for long
80 * battery life over peak performance. This is a hint and may have no effect
81 * on some implementations.
82 */
Jason Samsb69c7912014-05-20 18:48:35 -070083 public static final long CREATE_FLAG_LOW_POWER = 0x0004;
Jason Sams26e90512014-05-07 14:23:27 -070084
Jack Palevich60aa3ea2009-05-26 13:45:08 -070085 static {
86 sInitialized = false;
Dan Morrille4d9a012013-03-28 18:10:43 -070087 if (!SystemProperties.getBoolean("config.disable_renderscript", false)) {
88 try {
Tim Murray2f2472c2013-08-22 14:55:26 -070089 Class<?> vm_runtime = Class.forName("dalvik.system.VMRuntime");
90 Method get_runtime = vm_runtime.getDeclaredMethod("getRuntime");
91 sRuntime = get_runtime.invoke(null);
92 registerNativeAllocation = vm_runtime.getDeclaredMethod("registerNativeAllocation", Integer.TYPE);
93 registerNativeFree = vm_runtime.getDeclaredMethod("registerNativeFree", Integer.TYPE);
94 } catch (Exception e) {
95 Log.e(LOG_TAG, "Error loading GC methods: " + e);
96 throw new RSRuntimeException("Error loading GC methods: " + e);
97 }
98 try {
Dan Morrille4d9a012013-03-28 18:10:43 -070099 System.loadLibrary("rs_jni");
100 _nInit();
101 sInitialized = true;
102 } catch (UnsatisfiedLinkError e) {
103 Log.e(LOG_TAG, "Error loading RS jni library: " + e);
104 throw new RSRuntimeException("Error loading RS jni library: " + e);
105 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700106 }
107 }
108
Jason Sams2e1872f2010-08-17 16:25:41 -0700109 // Non-threadsafe functions.
Tim Murrayeff663f2013-11-15 13:08:30 -0800110 native long nDeviceCreate();
111 native void nDeviceDestroy(long dev);
112 native void nDeviceSetConfig(long dev, int param, int value);
113 native int nContextGetUserMessage(long con, int[] data);
114 native String nContextGetErrorMessage(long con);
115 native int nContextPeekMessage(long con, int[] subID);
116 native void nContextInitToClient(long con);
117 native void nContextDeinitToClient(long con);
Jason Sams3eaa3382009-06-10 15:04:38 -0700118
Stephen Hines7d25a822013-04-09 23:51:56 -0700119 static File mCacheDir;
Jason Samsa6f338c2012-02-24 16:22:16 -0800120
Tim Murray67cc2d02014-02-06 16:39:38 -0800121 // this should be a monotonically increasing ID
122 // used in conjunction with the API version of a device
123 static final long sMinorID = 1;
124
125 /**
126 * Returns an identifier that can be used to identify a particular
127 * minor version of RS.
128 *
129 * @hide
130 */
131 public static long getMinorID() {
132 return sMinorID;
133 }
134
Jason Samsa6f338c2012-02-24 16:22:16 -0800135 /**
136 * Sets the directory to use as a persistent storage for the
137 * renderscript object file cache.
138 *
139 * @hide
140 * @param cacheDir A directory the current process can write to
141 */
Jason Samsa6f338c2012-02-24 16:22:16 -0800142 public static void setupDiskCache(File cacheDir) {
Dan Morrille4d9a012013-03-28 18:10:43 -0700143 if (!sInitialized) {
144 Log.e(LOG_TAG, "RenderScript.setupDiskCache() called when disabled");
145 return;
146 }
147
Stephen Hines7d25a822013-04-09 23:51:56 -0700148 // Defer creation of cache path to nScriptCCreate().
149 mCacheDir = cacheDir;
Jason Samsa6f338c2012-02-24 16:22:16 -0800150 }
151
Jason Sams02d56d92013-04-12 16:40:50 -0700152 /**
153 * ContextType specifies the specific type of context to be created.
154 *
155 */
Jason Samsadd26dc2013-02-22 18:43:45 -0800156 public enum ContextType {
Jason Sams02d56d92013-04-12 16:40:50 -0700157 /**
158 * NORMAL context, this is the default and what shipping apps should
159 * use.
160 */
Jason Samsadd26dc2013-02-22 18:43:45 -0800161 NORMAL (0),
Jason Sams02d56d92013-04-12 16:40:50 -0700162
163 /**
164 * DEBUG context, perform extra runtime checks to validate the
165 * kernels and APIs are being used as intended. Get and SetElementAt
166 * will be bounds checked in this mode.
167 */
Jason Samsadd26dc2013-02-22 18:43:45 -0800168 DEBUG (1),
Jason Sams02d56d92013-04-12 16:40:50 -0700169
170 /**
171 * PROFILE context, Intended to be used once the first time an
172 * application is run on a new device. This mode allows the runtime to
173 * do additional testing and performance tuning.
174 */
Jason Samsadd26dc2013-02-22 18:43:45 -0800175 PROFILE (2);
176
177 int mID;
178 ContextType(int id) {
179 mID = id;
180 }
181 }
Jason Sams718cd1f2009-12-23 14:35:29 -0800182
Stephen Hines42028a82013-04-17 19:22:01 -0700183 ContextType mContextType;
Tim Murray06b45672014-01-07 11:13:56 -0800184 ReentrantReadWriteLock mRWLock;
Stephen Hines42028a82013-04-17 19:22:01 -0700185
Jason Sams2e1872f2010-08-17 16:25:41 -0700186 // Methods below are wrapped to protect the non-threadsafe
187 // lockless fifo.
Tim Murrayeff663f2013-11-15 13:08:30 -0800188 native long rsnContextCreateGL(long dev, int ver, int sdkVer,
Jason Sams11c8af92010-10-13 15:31:10 -0700189 int colorMin, int colorPref,
190 int alphaMin, int alphaPref,
191 int depthMin, int depthPref,
192 int stencilMin, int stencilPref,
Alex Sakhartchouk2c74ad92011-03-16 19:28:25 -0700193 int samplesMin, int samplesPref, float samplesQ, int dpi);
Tim Murrayeff663f2013-11-15 13:08:30 -0800194 synchronized long nContextCreateGL(long dev, int ver, int sdkVer,
Jason Sams11c8af92010-10-13 15:31:10 -0700195 int colorMin, int colorPref,
196 int alphaMin, int alphaPref,
197 int depthMin, int depthPref,
198 int stencilMin, int stencilPref,
Alex Sakhartchouk2c74ad92011-03-16 19:28:25 -0700199 int samplesMin, int samplesPref, float samplesQ, int dpi) {
Stephen Hines4382467a2011-08-01 15:02:34 -0700200 return rsnContextCreateGL(dev, ver, sdkVer, colorMin, colorPref,
Jason Sams11c8af92010-10-13 15:31:10 -0700201 alphaMin, alphaPref, depthMin, depthPref,
202 stencilMin, stencilPref,
Alex Sakhartchouk2c74ad92011-03-16 19:28:25 -0700203 samplesMin, samplesPref, samplesQ, dpi);
Jason Sams2e1872f2010-08-17 16:25:41 -0700204 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800205 native long rsnContextCreate(long dev, int ver, int sdkVer, int contextType);
206 synchronized long nContextCreate(long dev, int ver, int sdkVer, int contextType) {
Jason Samsadd26dc2013-02-22 18:43:45 -0800207 return rsnContextCreate(dev, ver, sdkVer, contextType);
Jason Sams2e1872f2010-08-17 16:25:41 -0700208 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800209 native void rsnContextDestroy(long con);
Jason Sams2e1872f2010-08-17 16:25:41 -0700210 synchronized void nContextDestroy() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800211 validate();
Tim Murray06b45672014-01-07 11:13:56 -0800212
213 // take teardown lock
214 // teardown lock can only be taken when no objects are being destroyed
215 ReentrantReadWriteLock.WriteLock wlock = mRWLock.writeLock();
216 wlock.lock();
217
218 long curCon = mContext;
219 // context is considered dead as of this point
220 mContext = 0;
221
222 wlock.unlock();
223 rsnContextDestroy(curCon);
Jason Sams2e1872f2010-08-17 16:25:41 -0700224 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800225 native void rsnContextSetSurface(long con, int w, int h, Surface sur);
Jason Sams2e1872f2010-08-17 16:25:41 -0700226 synchronized void nContextSetSurface(int w, int h, Surface sur) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800227 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700228 rsnContextSetSurface(mContext, w, h, sur);
229 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800230 native void rsnContextSetSurfaceTexture(long con, int w, int h, SurfaceTexture sur);
Jason Samsfaa32b32011-06-20 16:58:04 -0700231 synchronized void nContextSetSurfaceTexture(int w, int h, SurfaceTexture sur) {
232 validate();
233 rsnContextSetSurfaceTexture(mContext, w, h, sur);
234 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800235 native void rsnContextSetPriority(long con, int p);
Jason Sams2e1872f2010-08-17 16:25:41 -0700236 synchronized void nContextSetPriority(int p) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800237 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700238 rsnContextSetPriority(mContext, p);
239 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800240 native void rsnContextDump(long con, int bits);
Jason Sams2e1872f2010-08-17 16:25:41 -0700241 synchronized void nContextDump(int bits) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800242 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700243 rsnContextDump(mContext, bits);
244 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800245 native void rsnContextFinish(long con);
Jason Sams2e1872f2010-08-17 16:25:41 -0700246 synchronized void nContextFinish() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800247 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700248 rsnContextFinish(mContext);
249 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700250
Tim Murrayeff663f2013-11-15 13:08:30 -0800251 native void rsnContextSendMessage(long con, int id, int[] data);
Jason Sams455d6442013-02-05 19:20:18 -0800252 synchronized void nContextSendMessage(int id, int[] data) {
253 validate();
254 rsnContextSendMessage(mContext, id, data);
255 }
256
Narayan Kamath78c0ce52014-03-19 10:15:51 +0000257 native void rsnContextBindRootScript(long con, long script);
258 synchronized void nContextBindRootScript(long script) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800259 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700260 rsnContextBindRootScript(mContext, script);
261 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800262 native void rsnContextBindSampler(long con, int sampler, int slot);
Jason Sams2e1872f2010-08-17 16:25:41 -0700263 synchronized void nContextBindSampler(int sampler, int slot) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800264 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700265 rsnContextBindSampler(mContext, sampler, slot);
266 }
Narayan Kamath78c0ce52014-03-19 10:15:51 +0000267 native void rsnContextBindProgramStore(long con, long pfs);
268 synchronized void nContextBindProgramStore(long pfs) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800269 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700270 rsnContextBindProgramStore(mContext, pfs);
271 }
Narayan Kamath78c0ce52014-03-19 10:15:51 +0000272 native void rsnContextBindProgramFragment(long con, long pf);
273 synchronized void nContextBindProgramFragment(long pf) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800274 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700275 rsnContextBindProgramFragment(mContext, pf);
276 }
Narayan Kamath78c0ce52014-03-19 10:15:51 +0000277 native void rsnContextBindProgramVertex(long con, long pv);
278 synchronized void nContextBindProgramVertex(long pv) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800279 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700280 rsnContextBindProgramVertex(mContext, pv);
281 }
Narayan Kamath78c0ce52014-03-19 10:15:51 +0000282 native void rsnContextBindProgramRaster(long con, long pr);
283 synchronized void nContextBindProgramRaster(long pr) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800284 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700285 rsnContextBindProgramRaster(mContext, pr);
286 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800287 native void rsnContextPause(long con);
Jason Sams2e1872f2010-08-17 16:25:41 -0700288 synchronized void nContextPause() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800289 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700290 rsnContextPause(mContext);
291 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800292 native void rsnContextResume(long con);
Jason Sams2e1872f2010-08-17 16:25:41 -0700293 synchronized void nContextResume() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800294 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700295 rsnContextResume(mContext);
296 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700297
Tim Murray460a0492013-11-19 12:45:54 -0800298 native void rsnAssignName(long con, long obj, byte[] name);
299 synchronized void nAssignName(long obj, byte[] name) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800300 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700301 rsnAssignName(mContext, obj, name);
302 }
Tim Murray460a0492013-11-19 12:45:54 -0800303 native String rsnGetName(long con, long obj);
304 synchronized String nGetName(long obj) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800305 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700306 return rsnGetName(mContext, obj);
307 }
Tim Murray06b45672014-01-07 11:13:56 -0800308
309 // nObjDestroy is explicitly _not_ synchronous to prevent crashes in finalizers
Tim Murray460a0492013-11-19 12:45:54 -0800310 native void rsnObjDestroy(long con, long id);
Tim Murray06b45672014-01-07 11:13:56 -0800311 void nObjDestroy(long id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800312 // There is a race condition here. The calling code may be run
313 // by the gc while teardown is occuring. This protects againts
314 // deleting dead objects.
315 if (mContext != 0) {
316 rsnObjDestroy(mContext, id);
317 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700318 }
Jason Samsfe08d992009-05-27 14:45:32 -0700319
Tim Murray460a0492013-11-19 12:45:54 -0800320 native long rsnElementCreate(long con, long type, int kind, boolean norm, int vecSize);
321 synchronized long nElementCreate(long type, int kind, boolean norm, int vecSize) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800322 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700323 return rsnElementCreate(mContext, type, kind, norm, vecSize);
324 }
Ashok Bhat98071552014-02-12 09:54:43 +0000325 native long rsnElementCreate2(long con, long[] elements, String[] names, int[] arraySizes);
326 synchronized long nElementCreate2(long[] elements, String[] names, int[] arraySizes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800327 validate();
Jason Sams70d4e502010-09-02 17:35:23 -0700328 return rsnElementCreate2(mContext, elements, names, arraySizes);
Jason Sams2e1872f2010-08-17 16:25:41 -0700329 }
Tim Murray460a0492013-11-19 12:45:54 -0800330 native void rsnElementGetNativeData(long con, long id, int[] elementData);
331 synchronized void nElementGetNativeData(long id, int[] elementData) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800332 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700333 rsnElementGetNativeData(mContext, id, elementData);
334 }
Tim Murray460a0492013-11-19 12:45:54 -0800335 native void rsnElementGetSubElements(long con, long id,
Ashok Bhat98071552014-02-12 09:54:43 +0000336 long[] IDs, String[] names, int[] arraySizes);
337 synchronized void nElementGetSubElements(long id, long[] IDs, String[] names, int[] arraySizes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800338 validate();
Alex Sakhartchouk7d5f5e72011-10-18 11:08:31 -0700339 rsnElementGetSubElements(mContext, id, IDs, names, arraySizes);
Jason Sams2e1872f2010-08-17 16:25:41 -0700340 }
Jason Sams768bc022009-09-21 19:41:04 -0700341
Tim Murray460a0492013-11-19 12:45:54 -0800342 native long rsnTypeCreate(long con, long eid, int x, int y, int z, boolean mips, boolean faces, int yuv);
343 synchronized long nTypeCreate(long eid, int x, int y, int z, boolean mips, boolean faces, int yuv) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800344 validate();
Jason Samsb109cc72013-01-07 18:20:12 -0800345 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv);
Jason Sams2e1872f2010-08-17 16:25:41 -0700346 }
Ashok Bhat98071552014-02-12 09:54:43 +0000347 native void rsnTypeGetNativeData(long con, long id, long[] typeData);
348 synchronized void nTypeGetNativeData(long id, long[] typeData) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800349 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700350 rsnTypeGetNativeData(mContext, id, typeData);
351 }
Jason Sams768bc022009-09-21 19:41:04 -0700352
Ashok Bhat98071552014-02-12 09:54:43 +0000353 native long rsnAllocationCreateTyped(long con, long type, int mip, int usage, long pointer);
354 synchronized long nAllocationCreateTyped(long type, int mip, int usage, long pointer) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800355 validate();
Jason Sams857d0c72011-11-23 15:02:15 -0800356 return rsnAllocationCreateTyped(mContext, type, mip, usage, pointer);
Jason Sams2e1872f2010-08-17 16:25:41 -0700357 }
Tim Murray460a0492013-11-19 12:45:54 -0800358 native long rsnAllocationCreateFromBitmap(long con, long type, int mip, Bitmap bmp, int usage);
359 synchronized long nAllocationCreateFromBitmap(long type, int mip, Bitmap bmp, int usage) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800360 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800361 return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage);
Alex Sakhartchouk26ae3902010-10-11 12:35:15 -0700362 }
Tim Murraya3145512012-12-04 17:59:29 -0800363
Tim Murray460a0492013-11-19 12:45:54 -0800364 native long rsnAllocationCreateBitmapBackedAllocation(long con, long type, int mip, Bitmap bmp, int usage);
365 synchronized long nAllocationCreateBitmapBackedAllocation(long type, int mip, Bitmap bmp, int usage) {
Tim Murraya3145512012-12-04 17:59:29 -0800366 validate();
367 return rsnAllocationCreateBitmapBackedAllocation(mContext, type, mip, bmp, usage);
368 }
369
Tim Murray460a0492013-11-19 12:45:54 -0800370 native long rsnAllocationCubeCreateFromBitmap(long con, long type, int mip, Bitmap bmp, int usage);
371 synchronized long nAllocationCubeCreateFromBitmap(long type, int mip, Bitmap bmp, int usage) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800372 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800373 return rsnAllocationCubeCreateFromBitmap(mContext, type, mip, bmp, usage);
Alex Sakhartchouk67f2e442010-11-18 15:22:43 -0800374 }
Tim Murray460a0492013-11-19 12:45:54 -0800375 native long rsnAllocationCreateBitmapRef(long con, long type, Bitmap bmp);
376 synchronized long nAllocationCreateBitmapRef(long type, Bitmap bmp) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800377 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700378 return rsnAllocationCreateBitmapRef(mContext, type, bmp);
379 }
Tim Murray460a0492013-11-19 12:45:54 -0800380 native long rsnAllocationCreateFromAssetStream(long con, int mips, int assetStream, int usage);
381 synchronized long nAllocationCreateFromAssetStream(int mips, int assetStream, int usage) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800382 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800383 return rsnAllocationCreateFromAssetStream(mContext, mips, assetStream, usage);
384 }
385
Tim Murray460a0492013-11-19 12:45:54 -0800386 native void rsnAllocationCopyToBitmap(long con, long alloc, Bitmap bmp);
387 synchronized void nAllocationCopyToBitmap(long alloc, Bitmap bmp) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800388 validate();
Jason Sams4ef66502010-12-10 16:03:15 -0800389 rsnAllocationCopyToBitmap(mContext, alloc, bmp);
390 }
391
392
Tim Murray460a0492013-11-19 12:45:54 -0800393 native void rsnAllocationSyncAll(long con, long alloc, int src);
394 synchronized void nAllocationSyncAll(long alloc, int src) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800395 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800396 rsnAllocationSyncAll(mContext, alloc, src);
397 }
Tim Murray460a0492013-11-19 12:45:54 -0800398 native Surface rsnAllocationGetSurface(long con, long alloc);
399 synchronized Surface nAllocationGetSurface(long alloc) {
Jason Sams615e7ce2012-01-13 14:01:20 -0800400 validate();
Jason Sams72226e02013-02-22 12:45:54 -0800401 return rsnAllocationGetSurface(mContext, alloc);
Jason Samsfe1d5ff2012-03-23 11:47:26 -0700402 }
Tim Murray460a0492013-11-19 12:45:54 -0800403 native void rsnAllocationSetSurface(long con, long alloc, Surface sur);
404 synchronized void nAllocationSetSurface(long alloc, Surface sur) {
Jason Sams163766c2012-02-15 12:04:24 -0800405 validate();
Jason Samsfb9aa9f2012-03-28 15:30:07 -0700406 rsnAllocationSetSurface(mContext, alloc, sur);
Jason Sams163766c2012-02-15 12:04:24 -0800407 }
Tim Murray460a0492013-11-19 12:45:54 -0800408 native void rsnAllocationIoSend(long con, long alloc);
409 synchronized void nAllocationIoSend(long alloc) {
Jason Sams163766c2012-02-15 12:04:24 -0800410 validate();
411 rsnAllocationIoSend(mContext, alloc);
412 }
Tim Murray460a0492013-11-19 12:45:54 -0800413 native void rsnAllocationIoReceive(long con, long alloc);
414 synchronized void nAllocationIoReceive(long alloc) {
Jason Sams163766c2012-02-15 12:04:24 -0800415 validate();
416 rsnAllocationIoReceive(mContext, alloc);
417 }
418
Jason Sams615e7ce2012-01-13 14:01:20 -0800419
Tim Murray460a0492013-11-19 12:45:54 -0800420 native void rsnAllocationGenerateMipmaps(long con, long alloc);
421 synchronized void nAllocationGenerateMipmaps(long alloc) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800422 validate();
Jason Samsf7086092011-01-12 13:28:37 -0800423 rsnAllocationGenerateMipmaps(mContext, alloc);
424 }
Tim Murray460a0492013-11-19 12:45:54 -0800425 native void rsnAllocationCopyFromBitmap(long con, long alloc, Bitmap bmp);
426 synchronized void nAllocationCopyFromBitmap(long alloc, Bitmap bmp) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800427 validate();
Jason Sams4ef66502010-12-10 16:03:15 -0800428 rsnAllocationCopyFromBitmap(mContext, alloc, bmp);
Jason Sams2e1872f2010-08-17 16:25:41 -0700429 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700430
Jason Sams49a05d72010-12-29 14:31:29 -0800431
Tim Murray460a0492013-11-19 12:45:54 -0800432 native void rsnAllocationData1D(long con, long id, int off, int mip, int count, Object d, int sizeBytes, int dt);
433 synchronized void nAllocationData1D(long id, int off, int mip, int count, Object d, int sizeBytes, Element.DataType dt) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800434 validate();
Jason Samse729a942013-11-06 11:22:02 -0800435 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes, dt.mID);
Jason Sams2e1872f2010-08-17 16:25:41 -0700436 }
Alex Sakhartchoukaae74ad2010-06-04 10:06:50 -0700437
Tim Murray460a0492013-11-19 12:45:54 -0800438 native void rsnAllocationElementData1D(long con,long id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes);
439 synchronized void nAllocationElementData1D(long id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800440 validate();
Jason Sams49a05d72010-12-29 14:31:29 -0800441 rsnAllocationElementData1D(mContext, id, xoff, mip, compIdx, d, sizeBytes);
Jason Sams2e1872f2010-08-17 16:25:41 -0700442 }
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -0700443
Tim Murrayeff663f2013-11-15 13:08:30 -0800444 native void rsnAllocationData2D(long con,
Tim Murray460a0492013-11-19 12:45:54 -0800445 long dstAlloc, int dstXoff, int dstYoff,
Alex Sakhartchouk304b1f52011-06-14 11:13:19 -0700446 int dstMip, int dstFace,
447 int width, int height,
Tim Murray460a0492013-11-19 12:45:54 -0800448 long srcAlloc, int srcXoff, int srcYoff,
Alex Sakhartchouk304b1f52011-06-14 11:13:19 -0700449 int srcMip, int srcFace);
Tim Murray460a0492013-11-19 12:45:54 -0800450 synchronized void nAllocationData2D(long dstAlloc, int dstXoff, int dstYoff,
Alex Sakhartchouk304b1f52011-06-14 11:13:19 -0700451 int dstMip, int dstFace,
452 int width, int height,
Tim Murray460a0492013-11-19 12:45:54 -0800453 long srcAlloc, int srcXoff, int srcYoff,
Alex Sakhartchouk304b1f52011-06-14 11:13:19 -0700454 int srcMip, int srcFace) {
455 validate();
456 rsnAllocationData2D(mContext,
457 dstAlloc, dstXoff, dstYoff,
458 dstMip, dstFace,
459 width, height,
460 srcAlloc, srcXoff, srcYoff,
461 srcMip, srcFace);
462 }
463
Tim Murray460a0492013-11-19 12:45:54 -0800464 native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face,
Jason Samse729a942013-11-06 11:22:02 -0800465 int w, int h, Object d, int sizeBytes, int dt);
Tim Murray460a0492013-11-19 12:45:54 -0800466 synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face,
Jason Samse729a942013-11-06 11:22:02 -0800467 int w, int h, Object d, int sizeBytes, Element.DataType dt) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800468 validate();
Jason Samse729a942013-11-06 11:22:02 -0800469 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes, dt.mID);
Jason Sams2e1872f2010-08-17 16:25:41 -0700470 }
Jason Sams21659ac2013-11-06 15:08:07 -0800471
Tim Murray460a0492013-11-19 12:45:54 -0800472 native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face, Bitmap b);
473 synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face, Bitmap b) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800474 validate();
Jason Samsfa445b92011-01-07 17:00:07 -0800475 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, b);
476 }
Jason Sams49a05d72010-12-29 14:31:29 -0800477
Tim Murrayeff663f2013-11-15 13:08:30 -0800478 native void rsnAllocationData3D(long con,
Tim Murray460a0492013-11-19 12:45:54 -0800479 long dstAlloc, int dstXoff, int dstYoff, int dstZoff,
Jason Samsb05d6892013-04-09 15:59:24 -0700480 int dstMip,
481 int width, int height, int depth,
Tim Murray460a0492013-11-19 12:45:54 -0800482 long srcAlloc, int srcXoff, int srcYoff, int srcZoff,
Jason Samsb05d6892013-04-09 15:59:24 -0700483 int srcMip);
Tim Murray460a0492013-11-19 12:45:54 -0800484 synchronized void nAllocationData3D(long dstAlloc, int dstXoff, int dstYoff, int dstZoff,
Jason Samsb05d6892013-04-09 15:59:24 -0700485 int dstMip,
486 int width, int height, int depth,
Tim Murray460a0492013-11-19 12:45:54 -0800487 long srcAlloc, int srcXoff, int srcYoff, int srcZoff,
Jason Samsb05d6892013-04-09 15:59:24 -0700488 int srcMip) {
489 validate();
490 rsnAllocationData3D(mContext,
491 dstAlloc, dstXoff, dstYoff, dstZoff,
492 dstMip, width, height, depth,
493 srcAlloc, srcXoff, srcYoff, srcZoff, srcMip);
494 }
495
Tim Murray460a0492013-11-19 12:45:54 -0800496 native void rsnAllocationData3D(long con, long id, int xoff, int yoff, int zoff, int mip,
Jason Samse729a942013-11-06 11:22:02 -0800497 int w, int h, int depth, Object d, int sizeBytes, int dt);
Tim Murray460a0492013-11-19 12:45:54 -0800498 synchronized void nAllocationData3D(long id, int xoff, int yoff, int zoff, int mip,
Jason Samse729a942013-11-06 11:22:02 -0800499 int w, int h, int depth, Object d, int sizeBytes, Element.DataType dt) {
Jason Samsb05d6892013-04-09 15:59:24 -0700500 validate();
Jason Samse729a942013-11-06 11:22:02 -0800501 rsnAllocationData3D(mContext, id, xoff, yoff, zoff, mip, w, h, depth, d, sizeBytes, dt.mID);
Jason Samsb05d6892013-04-09 15:59:24 -0700502 }
Jason Samsb05d6892013-04-09 15:59:24 -0700503
Tim Murray460a0492013-11-19 12:45:54 -0800504 native void rsnAllocationRead(long con, long id, Object d, int dt);
505 synchronized void nAllocationRead(long id, Object d, Element.DataType dt) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800506 validate();
Jason Sams21659ac2013-11-06 15:08:07 -0800507 rsnAllocationRead(mContext, id, d, dt.mID);
Jason Samsfa445b92011-01-07 17:00:07 -0800508 }
Jason Sams21659ac2013-11-06 15:08:07 -0800509
Tim Murray460a0492013-11-19 12:45:54 -0800510 native void rsnAllocationRead1D(long con, long id, int off, int mip, int count, Object d,
Jason Sams21659ac2013-11-06 15:08:07 -0800511 int sizeBytes, int dt);
Tim Murray460a0492013-11-19 12:45:54 -0800512 synchronized void nAllocationRead1D(long id, int off, int mip, int count, Object d,
Jason Sams21659ac2013-11-06 15:08:07 -0800513 int sizeBytes, Element.DataType dt) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800514 validate();
Jason Sams21659ac2013-11-06 15:08:07 -0800515 rsnAllocationRead1D(mContext, id, off, mip, count, d, sizeBytes, dt.mID);
Jason Samsfa445b92011-01-07 17:00:07 -0800516 }
Jason Sams21659ac2013-11-06 15:08:07 -0800517
Tim Murray460a0492013-11-19 12:45:54 -0800518 native void rsnAllocationRead2D(long con, long id, int xoff, int yoff, int mip, int face,
Jason Sams21659ac2013-11-06 15:08:07 -0800519 int w, int h, Object d, int sizeBytes, int dt);
Tim Murray460a0492013-11-19 12:45:54 -0800520 synchronized void nAllocationRead2D(long id, int xoff, int yoff, int mip, int face,
Jason Sams21659ac2013-11-06 15:08:07 -0800521 int w, int h, Object d, int sizeBytes, Element.DataType dt) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800522 validate();
Jason Sams21659ac2013-11-06 15:08:07 -0800523 rsnAllocationRead2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes, dt.mID);
Jason Sams2e1872f2010-08-17 16:25:41 -0700524 }
Jason Sams21659ac2013-11-06 15:08:07 -0800525
Tim Murray460a0492013-11-19 12:45:54 -0800526 native long rsnAllocationGetType(long con, long id);
527 synchronized long nAllocationGetType(long id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800528 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700529 return rsnAllocationGetType(mContext, id);
530 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700531
Tim Murray460a0492013-11-19 12:45:54 -0800532 native void rsnAllocationResize1D(long con, long id, int dimX);
533 synchronized void nAllocationResize1D(long id, int dimX) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800534 validate();
Jason Sams5edc6082010-10-05 13:32:49 -0700535 rsnAllocationResize1D(mContext, id, dimX);
536 }
Jason Sams5edc6082010-10-05 13:32:49 -0700537
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000538 native long rsnFileA3DCreateFromAssetStream(long con, long assetStream);
539 synchronized long nFileA3DCreateFromAssetStream(long assetStream) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800540 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700541 return rsnFileA3DCreateFromAssetStream(mContext, assetStream);
542 }
Tim Murray460a0492013-11-19 12:45:54 -0800543 native long rsnFileA3DCreateFromFile(long con, String path);
544 synchronized long nFileA3DCreateFromFile(String path) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800545 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800546 return rsnFileA3DCreateFromFile(mContext, path);
547 }
Tim Murray460a0492013-11-19 12:45:54 -0800548 native long rsnFileA3DCreateFromAsset(long con, AssetManager mgr, String path);
549 synchronized long nFileA3DCreateFromAsset(AssetManager mgr, String path) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800550 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800551 return rsnFileA3DCreateFromAsset(mContext, mgr, path);
552 }
Tim Murray460a0492013-11-19 12:45:54 -0800553 native int rsnFileA3DGetNumIndexEntries(long con, long fileA3D);
554 synchronized int nFileA3DGetNumIndexEntries(long fileA3D) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800555 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700556 return rsnFileA3DGetNumIndexEntries(mContext, fileA3D);
557 }
Tim Murray460a0492013-11-19 12:45:54 -0800558 native void rsnFileA3DGetIndexEntries(long con, long fileA3D, int numEntries, int[] IDs, String[] names);
559 synchronized void nFileA3DGetIndexEntries(long fileA3D, int numEntries, int[] IDs, String[] names) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800560 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700561 rsnFileA3DGetIndexEntries(mContext, fileA3D, numEntries, IDs, names);
562 }
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000563 native long rsnFileA3DGetEntryByIndex(long con, long fileA3D, int index);
564 synchronized long nFileA3DGetEntryByIndex(long fileA3D, int index) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800565 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700566 return rsnFileA3DGetEntryByIndex(mContext, fileA3D, index);
567 }
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700568
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000569 native long rsnFontCreateFromFile(long con, String fileName, float size, int dpi);
570 synchronized long nFontCreateFromFile(String fileName, float size, int dpi) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800571 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700572 return rsnFontCreateFromFile(mContext, fileName, size, dpi);
573 }
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000574 native long rsnFontCreateFromAssetStream(long con, String name, float size, int dpi, long assetStream);
575 synchronized long nFontCreateFromAssetStream(String name, float size, int dpi, long assetStream) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800576 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800577 return rsnFontCreateFromAssetStream(mContext, name, size, dpi, assetStream);
578 }
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000579 native long rsnFontCreateFromAsset(long con, AssetManager mgr, String path, float size, int dpi);
580 synchronized long nFontCreateFromAsset(AssetManager mgr, String path, float size, int dpi) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800581 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800582 return rsnFontCreateFromAsset(mContext, mgr, path, size, dpi);
583 }
Jason Sams22534172009-08-04 16:58:20 -0700584
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700585
Tim Murray460a0492013-11-19 12:45:54 -0800586 native void rsnScriptBindAllocation(long con, long script, long alloc, int slot);
587 synchronized void nScriptBindAllocation(long script, long alloc, int slot) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800588 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700589 rsnScriptBindAllocation(mContext, script, alloc, slot);
590 }
Tim Murray460a0492013-11-19 12:45:54 -0800591 native void rsnScriptSetTimeZone(long con, long script, byte[] timeZone);
592 synchronized void nScriptSetTimeZone(long script, byte[] timeZone) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800593 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700594 rsnScriptSetTimeZone(mContext, script, timeZone);
595 }
Tim Murray460a0492013-11-19 12:45:54 -0800596 native void rsnScriptInvoke(long con, long id, int slot);
597 synchronized void nScriptInvoke(long id, int slot) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800598 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700599 rsnScriptInvoke(mContext, id, slot);
600 }
Tim Murray460a0492013-11-19 12:45:54 -0800601 native void rsnScriptForEach(long con, long id, int slot, long ain, long aout, byte[] params);
602 native void rsnScriptForEach(long con, long id, int slot, long ain, long aout);
603 native void rsnScriptForEachClipped(long con, long id, int slot, long ain, long aout, byte[] params,
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800604 int xstart, int xend, int ystart, int yend, int zstart, int zend);
Tim Murray460a0492013-11-19 12:45:54 -0800605 native void rsnScriptForEachClipped(long con, long id, int slot, long ain, long aout,
Stephen Hinesdac6ed02013-02-13 00:09:02 -0800606 int xstart, int xend, int ystart, int yend, int zstart, int zend);
Tim Murray460a0492013-11-19 12:45:54 -0800607 synchronized void nScriptForEach(long id, int slot, long ain, long aout, byte[] params) {
Jason Sams6e494d32011-04-27 16:33:11 -0700608 validate();
609 if (params == null) {
610 rsnScriptForEach(mContext, id, slot, ain, aout);
611 } else {
612 rsnScriptForEach(mContext, id, slot, ain, aout, params);
613 }
614 }
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800615
Tim Murray460a0492013-11-19 12:45:54 -0800616 synchronized void nScriptForEachClipped(long id, int slot, long ain, long aout, byte[] params,
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800617 int xstart, int xend, int ystart, int yend, int zstart, int zend) {
618 validate();
Stephen Hinesdac6ed02013-02-13 00:09:02 -0800619 if (params == null) {
620 rsnScriptForEachClipped(mContext, id, slot, ain, aout, xstart, xend, ystart, yend, zstart, zend);
621 } else {
622 rsnScriptForEachClipped(mContext, id, slot, ain, aout, params, xstart, xend, ystart, yend, zstart, zend);
623 }
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800624 }
625
Tim Murray460a0492013-11-19 12:45:54 -0800626 native void rsnScriptInvokeV(long con, long id, int slot, byte[] params);
627 synchronized void nScriptInvokeV(long id, int slot, byte[] params) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800628 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700629 rsnScriptInvokeV(mContext, id, slot, params);
630 }
Tim Murray7c4caad2013-04-10 16:21:40 -0700631
Tim Murray460a0492013-11-19 12:45:54 -0800632 native void rsnScriptSetVarI(long con, long id, int slot, int val);
633 synchronized void nScriptSetVarI(long id, int slot, int val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800634 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700635 rsnScriptSetVarI(mContext, id, slot, val);
636 }
Tim Murray460a0492013-11-19 12:45:54 -0800637 native int rsnScriptGetVarI(long con, long id, int slot);
638 synchronized int nScriptGetVarI(long id, int slot) {
Tim Murray7c4caad2013-04-10 16:21:40 -0700639 validate();
640 return rsnScriptGetVarI(mContext, id, slot);
641 }
642
Tim Murray460a0492013-11-19 12:45:54 -0800643 native void rsnScriptSetVarJ(long con, long id, int slot, long val);
644 synchronized void nScriptSetVarJ(long id, int slot, long val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800645 validate();
Stephen Hines031ec58c2010-10-11 10:54:21 -0700646 rsnScriptSetVarJ(mContext, id, slot, val);
647 }
Tim Murray460a0492013-11-19 12:45:54 -0800648 native long rsnScriptGetVarJ(long con, long id, int slot);
649 synchronized long nScriptGetVarJ(long id, int slot) {
Tim Murray7c4caad2013-04-10 16:21:40 -0700650 validate();
651 return rsnScriptGetVarJ(mContext, id, slot);
652 }
653
Tim Murray460a0492013-11-19 12:45:54 -0800654 native void rsnScriptSetVarF(long con, long id, int slot, float val);
655 synchronized void nScriptSetVarF(long id, int slot, float val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800656 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700657 rsnScriptSetVarF(mContext, id, slot, val);
658 }
Tim Murray460a0492013-11-19 12:45:54 -0800659 native float rsnScriptGetVarF(long con, long id, int slot);
660 synchronized float nScriptGetVarF(long id, int slot) {
Tim Murray7c4caad2013-04-10 16:21:40 -0700661 validate();
662 return rsnScriptGetVarF(mContext, id, slot);
663 }
Tim Murray460a0492013-11-19 12:45:54 -0800664 native void rsnScriptSetVarD(long con, long id, int slot, double val);
665 synchronized void nScriptSetVarD(long id, int slot, double val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800666 validate();
Stephen Hinesca54ec32010-09-20 17:20:30 -0700667 rsnScriptSetVarD(mContext, id, slot, val);
668 }
Tim Murray460a0492013-11-19 12:45:54 -0800669 native double rsnScriptGetVarD(long con, long id, int slot);
670 synchronized double nScriptGetVarD(long id, int slot) {
Tim Murray7c4caad2013-04-10 16:21:40 -0700671 validate();
672 return rsnScriptGetVarD(mContext, id, slot);
673 }
Tim Murray460a0492013-11-19 12:45:54 -0800674 native void rsnScriptSetVarV(long con, long id, int slot, byte[] val);
675 synchronized void nScriptSetVarV(long id, int slot, byte[] val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800676 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700677 rsnScriptSetVarV(mContext, id, slot, val);
678 }
Tim Murray460a0492013-11-19 12:45:54 -0800679 native void rsnScriptGetVarV(long con, long id, int slot, byte[] val);
680 synchronized void nScriptGetVarV(long id, int slot, byte[] val) {
Tim Murray7c4caad2013-04-10 16:21:40 -0700681 validate();
682 rsnScriptGetVarV(mContext, id, slot, val);
683 }
Tim Murray460a0492013-11-19 12:45:54 -0800684 native void rsnScriptSetVarVE(long con, long id, int slot, byte[] val,
685 long e, int[] dims);
686 synchronized void nScriptSetVarVE(long id, int slot, byte[] val,
687 long e, int[] dims) {
Stephen Hinesadeb8092012-04-20 14:26:06 -0700688 validate();
689 rsnScriptSetVarVE(mContext, id, slot, val, e, dims);
690 }
Tim Murray460a0492013-11-19 12:45:54 -0800691 native void rsnScriptSetVarObj(long con, long id, int slot, long val);
692 synchronized void nScriptSetVarObj(long id, int slot, long val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800693 validate();
Jason Sams6f4cf0b2010-11-16 17:37:02 -0800694 rsnScriptSetVarObj(mContext, id, slot, val);
695 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700696
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000697 native long rsnScriptCCreate(long con, String resName, String cacheDir,
Jason Samse4a06c52011-03-16 16:29:28 -0700698 byte[] script, int length);
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000699 synchronized long nScriptCCreate(String resName, String cacheDir, byte[] script, int length) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800700 validate();
Jason Samse4a06c52011-03-16 16:29:28 -0700701 return rsnScriptCCreate(mContext, resName, cacheDir, script, length);
Jason Sams2e1872f2010-08-17 16:25:41 -0700702 }
Jason Samsebfb4362009-09-23 13:57:02 -0700703
Tim Murray460a0492013-11-19 12:45:54 -0800704 native long rsnScriptIntrinsicCreate(long con, int id, long eid);
705 synchronized long nScriptIntrinsicCreate(int id, long eid) {
Jason Sams6ab97682012-08-10 12:09:43 -0700706 validate();
707 return rsnScriptIntrinsicCreate(mContext, id, eid);
708 }
709
Tim Murray460a0492013-11-19 12:45:54 -0800710 native long rsnScriptKernelIDCreate(long con, long sid, int slot, int sig);
711 synchronized long nScriptKernelIDCreate(long sid, int slot, int sig) {
Jason Sams08a81582012-09-18 12:32:10 -0700712 validate();
713 return rsnScriptKernelIDCreate(mContext, sid, slot, sig);
714 }
715
Tim Murray460a0492013-11-19 12:45:54 -0800716 native long rsnScriptFieldIDCreate(long con, long sid, int slot);
717 synchronized long nScriptFieldIDCreate(long sid, int slot) {
Jason Sams08a81582012-09-18 12:32:10 -0700718 validate();
719 return rsnScriptFieldIDCreate(mContext, sid, slot);
720 }
721
Ashok Bhat98071552014-02-12 09:54:43 +0000722 native long rsnScriptGroupCreate(long con, long[] kernels, long[] src, long[] dstk, long[] dstf, long[] types);
723 synchronized long nScriptGroupCreate(long[] kernels, long[] src, long[] dstk, long[] dstf, long[] types) {
Jason Sams08a81582012-09-18 12:32:10 -0700724 validate();
725 return rsnScriptGroupCreate(mContext, kernels, src, dstk, dstf, types);
726 }
727
Tim Murray460a0492013-11-19 12:45:54 -0800728 native void rsnScriptGroupSetInput(long con, long group, long kernel, long alloc);
729 synchronized void nScriptGroupSetInput(long group, long kernel, long alloc) {
Jason Sams08a81582012-09-18 12:32:10 -0700730 validate();
731 rsnScriptGroupSetInput(mContext, group, kernel, alloc);
732 }
733
Tim Murray460a0492013-11-19 12:45:54 -0800734 native void rsnScriptGroupSetOutput(long con, long group, long kernel, long alloc);
735 synchronized void nScriptGroupSetOutput(long group, long kernel, long alloc) {
Jason Sams08a81582012-09-18 12:32:10 -0700736 validate();
737 rsnScriptGroupSetOutput(mContext, group, kernel, alloc);
738 }
739
Tim Murray460a0492013-11-19 12:45:54 -0800740 native void rsnScriptGroupExecute(long con, long group);
741 synchronized void nScriptGroupExecute(long group) {
Jason Sams08a81582012-09-18 12:32:10 -0700742 validate();
743 rsnScriptGroupExecute(mContext, group);
744 }
745
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000746 native long rsnSamplerCreate(long con, int magFilter, int minFilter,
Alex Sakhartchouka89094a2011-05-04 17:45:36 -0700747 int wrapS, int wrapT, int wrapR, float aniso);
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000748 synchronized long nSamplerCreate(int magFilter, int minFilter,
Alex Sakhartchouka89094a2011-05-04 17:45:36 -0700749 int wrapS, int wrapT, int wrapR, float aniso) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800750 validate();
Alex Sakhartchouka89094a2011-05-04 17:45:36 -0700751 return rsnSamplerCreate(mContext, magFilter, minFilter, wrapS, wrapT, wrapR, aniso);
Jason Sams2e1872f2010-08-17 16:25:41 -0700752 }
Jason Sams0011bcf2009-12-15 12:58:36 -0800753
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000754 native long rsnProgramStoreCreate(long con, boolean r, boolean g, boolean b, boolean a,
Jason Sams331bf9b2011-04-06 11:23:54 -0700755 boolean depthMask, boolean dither,
756 int srcMode, int dstMode, int depthFunc);
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000757 synchronized long nProgramStoreCreate(boolean r, boolean g, boolean b, boolean a,
Jason Sams331bf9b2011-04-06 11:23:54 -0700758 boolean depthMask, boolean dither,
759 int srcMode, int dstMode, int depthFunc) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800760 validate();
Jason Samsbd184c52011-04-06 11:44:47 -0700761 return rsnProgramStoreCreate(mContext, r, g, b, a, depthMask, dither, srcMode,
762 dstMode, depthFunc);
Jason Sams2e1872f2010-08-17 16:25:41 -0700763 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700764
Tim Murray460a0492013-11-19 12:45:54 -0800765 native long rsnProgramRasterCreate(long con, boolean pointSprite, int cullMode);
766 synchronized long nProgramRasterCreate(boolean pointSprite, int cullMode) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800767 validate();
Jason Sams94aaed32011-09-23 14:18:53 -0700768 return rsnProgramRasterCreate(mContext, pointSprite, cullMode);
Jason Sams2e1872f2010-08-17 16:25:41 -0700769 }
Jason Sams1fe9b8c2009-06-11 14:46:10 -0700770
Tim Murray460a0492013-11-19 12:45:54 -0800771 native void rsnProgramBindConstants(long con, long pv, int slot, long mID);
772 synchronized void nProgramBindConstants(long pv, int slot, long mID) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800773 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700774 rsnProgramBindConstants(mContext, pv, slot, mID);
775 }
Tim Murray460a0492013-11-19 12:45:54 -0800776 native void rsnProgramBindTexture(long con, long vpf, int slot, long a);
777 synchronized void nProgramBindTexture(long vpf, int slot, long a) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800778 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700779 rsnProgramBindTexture(mContext, vpf, slot, a);
780 }
Tim Murray460a0492013-11-19 12:45:54 -0800781 native void rsnProgramBindSampler(long con, long vpf, int slot, long s);
782 synchronized void nProgramBindSampler(long vpf, int slot, long s) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800783 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700784 rsnProgramBindSampler(mContext, vpf, slot, s);
785 }
Ashok Bhat98071552014-02-12 09:54:43 +0000786 native long rsnProgramFragmentCreate(long con, String shader, String[] texNames, long[] params);
787 synchronized long nProgramFragmentCreate(String shader, String[] texNames, long[] params) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800788 validate();
Alex Sakhartchouk2123b462012-02-15 16:21:46 -0800789 return rsnProgramFragmentCreate(mContext, shader, texNames, params);
Jason Sams2e1872f2010-08-17 16:25:41 -0700790 }
Ashok Bhat98071552014-02-12 09:54:43 +0000791 native long rsnProgramVertexCreate(long con, String shader, String[] texNames, long[] params);
792 synchronized long nProgramVertexCreate(String shader, String[] texNames, long[] params) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800793 validate();
Alex Sakhartchouk2123b462012-02-15 16:21:46 -0800794 return rsnProgramVertexCreate(mContext, shader, texNames, params);
Jason Sams2e1872f2010-08-17 16:25:41 -0700795 }
Alex Sakhartchouk164aaed2010-07-01 16:14:06 -0700796
Ashok Bhat98071552014-02-12 09:54:43 +0000797 native long rsnMeshCreate(long con, long[] vtx, long[] idx, int[] prim);
798 synchronized long nMeshCreate(long[] vtx, long[] idx, int[] prim) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800799 validate();
Alex Sakhartchouk25999a02011-05-12 10:38:03 -0700800 return rsnMeshCreate(mContext, vtx, idx, prim);
Alex Sakhartchouk9d71e212010-11-08 15:10:52 -0800801 }
Tim Murray460a0492013-11-19 12:45:54 -0800802 native int rsnMeshGetVertexBufferCount(long con, long id);
803 synchronized int nMeshGetVertexBufferCount(long id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800804 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700805 return rsnMeshGetVertexBufferCount(mContext, id);
806 }
Tim Murray460a0492013-11-19 12:45:54 -0800807 native int rsnMeshGetIndexCount(long con, long id);
808 synchronized int nMeshGetIndexCount(long id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800809 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700810 return rsnMeshGetIndexCount(mContext, id);
811 }
Ashok Bhat98071552014-02-12 09:54:43 +0000812 native void rsnMeshGetVertices(long con, long id, long[] vtxIds, int vtxIdCount);
813 synchronized void nMeshGetVertices(long id, long[] vtxIds, int vtxIdCount) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800814 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700815 rsnMeshGetVertices(mContext, id, vtxIds, vtxIdCount);
816 }
Ashok Bhat98071552014-02-12 09:54:43 +0000817 native void rsnMeshGetIndices(long con, long id, long[] idxIds, int[] primitives, int vtxIdCount);
818 synchronized void nMeshGetIndices(long id, long[] idxIds, int[] primitives, int vtxIdCount) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800819 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700820 rsnMeshGetIndices(mContext, id, idxIds, primitives, vtxIdCount);
821 }
822
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000823 native long rsnPathCreate(long con, int prim, boolean isStatic, long vtx, long loop, float q);
824 synchronized long nPathCreate(int prim, boolean isStatic, long vtx, long loop, float q) {
Jason Samsf15ed012011-10-31 13:23:43 -0700825 validate();
826 return rsnPathCreate(mContext, prim, isStatic, vtx, loop, q);
827 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700828
Tim Murrayeff663f2013-11-15 13:08:30 -0800829 long mDev;
830 long mContext;
Romain Guy650a3eb2009-08-31 14:06:43 -0700831 @SuppressWarnings({"FieldCanBeLocal"})
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800832 MessageThread mMessageThread;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700833
Jason Sams8cb39de2010-06-01 15:47:01 -0700834 Element mElement_U8;
835 Element mElement_I8;
836 Element mElement_U16;
837 Element mElement_I16;
838 Element mElement_U32;
839 Element mElement_I32;
Stephen Hines52d83632010-10-11 16:10:42 -0700840 Element mElement_U64;
Stephen Hinesef1dac22010-10-01 15:39:33 -0700841 Element mElement_I64;
Jason Sams8cb39de2010-06-01 15:47:01 -0700842 Element mElement_F32;
Stephen Hines02f417052010-09-30 15:19:22 -0700843 Element mElement_F64;
Jason Samsf110d4b2010-06-21 17:42:41 -0700844 Element mElement_BOOLEAN;
Jason Sams3c0dfba2009-09-27 17:50:38 -0700845
Jason Sams8cb39de2010-06-01 15:47:01 -0700846 Element mElement_ELEMENT;
847 Element mElement_TYPE;
848 Element mElement_ALLOCATION;
849 Element mElement_SAMPLER;
850 Element mElement_SCRIPT;
851 Element mElement_MESH;
852 Element mElement_PROGRAM_FRAGMENT;
853 Element mElement_PROGRAM_VERTEX;
854 Element mElement_PROGRAM_RASTER;
855 Element mElement_PROGRAM_STORE;
Stephen Hines3a291412012-04-11 17:27:29 -0700856 Element mElement_FONT;
Jason Samsa70f4162010-03-26 15:33:42 -0700857
Jason Sams3c0dfba2009-09-27 17:50:38 -0700858 Element mElement_A_8;
859 Element mElement_RGB_565;
860 Element mElement_RGB_888;
861 Element mElement_RGBA_5551;
862 Element mElement_RGBA_4444;
863 Element mElement_RGBA_8888;
864
Jason Sams8cb39de2010-06-01 15:47:01 -0700865 Element mElement_FLOAT_2;
866 Element mElement_FLOAT_3;
867 Element mElement_FLOAT_4;
Stephen Hines836c4a52011-06-01 14:38:10 -0700868
869 Element mElement_DOUBLE_2;
870 Element mElement_DOUBLE_3;
871 Element mElement_DOUBLE_4;
872
873 Element mElement_UCHAR_2;
874 Element mElement_UCHAR_3;
Jason Sams8cb39de2010-06-01 15:47:01 -0700875 Element mElement_UCHAR_4;
Jason Sams7d787b42009-11-15 12:14:26 -0800876
Stephen Hines836c4a52011-06-01 14:38:10 -0700877 Element mElement_CHAR_2;
878 Element mElement_CHAR_3;
879 Element mElement_CHAR_4;
880
881 Element mElement_USHORT_2;
882 Element mElement_USHORT_3;
883 Element mElement_USHORT_4;
884
885 Element mElement_SHORT_2;
886 Element mElement_SHORT_3;
887 Element mElement_SHORT_4;
888
889 Element mElement_UINT_2;
890 Element mElement_UINT_3;
891 Element mElement_UINT_4;
892
893 Element mElement_INT_2;
894 Element mElement_INT_3;
895 Element mElement_INT_4;
896
897 Element mElement_ULONG_2;
898 Element mElement_ULONG_3;
899 Element mElement_ULONG_4;
900
901 Element mElement_LONG_2;
902 Element mElement_LONG_3;
903 Element mElement_LONG_4;
904
Tim Murray932e78e2013-09-03 11:42:26 -0700905 Element mElement_YUV;
906
Jason Sams1d45c472010-08-25 14:31:48 -0700907 Element mElement_MATRIX_4X4;
908 Element mElement_MATRIX_3X3;
909 Element mElement_MATRIX_2X2;
910
Jason Sams4d339932010-05-11 14:03:58 -0700911 Sampler mSampler_CLAMP_NEAREST;
912 Sampler mSampler_CLAMP_LINEAR;
913 Sampler mSampler_CLAMP_LINEAR_MIP_LINEAR;
914 Sampler mSampler_WRAP_NEAREST;
915 Sampler mSampler_WRAP_LINEAR;
916 Sampler mSampler_WRAP_LINEAR_MIP_LINEAR;
Tim Murray6b9b2ca2013-02-15 13:25:55 -0800917 Sampler mSampler_MIRRORED_REPEAT_NEAREST;
918 Sampler mSampler_MIRRORED_REPEAT_LINEAR;
919 Sampler mSampler_MIRRORED_REPEAT_LINEAR_MIP_LINEAR;
Jason Sams4d339932010-05-11 14:03:58 -0700920
Alex Sakhartchoukd36f2482010-08-24 11:37:33 -0700921 ProgramStore mProgramStore_BLEND_NONE_DEPTH_TEST;
922 ProgramStore mProgramStore_BLEND_NONE_DEPTH_NO_DEPTH;
Alex Sakhartchoukd36f2482010-08-24 11:37:33 -0700923 ProgramStore mProgramStore_BLEND_ALPHA_DEPTH_TEST;
924 ProgramStore mProgramStore_BLEND_ALPHA_DEPTH_NO_DEPTH;
Alex Sakhartchouk32e09b52010-08-23 10:24:10 -0700925
Alex Sakhartchoukd36f2482010-08-24 11:37:33 -0700926 ProgramRaster mProgramRaster_CULL_BACK;
927 ProgramRaster mProgramRaster_CULL_FRONT;
928 ProgramRaster mProgramRaster_CULL_NONE;
Alex Sakhartchouk32e09b52010-08-23 10:24:10 -0700929
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700930 ///////////////////////////////////////////////////////////////////////////////////
Jack Palevich43702d82009-05-28 13:38:16 -0700931 //
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700932
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700933 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -0700934 * The base class from which an application should derive in order
935 * to receive RS messages from scripts. When a script calls {@code
936 * rsSendToClient}, the data fields will be filled, and the run
937 * method will be called on a separate thread. This will occur
938 * some time after {@code rsSendToClient} completes in the script,
939 * as {@code rsSendToClient} is asynchronous. Message handlers are
940 * not guaranteed to have completed when {@link
941 * android.renderscript.RenderScript#finish} returns.
Jason Sams27676fe2010-11-10 17:00:59 -0800942 *
943 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800944 public static class RSMessageHandler implements Runnable {
Jason Sams516c3192009-10-06 13:58:47 -0700945 protected int[] mData;
946 protected int mID;
Jason Sams1c415172010-11-08 17:06:46 -0800947 protected int mLength;
Jason Sams516c3192009-10-06 13:58:47 -0700948 public void run() {
949 }
950 }
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700951 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -0700952 * If an application is expecting messages, it should set this
953 * field to an instance of {@link RSMessageHandler}. This
954 * instance will receive all the user messages sent from {@code
955 * sendToClient} by scripts from this context.
Jason Sams27676fe2010-11-10 17:00:59 -0800956 *
957 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800958 RSMessageHandler mMessageCallback = null;
959
960 public void setMessageHandler(RSMessageHandler msg) {
961 mMessageCallback = msg;
962 }
963 public RSMessageHandler getMessageHandler() {
964 return mMessageCallback;
965 }
Jason Sams516c3192009-10-06 13:58:47 -0700966
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700967 /**
Jason Sams02d56d92013-04-12 16:40:50 -0700968 * Place a message into the message queue to be sent back to the message
969 * handler once all previous commands have been executed.
Jason Sams455d6442013-02-05 19:20:18 -0800970 *
971 * @param id
972 * @param data
973 */
974 public void sendMessage(int id, int[] data) {
975 nContextSendMessage(id, data);
976 }
977
978 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -0700979 * The runtime error handler base class. An application should derive from this class
980 * if it wishes to install an error handler. When errors occur at runtime,
981 * the fields in this class will be filled, and the run method will be called.
Jason Sams27676fe2010-11-10 17:00:59 -0800982 *
983 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800984 public static class RSErrorHandler implements Runnable {
Jason Sams1c415172010-11-08 17:06:46 -0800985 protected String mErrorMessage;
986 protected int mErrorNum;
987 public void run() {
988 }
989 }
Jason Sams27676fe2010-11-10 17:00:59 -0800990
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700991 /**
Jason Sams27676fe2010-11-10 17:00:59 -0800992 * Application Error handler. All runtime errors will be dispatched to the
993 * instance of RSAsyncError set here. If this field is null a
Tim Murrayc11e25c2013-04-09 11:01:01 -0700994 * {@link RSRuntimeException} will instead be thrown with details about the error.
Jason Sams27676fe2010-11-10 17:00:59 -0800995 * This will cause program termaination.
996 *
997 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800998 RSErrorHandler mErrorCallback = null;
999
1000 public void setErrorHandler(RSErrorHandler msg) {
1001 mErrorCallback = msg;
1002 }
1003 public RSErrorHandler getErrorHandler() {
1004 return mErrorCallback;
1005 }
Jason Sams1c415172010-11-08 17:06:46 -08001006
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001007 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001008 * RenderScript worker thread priority enumeration. The default value is
1009 * NORMAL. Applications wishing to do background processing should set
1010 * their priority to LOW to avoid starving forground processes.
Jason Sams27676fe2010-11-10 17:00:59 -08001011 */
Jason Sams7d787b42009-11-15 12:14:26 -08001012 public enum Priority {
Glenn Kasten260c77a2011-06-01 17:25:54 -07001013 LOW (Process.THREAD_PRIORITY_BACKGROUND + (5 * Process.THREAD_PRIORITY_LESS_FAVORABLE)),
1014 NORMAL (Process.THREAD_PRIORITY_DISPLAY);
Jason Sams7d787b42009-11-15 12:14:26 -08001015
1016 int mID;
1017 Priority(int id) {
1018 mID = id;
1019 }
1020 }
1021
Jason Sams678cc7f2014-03-05 16:09:02 -08001022 void validateObject(BaseObj o) {
1023 if (o != null) {
1024 if (o.mRS != this) {
1025 throw new RSIllegalArgumentException("Attempting to use an object across contexts.");
1026 }
1027 }
1028 }
1029
Jason Sams771bebb2009-12-07 12:40:12 -08001030 void validate() {
1031 if (mContext == 0) {
Jason Samsc1d62102010-11-04 14:32:19 -07001032 throw new RSInvalidStateException("Calling RS with no Context active.");
Jason Sams771bebb2009-12-07 12:40:12 -08001033 }
1034 }
1035
Jason Sams27676fe2010-11-10 17:00:59 -08001036
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001037 /**
Jason Sams27676fe2010-11-10 17:00:59 -08001038 * Change the priority of the worker threads for this context.
1039 *
1040 * @param p New priority to be set.
1041 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001042 public void setPriority(Priority p) {
Jason Sams5dbfe932010-01-27 14:41:43 -08001043 validate();
Jason Sams7d787b42009-11-15 12:14:26 -08001044 nContextSetPriority(p.mID);
1045 }
1046
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001047 static class MessageThread extends Thread {
Jason Sams516c3192009-10-06 13:58:47 -07001048 RenderScript mRS;
1049 boolean mRun = true;
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001050 int[] mAuxData = new int[2];
Jason Sams1c415172010-11-08 17:06:46 -08001051
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001052 static final int RS_MESSAGE_TO_CLIENT_NONE = 0;
1053 static final int RS_MESSAGE_TO_CLIENT_EXCEPTION = 1;
1054 static final int RS_MESSAGE_TO_CLIENT_RESIZE = 2;
1055 static final int RS_MESSAGE_TO_CLIENT_ERROR = 3;
1056 static final int RS_MESSAGE_TO_CLIENT_USER = 4;
Jason Sams739c8262013-04-11 18:07:52 -07001057 static final int RS_MESSAGE_TO_CLIENT_NEW_BUFFER = 5;
Jason Sams516c3192009-10-06 13:58:47 -07001058
Stephen Hines42028a82013-04-17 19:22:01 -07001059 static final int RS_ERROR_FATAL_DEBUG = 0x0800;
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001060 static final int RS_ERROR_FATAL_UNKNOWN = 0x1000;
Jason Samsadd9d962010-11-22 16:20:16 -08001061
Jason Sams516c3192009-10-06 13:58:47 -07001062 MessageThread(RenderScript rs) {
1063 super("RSMessageThread");
1064 mRS = rs;
1065
1066 }
1067
1068 public void run() {
1069 // This function is a temporary solution. The final solution will
1070 // used typed allocations where the message id is the type indicator.
1071 int[] rbuf = new int[16];
Jason Sams2e1872f2010-08-17 16:25:41 -07001072 mRS.nContextInitToClient(mRS.mContext);
Jason Sams516c3192009-10-06 13:58:47 -07001073 while(mRun) {
Jason Sams1d45c472010-08-25 14:31:48 -07001074 rbuf[0] = 0;
Jason Samsedbfabd2011-05-17 15:01:29 -07001075 int msg = mRS.nContextPeekMessage(mRS.mContext, mAuxData);
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001076 int size = mAuxData[1];
1077 int subID = mAuxData[0];
Jason Sams1c415172010-11-08 17:06:46 -08001078
1079 if (msg == RS_MESSAGE_TO_CLIENT_USER) {
1080 if ((size>>2) >= rbuf.length) {
1081 rbuf = new int[(size + 3) >> 2];
1082 }
Jason Samsedbfabd2011-05-17 15:01:29 -07001083 if (mRS.nContextGetUserMessage(mRS.mContext, rbuf) !=
1084 RS_MESSAGE_TO_CLIENT_USER) {
Tim Murrayc11e25c2013-04-09 11:01:01 -07001085 throw new RSDriverException("Error processing message from RenderScript.");
Jason Samsedbfabd2011-05-17 15:01:29 -07001086 }
Jason Sams1c415172010-11-08 17:06:46 -08001087
1088 if(mRS.mMessageCallback != null) {
1089 mRS.mMessageCallback.mData = rbuf;
1090 mRS.mMessageCallback.mID = subID;
1091 mRS.mMessageCallback.mLength = size;
1092 mRS.mMessageCallback.run();
Jason Sams1d45c472010-08-25 14:31:48 -07001093 } else {
Jason Sams1c415172010-11-08 17:06:46 -08001094 throw new RSInvalidStateException("Received a message from the script with no message handler installed.");
Jason Sams516c3192009-10-06 13:58:47 -07001095 }
Stephen Hinesab98bb62010-09-24 14:38:30 -07001096 continue;
Jason Sams516c3192009-10-06 13:58:47 -07001097 }
Jason Sams1c415172010-11-08 17:06:46 -08001098
1099 if (msg == RS_MESSAGE_TO_CLIENT_ERROR) {
1100 String e = mRS.nContextGetErrorMessage(mRS.mContext);
1101
Stephen Hines42028a82013-04-17 19:22:01 -07001102 // Throw RSRuntimeException under the following conditions:
1103 //
1104 // 1) It is an unknown fatal error.
1105 // 2) It is a debug fatal error, and we are not in a
1106 // debug context.
1107 // 3) It is a debug fatal error, and we do not have an
1108 // error callback.
1109 if (subID >= RS_ERROR_FATAL_UNKNOWN ||
1110 (subID >= RS_ERROR_FATAL_DEBUG &&
1111 (mRS.mContextType != ContextType.DEBUG ||
1112 mRS.mErrorCallback == null))) {
Jason Samsadd9d962010-11-22 16:20:16 -08001113 throw new RSRuntimeException("Fatal error " + subID + ", details: " + e);
1114 }
1115
Jason Sams1c415172010-11-08 17:06:46 -08001116 if(mRS.mErrorCallback != null) {
1117 mRS.mErrorCallback.mErrorMessage = e;
1118 mRS.mErrorCallback.mErrorNum = subID;
1119 mRS.mErrorCallback.run();
1120 } else {
Jason Samsa4b7bc92013-02-05 15:05:39 -08001121 android.util.Log.e(LOG_TAG, "non fatal RS error, " + e);
Stephen Hinesbe74bdd2012-02-03 15:29:36 -08001122 // Do not throw here. In these cases, we do not have
1123 // a fatal error.
Jason Sams1c415172010-11-08 17:06:46 -08001124 }
1125 continue;
1126 }
1127
Jason Sams739c8262013-04-11 18:07:52 -07001128 if (msg == RS_MESSAGE_TO_CLIENT_NEW_BUFFER) {
1129 Allocation.sendBufferNotification(subID);
1130 continue;
1131 }
1132
Jason Sams1c415172010-11-08 17:06:46 -08001133 // 2: teardown.
1134 // But we want to avoid starving other threads during
1135 // teardown by yielding until the next line in the destructor
1136 // can execute to set mRun = false
1137 try {
1138 sleep(1, 0);
1139 } catch(InterruptedException e) {
Jason Sams516c3192009-10-06 13:58:47 -07001140 }
Jason Sams516c3192009-10-06 13:58:47 -07001141 }
Tim Murrayda67deb2013-05-09 12:02:50 -07001142 //Log.d(LOG_TAG, "MessageThread exiting.");
Jason Sams516c3192009-10-06 13:58:47 -07001143 }
1144 }
1145
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001146 RenderScript(Context ctx) {
Stephen Hines42028a82013-04-17 19:22:01 -07001147 mContextType = ContextType.NORMAL;
Jason Sams1a4e1f32012-02-24 17:51:24 -08001148 if (ctx != null) {
1149 mApplicationContext = ctx.getApplicationContext();
1150 }
Tim Murray06b45672014-01-07 11:13:56 -08001151 mRWLock = new ReentrantReadWriteLock();
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001152 }
1153
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001154 /**
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001155 * Gets the application context associated with the RenderScript context.
1156 *
1157 * @return The application context.
1158 */
1159 public final Context getApplicationContext() {
1160 return mApplicationContext;
Jack Palevich60aa3ea2009-05-26 13:45:08 -07001161 }
1162
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001163 /**
Jason Samsadd26dc2013-02-22 18:43:45 -08001164 * @hide
1165 */
1166 public static RenderScript create(Context ctx, int sdkVersion) {
Jason Sams26e90512014-05-07 14:23:27 -07001167 return create(ctx, sdkVersion, ContextType.NORMAL, CREATE_FLAG_NONE);
Jason Samsadd26dc2013-02-22 18:43:45 -08001168 }
1169
1170 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001171 * Create a RenderScript context.
Jason Sams27676fe2010-11-10 17:00:59 -08001172 *
Jason Sams1a4e1f32012-02-24 17:51:24 -08001173 * @hide
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001174 * @param ctx The context.
Jason Sams27676fe2010-11-10 17:00:59 -08001175 * @return RenderScript
1176 */
Jason Sams26e90512014-05-07 14:23:27 -07001177 public static RenderScript create(Context ctx, int sdkVersion, ContextType ct, long flags) {
Dan Morrille4d9a012013-03-28 18:10:43 -07001178 if (!sInitialized) {
1179 Log.e(LOG_TAG, "RenderScript.create() called when disabled; someone is likely to crash");
1180 return null;
1181 }
1182
Jason Samsb69c7912014-05-20 18:48:35 -07001183 if ((flags & ~(CREATE_FLAG_LOW_LATENCY | CREATE_FLAG_LOW_POWER)) != 0) {
1184 throw new RSIllegalArgumentException("Invalid flags passed.");
1185 }
1186
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001187 RenderScript rs = new RenderScript(ctx);
Jason Sams704ff642010-02-09 16:05:07 -08001188
1189 rs.mDev = rs.nDeviceCreate();
Jason Samsb69c7912014-05-20 18:48:35 -07001190 rs.mContext = rs.nContextCreate(rs.mDev, (int)flags, sdkVersion, ct.mID);
Stephen Hines42028a82013-04-17 19:22:01 -07001191 rs.mContextType = ct;
Jason Sams26985362011-05-03 15:01:58 -07001192 if (rs.mContext == 0) {
1193 throw new RSDriverException("Failed to create RS context.");
1194 }
Jason Sams704ff642010-02-09 16:05:07 -08001195 rs.mMessageThread = new MessageThread(rs);
1196 rs.mMessageThread.start();
Jason Sams704ff642010-02-09 16:05:07 -08001197 return rs;
Jason Samsefd9b6fb2009-11-03 13:58:36 -08001198 }
1199
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001200 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001201 * Create a RenderScript context.
Jason Sams1a4e1f32012-02-24 17:51:24 -08001202 *
1203 * @param ctx The context.
1204 * @return RenderScript
1205 */
1206 public static RenderScript create(Context ctx) {
Jason Samsadd26dc2013-02-22 18:43:45 -08001207 return create(ctx, ContextType.NORMAL);
1208 }
1209
1210 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001211 * Create a RenderScript context.
Jason Samsadd26dc2013-02-22 18:43:45 -08001212 *
Jason Samsadd26dc2013-02-22 18:43:45 -08001213 *
1214 * @param ctx The context.
Jason Sams02d56d92013-04-12 16:40:50 -07001215 * @param ct The type of context to be created.
Jason Samsadd26dc2013-02-22 18:43:45 -08001216 * @return RenderScript
1217 */
1218 public static RenderScript create(Context ctx, ContextType ct) {
Jason Sams1a4e1f32012-02-24 17:51:24 -08001219 int v = ctx.getApplicationInfo().targetSdkVersion;
Jason Sams26e90512014-05-07 14:23:27 -07001220 return create(ctx, v, ct, CREATE_FLAG_NONE);
1221 }
1222
1223 /**
1224 * Create a RenderScript context.
1225 *
1226 *
1227 * @param ctx The context.
1228 * @param ct The type of context to be created.
1229 * @param flags The OR of the CREATE_FLAG_* options desired
1230 * @return RenderScript
1231 */
1232 public static RenderScript create(Context ctx, ContextType ct, long flags) {
1233 int v = ctx.getApplicationInfo().targetSdkVersion;
1234 return create(ctx, v, ct, flags);
Jason Sams1a4e1f32012-02-24 17:51:24 -08001235 }
1236
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001237 /**
Jason Sams27676fe2010-11-10 17:00:59 -08001238 * Print the currently available debugging information about the state of
1239 * the RS context to the log.
1240 *
Jason Sams27676fe2010-11-10 17:00:59 -08001241 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001242 public void contextDump() {
Jason Sams5dbfe932010-01-27 14:41:43 -08001243 validate();
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001244 nContextDump(0);
Jason Sams715333b2009-11-17 17:26:46 -08001245 }
1246
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001247 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001248 * Wait for any pending asynchronous opeations (such as copies to a RS
1249 * allocation or RS script executions) to complete.
Jason Sams27676fe2010-11-10 17:00:59 -08001250 *
1251 */
Jason Sams96ed4cf2010-06-15 12:15:57 -07001252 public void finish() {
1253 nContextFinish();
1254 }
1255
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001256 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001257 * Destroys this RenderScript context. Once this function is called,
1258 * using this context or any objects belonging to this context is
1259 * illegal.
Jason Sams27676fe2010-11-10 17:00:59 -08001260 *
1261 */
Jason Samsf5b45962009-08-25 14:49:07 -07001262 public void destroy() {
Jason Sams5dbfe932010-01-27 14:41:43 -08001263 validate();
Tim Murray06b45672014-01-07 11:13:56 -08001264 nContextFinish();
1265
Jason Sams2e1872f2010-08-17 16:25:41 -07001266 nContextDeinitToClient(mContext);
Jason Sams516c3192009-10-06 13:58:47 -07001267 mMessageThread.mRun = false;
Jason Samsa8bf9422010-09-16 13:43:19 -07001268 try {
1269 mMessageThread.join();
1270 } catch(InterruptedException e) {
1271 }
Jason Sams516c3192009-10-06 13:58:47 -07001272
Jason Sams2e1872f2010-08-17 16:25:41 -07001273 nContextDestroy();
Jason Samsf5b45962009-08-25 14:49:07 -07001274
1275 nDeviceDestroy(mDev);
1276 mDev = 0;
1277 }
Jason Sams02fb2cb2009-05-28 15:37:57 -07001278
Jason Samsa9e7a052009-09-25 14:51:22 -07001279 boolean isAlive() {
1280 return mContext != 0;
1281 }
1282
Tim Murray460a0492013-11-19 12:45:54 -08001283 long safeID(BaseObj o) {
Jason Sams6b9dec02009-09-23 16:38:37 -07001284 if(o != null) {
Jason Samse07694b2012-04-03 15:36:36 -07001285 return o.getID(this);
Jason Samsd8e41612009-08-20 17:22:40 -07001286 }
Jason Sams6b9dec02009-09-23 16:38:37 -07001287 return 0;
Jack Palevich60aa3ea2009-05-26 13:45:08 -07001288 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -07001289}