blob: f2b1380d5ac4bd60a272e15618ccb7bb1103a9f5 [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;
Jason Samsfe1d5ff2012-03-23 11:47:26 -070020import java.lang.reflect.Field;
Tim Murray2f2472c2013-08-22 14:55:26 -070021import java.lang.reflect.Method;
Tim Murray504abb32014-01-07 11:13:56 -080022import java.util.concurrent.locks.ReentrantReadWriteLock;
Jason Sams36e612a2009-07-31 16:26:13 -070023
Shih-wei Liao6b32fab2010-12-10 01:03:59 -080024import android.content.Context;
Stephen Hines4382467a2011-08-01 15:02:34 -070025import android.content.pm.ApplicationInfo;
26import android.content.pm.PackageManager;
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -080027import android.content.res.AssetManager;
Jason Samsb8c5a842009-07-31 20:40:47 -070028import android.graphics.Bitmap;
Romain Guy650a3eb2009-08-31 14:06:43 -070029import android.graphics.BitmapFactory;
Jason Samsfaa32b32011-06-20 16:58:04 -070030import android.graphics.SurfaceTexture;
Glenn Kasten260c77a2011-06-01 17:25:54 -070031import android.os.Process;
Jason Sams36e612a2009-07-31 16:26:13 -070032import android.util.Log;
33import android.view.Surface;
Dan Morrille4d9a012013-03-28 18:10:43 -070034import android.os.SystemProperties;
Tim Murray6d7a53c2013-05-23 16:59:23 -070035import android.os.Trace;
Stephen Hines4382467a2011-08-01 15:02:34 -070036
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -070037/**
Tim Murrayc11e25c2013-04-09 11:01:01 -070038 * This class provides access to a RenderScript context, which controls RenderScript
39 * initialization, resource management, and teardown. An instance of the RenderScript
40 * class must be created before any other RS objects can be created.
Jason Sams27676fe2010-11-10 17:00:59 -080041 *
Joe Fernandez3aef8e1d2011-12-20 10:38:34 -080042 * <div class="special reference">
43 * <h3>Developer Guides</h3>
Tim Murrayc11e25c2013-04-09 11:01:01 -070044 * <p>For more information about creating an application that uses RenderScript, read the
45 * <a href="{@docRoot}guide/topics/renderscript/index.html">RenderScript</a> developer guide.</p>
Joe Fernandez3aef8e1d2011-12-20 10:38:34 -080046 * </div>
Jason Samse29d4712009-07-23 15:19:03 -070047 **/
Jack Palevich60aa3ea2009-05-26 13:45:08 -070048public class RenderScript {
Tim Murray6d7a53c2013-05-23 16:59:23 -070049 static final long TRACE_TAG = Trace.TRACE_TAG_RS;
50
Jason Sams3bc47d42009-11-12 15:10:25 -080051 static final String LOG_TAG = "RenderScript_jni";
Jason Samsbf6ef8d2010-12-06 15:59:59 -080052 static final boolean DEBUG = false;
Romain Guy650a3eb2009-08-31 14:06:43 -070053 @SuppressWarnings({"UnusedDeclaration", "deprecation"})
Joe Onorato43a17652011-04-06 19:22:23 -070054 static final boolean LOG_ENABLED = false;
Jack Palevich60aa3ea2009-05-26 13:45:08 -070055
Shih-wei Liao6b32fab2010-12-10 01:03:59 -080056 private Context mApplicationContext;
Jack Palevich60aa3ea2009-05-26 13:45:08 -070057
Shih-wei Liao6b32fab2010-12-10 01:03:59 -080058 /*
Jack Palevich60aa3ea2009-05-26 13:45:08 -070059 * We use a class initializer to allow the native code to cache some
60 * field offsets.
61 */
Dan Morrille4d9a012013-03-28 18:10:43 -070062 @SuppressWarnings({"FieldCanBeLocal", "UnusedDeclaration"}) // TODO: now used locally; remove?
Jason Samsbf6ef8d2010-12-06 15:59:59 -080063 static boolean sInitialized;
64 native static void _nInit();
Jack Palevich60aa3ea2009-05-26 13:45:08 -070065
Tim Murray2f2472c2013-08-22 14:55:26 -070066 static Object sRuntime;
67 static Method registerNativeAllocation;
68 static Method registerNativeFree;
Jason Samsdba3ba52009-07-30 14:56:12 -070069
Tim Murrayf0c62b22014-05-16 11:47:26 -070070 /*
71 * Detect the bitness of the VM to allow FieldPacker to do the right thing.
72 */
73 static native int rsnSystemGetPointerSize();
74 static int sPointerSize;
75
Jack Palevich60aa3ea2009-05-26 13:45:08 -070076 static {
77 sInitialized = false;
Dan Morrille4d9a012013-03-28 18:10:43 -070078 if (!SystemProperties.getBoolean("config.disable_renderscript", false)) {
79 try {
Tim Murray2f2472c2013-08-22 14:55:26 -070080 Class<?> vm_runtime = Class.forName("dalvik.system.VMRuntime");
81 Method get_runtime = vm_runtime.getDeclaredMethod("getRuntime");
82 sRuntime = get_runtime.invoke(null);
83 registerNativeAllocation = vm_runtime.getDeclaredMethod("registerNativeAllocation", Integer.TYPE);
84 registerNativeFree = vm_runtime.getDeclaredMethod("registerNativeFree", Integer.TYPE);
85 } catch (Exception e) {
86 Log.e(LOG_TAG, "Error loading GC methods: " + e);
87 throw new RSRuntimeException("Error loading GC methods: " + e);
88 }
89 try {
Dan Morrille4d9a012013-03-28 18:10:43 -070090 System.loadLibrary("rs_jni");
91 _nInit();
92 sInitialized = true;
Tim Murrayf0c62b22014-05-16 11:47:26 -070093 sPointerSize = rsnSystemGetPointerSize();
Dan Morrille4d9a012013-03-28 18:10:43 -070094 } catch (UnsatisfiedLinkError e) {
95 Log.e(LOG_TAG, "Error loading RS jni library: " + e);
96 throw new RSRuntimeException("Error loading RS jni library: " + e);
97 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -070098 }
99 }
100
Jason Sams2e1872f2010-08-17 16:25:41 -0700101 // Non-threadsafe functions.
Tim Murraya78e9ad2013-11-15 13:08:30 -0800102 native long nDeviceCreate();
103 native void nDeviceDestroy(long dev);
104 native void nDeviceSetConfig(long dev, int param, int value);
105 native int nContextGetUserMessage(long con, int[] data);
106 native String nContextGetErrorMessage(long con);
107 native int nContextPeekMessage(long con, int[] subID);
108 native void nContextInitToClient(long con);
109 native void nContextDeinitToClient(long con);
Jason Sams3eaa3382009-06-10 15:04:38 -0700110
Stephen Hines7d25a822013-04-09 23:51:56 -0700111 static File mCacheDir;
Jason Samsa6f338c2012-02-24 16:22:16 -0800112
Tim Murray67cc2d02014-02-06 16:39:38 -0800113 // this should be a monotonically increasing ID
114 // used in conjunction with the API version of a device
115 static final long sMinorID = 1;
116
117 /**
118 * Returns an identifier that can be used to identify a particular
119 * minor version of RS.
120 *
121 * @hide
122 */
123 public static long getMinorID() {
124 return sMinorID;
125 }
126
Jason Samsa6f338c2012-02-24 16:22:16 -0800127 /**
128 * Sets the directory to use as a persistent storage for the
129 * renderscript object file cache.
130 *
131 * @hide
132 * @param cacheDir A directory the current process can write to
133 */
Jason Samsa6f338c2012-02-24 16:22:16 -0800134 public static void setupDiskCache(File cacheDir) {
Dan Morrille4d9a012013-03-28 18:10:43 -0700135 if (!sInitialized) {
136 Log.e(LOG_TAG, "RenderScript.setupDiskCache() called when disabled");
137 return;
138 }
139
Stephen Hines7d25a822013-04-09 23:51:56 -0700140 // Defer creation of cache path to nScriptCCreate().
141 mCacheDir = cacheDir;
Jason Samsa6f338c2012-02-24 16:22:16 -0800142 }
143
Jason Sams02d56d92013-04-12 16:40:50 -0700144 /**
145 * ContextType specifies the specific type of context to be created.
146 *
147 */
Jason Samsadd26dc2013-02-22 18:43:45 -0800148 public enum ContextType {
Jason Sams02d56d92013-04-12 16:40:50 -0700149 /**
150 * NORMAL context, this is the default and what shipping apps should
151 * use.
152 */
Jason Samsadd26dc2013-02-22 18:43:45 -0800153 NORMAL (0),
Jason Sams02d56d92013-04-12 16:40:50 -0700154
155 /**
156 * DEBUG context, perform extra runtime checks to validate the
157 * kernels and APIs are being used as intended. Get and SetElementAt
158 * will be bounds checked in this mode.
159 */
Jason Samsadd26dc2013-02-22 18:43:45 -0800160 DEBUG (1),
Jason Sams02d56d92013-04-12 16:40:50 -0700161
162 /**
163 * PROFILE context, Intended to be used once the first time an
164 * application is run on a new device. This mode allows the runtime to
165 * do additional testing and performance tuning.
166 */
Jason Samsadd26dc2013-02-22 18:43:45 -0800167 PROFILE (2);
168
169 int mID;
170 ContextType(int id) {
171 mID = id;
172 }
173 }
Jason Sams718cd1f2009-12-23 14:35:29 -0800174
Stephen Hines42028a82013-04-17 19:22:01 -0700175 ContextType mContextType;
Tim Murray504abb32014-01-07 11:13:56 -0800176 ReentrantReadWriteLock mRWLock;
Stephen Hines42028a82013-04-17 19:22:01 -0700177
Jason Sams2e1872f2010-08-17 16:25:41 -0700178 // Methods below are wrapped to protect the non-threadsafe
179 // lockless fifo.
Tim Murraya78e9ad2013-11-15 13:08:30 -0800180 native long rsnContextCreateGL(long dev, int ver, int sdkVer,
Jason Sams11c8af92010-10-13 15:31:10 -0700181 int colorMin, int colorPref,
182 int alphaMin, int alphaPref,
183 int depthMin, int depthPref,
184 int stencilMin, int stencilPref,
Alex Sakhartchouk2c74ad92011-03-16 19:28:25 -0700185 int samplesMin, int samplesPref, float samplesQ, int dpi);
Tim Murraya78e9ad2013-11-15 13:08:30 -0800186 synchronized long nContextCreateGL(long dev, int ver, int sdkVer,
Jason Sams11c8af92010-10-13 15:31:10 -0700187 int colorMin, int colorPref,
188 int alphaMin, int alphaPref,
189 int depthMin, int depthPref,
190 int stencilMin, int stencilPref,
Alex Sakhartchouk2c74ad92011-03-16 19:28:25 -0700191 int samplesMin, int samplesPref, float samplesQ, int dpi) {
Stephen Hines4382467a2011-08-01 15:02:34 -0700192 return rsnContextCreateGL(dev, ver, sdkVer, colorMin, colorPref,
Jason Sams11c8af92010-10-13 15:31:10 -0700193 alphaMin, alphaPref, depthMin, depthPref,
194 stencilMin, stencilPref,
Alex Sakhartchouk2c74ad92011-03-16 19:28:25 -0700195 samplesMin, samplesPref, samplesQ, dpi);
Jason Sams2e1872f2010-08-17 16:25:41 -0700196 }
Tim Murraya78e9ad2013-11-15 13:08:30 -0800197 native long rsnContextCreate(long dev, int ver, int sdkVer, int contextType);
198 synchronized long nContextCreate(long dev, int ver, int sdkVer, int contextType) {
Jason Samsadd26dc2013-02-22 18:43:45 -0800199 return rsnContextCreate(dev, ver, sdkVer, contextType);
Jason Sams2e1872f2010-08-17 16:25:41 -0700200 }
Tim Murraya78e9ad2013-11-15 13:08:30 -0800201 native void rsnContextDestroy(long con);
Jason Sams2e1872f2010-08-17 16:25:41 -0700202 synchronized void nContextDestroy() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800203 validate();
Tim Murray504abb32014-01-07 11:13:56 -0800204
205 // take teardown lock
206 // teardown lock can only be taken when no objects are being destroyed
207 ReentrantReadWriteLock.WriteLock wlock = mRWLock.writeLock();
208 wlock.lock();
209
210 long curCon = mContext;
211 // context is considered dead as of this point
212 mContext = 0;
213
214 wlock.unlock();
215 rsnContextDestroy(curCon);
Jason Sams2e1872f2010-08-17 16:25:41 -0700216 }
Tim Murraya78e9ad2013-11-15 13:08:30 -0800217 native void rsnContextSetSurface(long con, int w, int h, Surface sur);
Jason Sams2e1872f2010-08-17 16:25:41 -0700218 synchronized void nContextSetSurface(int w, int h, Surface sur) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800219 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700220 rsnContextSetSurface(mContext, w, h, sur);
221 }
Tim Murraya78e9ad2013-11-15 13:08:30 -0800222 native void rsnContextSetSurfaceTexture(long con, int w, int h, SurfaceTexture sur);
Jason Samsfaa32b32011-06-20 16:58:04 -0700223 synchronized void nContextSetSurfaceTexture(int w, int h, SurfaceTexture sur) {
224 validate();
225 rsnContextSetSurfaceTexture(mContext, w, h, sur);
226 }
Tim Murraya78e9ad2013-11-15 13:08:30 -0800227 native void rsnContextSetPriority(long con, int p);
Jason Sams2e1872f2010-08-17 16:25:41 -0700228 synchronized void nContextSetPriority(int p) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800229 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700230 rsnContextSetPriority(mContext, p);
231 }
Tim Murraya78e9ad2013-11-15 13:08:30 -0800232 native void rsnContextDump(long con, int bits);
Jason Sams2e1872f2010-08-17 16:25:41 -0700233 synchronized void nContextDump(int bits) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800234 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700235 rsnContextDump(mContext, bits);
236 }
Tim Murraya78e9ad2013-11-15 13:08:30 -0800237 native void rsnContextFinish(long con);
Jason Sams2e1872f2010-08-17 16:25:41 -0700238 synchronized void nContextFinish() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800239 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700240 rsnContextFinish(mContext);
241 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700242
Tim Murraya78e9ad2013-11-15 13:08:30 -0800243 native void rsnContextSendMessage(long con, int id, int[] data);
Jason Sams455d6442013-02-05 19:20:18 -0800244 synchronized void nContextSendMessage(int id, int[] data) {
245 validate();
246 rsnContextSendMessage(mContext, id, data);
247 }
248
Narayan Kamath78c0ce52014-03-19 10:15:51 +0000249 native void rsnContextBindRootScript(long con, long script);
250 synchronized void nContextBindRootScript(long script) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800251 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700252 rsnContextBindRootScript(mContext, script);
253 }
Tim Murraya78e9ad2013-11-15 13:08:30 -0800254 native void rsnContextBindSampler(long con, int sampler, int slot);
Jason Sams2e1872f2010-08-17 16:25:41 -0700255 synchronized void nContextBindSampler(int sampler, int slot) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800256 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700257 rsnContextBindSampler(mContext, sampler, slot);
258 }
Narayan Kamath78c0ce52014-03-19 10:15:51 +0000259 native void rsnContextBindProgramStore(long con, long pfs);
260 synchronized void nContextBindProgramStore(long pfs) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800261 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700262 rsnContextBindProgramStore(mContext, pfs);
263 }
Narayan Kamath78c0ce52014-03-19 10:15:51 +0000264 native void rsnContextBindProgramFragment(long con, long pf);
265 synchronized void nContextBindProgramFragment(long pf) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800266 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700267 rsnContextBindProgramFragment(mContext, pf);
268 }
Narayan Kamath78c0ce52014-03-19 10:15:51 +0000269 native void rsnContextBindProgramVertex(long con, long pv);
270 synchronized void nContextBindProgramVertex(long pv) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800271 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700272 rsnContextBindProgramVertex(mContext, pv);
273 }
Narayan Kamath78c0ce52014-03-19 10:15:51 +0000274 native void rsnContextBindProgramRaster(long con, long pr);
275 synchronized void nContextBindProgramRaster(long pr) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800276 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700277 rsnContextBindProgramRaster(mContext, pr);
278 }
Tim Murraya78e9ad2013-11-15 13:08:30 -0800279 native void rsnContextPause(long con);
Jason Sams2e1872f2010-08-17 16:25:41 -0700280 synchronized void nContextPause() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800281 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700282 rsnContextPause(mContext);
283 }
Tim Murraya78e9ad2013-11-15 13:08:30 -0800284 native void rsnContextResume(long con);
Jason Sams2e1872f2010-08-17 16:25:41 -0700285 synchronized void nContextResume() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800286 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700287 rsnContextResume(mContext);
288 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700289
Tim Murray7a629fa2013-11-19 12:45:54 -0800290 native void rsnAssignName(long con, long obj, byte[] name);
291 synchronized void nAssignName(long obj, byte[] name) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800292 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700293 rsnAssignName(mContext, obj, name);
294 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800295 native String rsnGetName(long con, long obj);
296 synchronized String nGetName(long obj) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800297 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700298 return rsnGetName(mContext, obj);
299 }
Tim Murray504abb32014-01-07 11:13:56 -0800300
301 // nObjDestroy is explicitly _not_ synchronous to prevent crashes in finalizers
Tim Murray7a629fa2013-11-19 12:45:54 -0800302 native void rsnObjDestroy(long con, long id);
Tim Murray504abb32014-01-07 11:13:56 -0800303 void nObjDestroy(long id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800304 // There is a race condition here. The calling code may be run
305 // by the gc while teardown is occuring. This protects againts
306 // deleting dead objects.
307 if (mContext != 0) {
308 rsnObjDestroy(mContext, id);
309 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700310 }
Jason Samsfe08d992009-05-27 14:45:32 -0700311
Tim Murray7a629fa2013-11-19 12:45:54 -0800312 native long rsnElementCreate(long con, long type, int kind, boolean norm, int vecSize);
313 synchronized long nElementCreate(long type, int kind, boolean norm, int vecSize) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800314 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700315 return rsnElementCreate(mContext, type, kind, norm, vecSize);
316 }
Ashok Bhat98071552014-02-12 09:54:43 +0000317 native long rsnElementCreate2(long con, long[] elements, String[] names, int[] arraySizes);
318 synchronized long nElementCreate2(long[] elements, String[] names, int[] arraySizes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800319 validate();
Jason Sams70d4e502010-09-02 17:35:23 -0700320 return rsnElementCreate2(mContext, elements, names, arraySizes);
Jason Sams2e1872f2010-08-17 16:25:41 -0700321 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800322 native void rsnElementGetNativeData(long con, long id, int[] elementData);
323 synchronized void nElementGetNativeData(long id, int[] elementData) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800324 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700325 rsnElementGetNativeData(mContext, id, elementData);
326 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800327 native void rsnElementGetSubElements(long con, long id,
Ashok Bhat98071552014-02-12 09:54:43 +0000328 long[] IDs, String[] names, int[] arraySizes);
329 synchronized void nElementGetSubElements(long id, long[] IDs, String[] names, int[] arraySizes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800330 validate();
Alex Sakhartchouk7d5f5e72011-10-18 11:08:31 -0700331 rsnElementGetSubElements(mContext, id, IDs, names, arraySizes);
Jason Sams2e1872f2010-08-17 16:25:41 -0700332 }
Jason Sams768bc022009-09-21 19:41:04 -0700333
Tim Murray7a629fa2013-11-19 12:45:54 -0800334 native long rsnTypeCreate(long con, long eid, int x, int y, int z, boolean mips, boolean faces, int yuv);
335 synchronized long nTypeCreate(long eid, int x, int y, int z, boolean mips, boolean faces, int yuv) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800336 validate();
Jason Samsb109cc72013-01-07 18:20:12 -0800337 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv);
Jason Sams2e1872f2010-08-17 16:25:41 -0700338 }
Ashok Bhat98071552014-02-12 09:54:43 +0000339 native void rsnTypeGetNativeData(long con, long id, long[] typeData);
340 synchronized void nTypeGetNativeData(long id, long[] typeData) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800341 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700342 rsnTypeGetNativeData(mContext, id, typeData);
343 }
Jason Sams768bc022009-09-21 19:41:04 -0700344
Ashok Bhat98071552014-02-12 09:54:43 +0000345 native long rsnAllocationCreateTyped(long con, long type, int mip, int usage, long pointer);
346 synchronized long nAllocationCreateTyped(long type, int mip, int usage, long pointer) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800347 validate();
Jason Sams857d0c72011-11-23 15:02:15 -0800348 return rsnAllocationCreateTyped(mContext, type, mip, usage, pointer);
Jason Sams2e1872f2010-08-17 16:25:41 -0700349 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800350 native long rsnAllocationCreateFromBitmap(long con, long type, int mip, Bitmap bmp, int usage);
351 synchronized long nAllocationCreateFromBitmap(long type, int mip, Bitmap bmp, int usage) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800352 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800353 return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage);
Alex Sakhartchouk26ae3902010-10-11 12:35:15 -0700354 }
Tim Murraya3145512012-12-04 17:59:29 -0800355
Tim Murray7a629fa2013-11-19 12:45:54 -0800356 native long rsnAllocationCreateBitmapBackedAllocation(long con, long type, int mip, Bitmap bmp, int usage);
357 synchronized long nAllocationCreateBitmapBackedAllocation(long type, int mip, Bitmap bmp, int usage) {
Tim Murraya3145512012-12-04 17:59:29 -0800358 validate();
359 return rsnAllocationCreateBitmapBackedAllocation(mContext, type, mip, bmp, usage);
360 }
361
Tim Murray7a629fa2013-11-19 12:45:54 -0800362 native long rsnAllocationCubeCreateFromBitmap(long con, long type, int mip, Bitmap bmp, int usage);
363 synchronized long nAllocationCubeCreateFromBitmap(long type, int mip, Bitmap bmp, int usage) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800364 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800365 return rsnAllocationCubeCreateFromBitmap(mContext, type, mip, bmp, usage);
Alex Sakhartchouk67f2e442010-11-18 15:22:43 -0800366 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800367 native long rsnAllocationCreateBitmapRef(long con, long type, Bitmap bmp);
368 synchronized long nAllocationCreateBitmapRef(long type, Bitmap bmp) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800369 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700370 return rsnAllocationCreateBitmapRef(mContext, type, bmp);
371 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800372 native long rsnAllocationCreateFromAssetStream(long con, int mips, int assetStream, int usage);
373 synchronized long nAllocationCreateFromAssetStream(int mips, int assetStream, int usage) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800374 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800375 return rsnAllocationCreateFromAssetStream(mContext, mips, assetStream, usage);
376 }
377
Tim Murray7a629fa2013-11-19 12:45:54 -0800378 native void rsnAllocationCopyToBitmap(long con, long alloc, Bitmap bmp);
379 synchronized void nAllocationCopyToBitmap(long alloc, Bitmap bmp) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800380 validate();
Jason Sams4ef66502010-12-10 16:03:15 -0800381 rsnAllocationCopyToBitmap(mContext, alloc, bmp);
382 }
383
384
Tim Murray7a629fa2013-11-19 12:45:54 -0800385 native void rsnAllocationSyncAll(long con, long alloc, int src);
386 synchronized void nAllocationSyncAll(long alloc, int src) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800387 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800388 rsnAllocationSyncAll(mContext, alloc, src);
389 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800390 native Surface rsnAllocationGetSurface(long con, long alloc);
391 synchronized Surface nAllocationGetSurface(long alloc) {
Jason Sams615e7ce2012-01-13 14:01:20 -0800392 validate();
Jason Sams72226e02013-02-22 12:45:54 -0800393 return rsnAllocationGetSurface(mContext, alloc);
Jason Samsfe1d5ff2012-03-23 11:47:26 -0700394 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800395 native void rsnAllocationSetSurface(long con, long alloc, Surface sur);
396 synchronized void nAllocationSetSurface(long alloc, Surface sur) {
Jason Sams163766c2012-02-15 12:04:24 -0800397 validate();
Jason Samsfb9aa9f2012-03-28 15:30:07 -0700398 rsnAllocationSetSurface(mContext, alloc, sur);
Jason Sams163766c2012-02-15 12:04:24 -0800399 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800400 native void rsnAllocationIoSend(long con, long alloc);
401 synchronized void nAllocationIoSend(long alloc) {
Jason Sams163766c2012-02-15 12:04:24 -0800402 validate();
403 rsnAllocationIoSend(mContext, alloc);
404 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800405 native void rsnAllocationIoReceive(long con, long alloc);
406 synchronized void nAllocationIoReceive(long alloc) {
Jason Sams163766c2012-02-15 12:04:24 -0800407 validate();
408 rsnAllocationIoReceive(mContext, alloc);
409 }
410
Jason Sams615e7ce2012-01-13 14:01:20 -0800411
Tim Murray7a629fa2013-11-19 12:45:54 -0800412 native void rsnAllocationGenerateMipmaps(long con, long alloc);
413 synchronized void nAllocationGenerateMipmaps(long alloc) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800414 validate();
Jason Samsf7086092011-01-12 13:28:37 -0800415 rsnAllocationGenerateMipmaps(mContext, alloc);
416 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800417 native void rsnAllocationCopyFromBitmap(long con, long alloc, Bitmap bmp);
418 synchronized void nAllocationCopyFromBitmap(long alloc, Bitmap bmp) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800419 validate();
Jason Sams4ef66502010-12-10 16:03:15 -0800420 rsnAllocationCopyFromBitmap(mContext, alloc, bmp);
Jason Sams2e1872f2010-08-17 16:25:41 -0700421 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700422
Jason Sams49a05d72010-12-29 14:31:29 -0800423
Tim Murray7a629fa2013-11-19 12:45:54 -0800424 native void rsnAllocationData1D(long con, long id, int off, int mip, int count, Object d, int sizeBytes, int dt);
425 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 -0800426 validate();
Jason Sams6fcf2e12013-11-06 11:22:02 -0800427 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes, dt.mID);
Jason Sams2e1872f2010-08-17 16:25:41 -0700428 }
Alex Sakhartchoukaae74ad2010-06-04 10:06:50 -0700429
Tim Murray7a629fa2013-11-19 12:45:54 -0800430 native void rsnAllocationElementData1D(long con,long id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes);
431 synchronized void nAllocationElementData1D(long id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800432 validate();
Jason Sams49a05d72010-12-29 14:31:29 -0800433 rsnAllocationElementData1D(mContext, id, xoff, mip, compIdx, d, sizeBytes);
Jason Sams2e1872f2010-08-17 16:25:41 -0700434 }
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -0700435
Tim Murraya78e9ad2013-11-15 13:08:30 -0800436 native void rsnAllocationData2D(long con,
Tim Murray7a629fa2013-11-19 12:45:54 -0800437 long dstAlloc, int dstXoff, int dstYoff,
Alex Sakhartchouk304b1f52011-06-14 11:13:19 -0700438 int dstMip, int dstFace,
439 int width, int height,
Tim Murray7a629fa2013-11-19 12:45:54 -0800440 long srcAlloc, int srcXoff, int srcYoff,
Alex Sakhartchouk304b1f52011-06-14 11:13:19 -0700441 int srcMip, int srcFace);
Tim Murray7a629fa2013-11-19 12:45:54 -0800442 synchronized void nAllocationData2D(long dstAlloc, int dstXoff, int dstYoff,
Alex Sakhartchouk304b1f52011-06-14 11:13:19 -0700443 int dstMip, int dstFace,
444 int width, int height,
Tim Murray7a629fa2013-11-19 12:45:54 -0800445 long srcAlloc, int srcXoff, int srcYoff,
Alex Sakhartchouk304b1f52011-06-14 11:13:19 -0700446 int srcMip, int srcFace) {
447 validate();
448 rsnAllocationData2D(mContext,
449 dstAlloc, dstXoff, dstYoff,
450 dstMip, dstFace,
451 width, height,
452 srcAlloc, srcXoff, srcYoff,
453 srcMip, srcFace);
454 }
455
Tim Murray7a629fa2013-11-19 12:45:54 -0800456 native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face,
Jason Sams6fcf2e12013-11-06 11:22:02 -0800457 int w, int h, Object d, int sizeBytes, int dt);
Tim Murray7a629fa2013-11-19 12:45:54 -0800458 synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face,
Jason Sams6fcf2e12013-11-06 11:22:02 -0800459 int w, int h, Object d, int sizeBytes, Element.DataType dt) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800460 validate();
Jason Sams6fcf2e12013-11-06 11:22:02 -0800461 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes, dt.mID);
Jason Sams2e1872f2010-08-17 16:25:41 -0700462 }
Jason Sams29868df2013-11-06 15:08:07 -0800463
Tim Murray7a629fa2013-11-19 12:45:54 -0800464 native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face, Bitmap b);
465 synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face, Bitmap b) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800466 validate();
Jason Samsfa445b92011-01-07 17:00:07 -0800467 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, b);
468 }
Jason Sams49a05d72010-12-29 14:31:29 -0800469
Tim Murraya78e9ad2013-11-15 13:08:30 -0800470 native void rsnAllocationData3D(long con,
Tim Murray7a629fa2013-11-19 12:45:54 -0800471 long dstAlloc, int dstXoff, int dstYoff, int dstZoff,
Jason Samsb05d6892013-04-09 15:59:24 -0700472 int dstMip,
473 int width, int height, int depth,
Tim Murray7a629fa2013-11-19 12:45:54 -0800474 long srcAlloc, int srcXoff, int srcYoff, int srcZoff,
Jason Samsb05d6892013-04-09 15:59:24 -0700475 int srcMip);
Tim Murray7a629fa2013-11-19 12:45:54 -0800476 synchronized void nAllocationData3D(long dstAlloc, int dstXoff, int dstYoff, int dstZoff,
Jason Samsb05d6892013-04-09 15:59:24 -0700477 int dstMip,
478 int width, int height, int depth,
Tim Murray7a629fa2013-11-19 12:45:54 -0800479 long srcAlloc, int srcXoff, int srcYoff, int srcZoff,
Jason Samsb05d6892013-04-09 15:59:24 -0700480 int srcMip) {
481 validate();
482 rsnAllocationData3D(mContext,
483 dstAlloc, dstXoff, dstYoff, dstZoff,
484 dstMip, width, height, depth,
485 srcAlloc, srcXoff, srcYoff, srcZoff, srcMip);
486 }
487
Tim Murray7a629fa2013-11-19 12:45:54 -0800488 native void rsnAllocationData3D(long con, long id, int xoff, int yoff, int zoff, int mip,
Jason Sams6fcf2e12013-11-06 11:22:02 -0800489 int w, int h, int depth, Object d, int sizeBytes, int dt);
Tim Murray7a629fa2013-11-19 12:45:54 -0800490 synchronized void nAllocationData3D(long id, int xoff, int yoff, int zoff, int mip,
Jason Sams6fcf2e12013-11-06 11:22:02 -0800491 int w, int h, int depth, Object d, int sizeBytes, Element.DataType dt) {
Jason Samsb05d6892013-04-09 15:59:24 -0700492 validate();
Jason Sams6fcf2e12013-11-06 11:22:02 -0800493 rsnAllocationData3D(mContext, id, xoff, yoff, zoff, mip, w, h, depth, d, sizeBytes, dt.mID);
Jason Samsb05d6892013-04-09 15:59:24 -0700494 }
Jason Samsb05d6892013-04-09 15:59:24 -0700495
Tim Murray7a629fa2013-11-19 12:45:54 -0800496 native void rsnAllocationRead(long con, long id, Object d, int dt);
497 synchronized void nAllocationRead(long id, Object d, Element.DataType dt) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800498 validate();
Jason Sams29868df2013-11-06 15:08:07 -0800499 rsnAllocationRead(mContext, id, d, dt.mID);
Jason Samsfa445b92011-01-07 17:00:07 -0800500 }
Jason Sams29868df2013-11-06 15:08:07 -0800501
Tim Murray7a629fa2013-11-19 12:45:54 -0800502 native void rsnAllocationRead1D(long con, long id, int off, int mip, int count, Object d,
Jason Sams29868df2013-11-06 15:08:07 -0800503 int sizeBytes, int dt);
Tim Murray7a629fa2013-11-19 12:45:54 -0800504 synchronized void nAllocationRead1D(long id, int off, int mip, int count, Object d,
Jason Sams29868df2013-11-06 15:08:07 -0800505 int sizeBytes, Element.DataType dt) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800506 validate();
Jason Sams29868df2013-11-06 15:08:07 -0800507 rsnAllocationRead1D(mContext, id, off, mip, count, d, sizeBytes, dt.mID);
Jason Samsfa445b92011-01-07 17:00:07 -0800508 }
Jason Sams29868df2013-11-06 15:08:07 -0800509
Tim Murray7a629fa2013-11-19 12:45:54 -0800510 native void rsnAllocationRead2D(long con, long id, int xoff, int yoff, int mip, int face,
Jason Sams29868df2013-11-06 15:08:07 -0800511 int w, int h, Object d, int sizeBytes, int dt);
Tim Murray7a629fa2013-11-19 12:45:54 -0800512 synchronized void nAllocationRead2D(long id, int xoff, int yoff, int mip, int face,
Jason Sams29868df2013-11-06 15:08:07 -0800513 int w, int h, Object d, int sizeBytes, Element.DataType dt) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800514 validate();
Jason Sams29868df2013-11-06 15:08:07 -0800515 rsnAllocationRead2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes, dt.mID);
Jason Sams2e1872f2010-08-17 16:25:41 -0700516 }
Jason Sams29868df2013-11-06 15:08:07 -0800517
Tim Murray7a629fa2013-11-19 12:45:54 -0800518 native long rsnAllocationGetType(long con, long id);
519 synchronized long nAllocationGetType(long id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800520 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700521 return rsnAllocationGetType(mContext, id);
522 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700523
Tim Murray7a629fa2013-11-19 12:45:54 -0800524 native void rsnAllocationResize1D(long con, long id, int dimX);
525 synchronized void nAllocationResize1D(long id, int dimX) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800526 validate();
Jason Sams5edc6082010-10-05 13:32:49 -0700527 rsnAllocationResize1D(mContext, id, dimX);
528 }
Jason Sams5edc6082010-10-05 13:32:49 -0700529
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000530 native long rsnFileA3DCreateFromAssetStream(long con, long assetStream);
531 synchronized long nFileA3DCreateFromAssetStream(long assetStream) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800532 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700533 return rsnFileA3DCreateFromAssetStream(mContext, assetStream);
534 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800535 native long rsnFileA3DCreateFromFile(long con, String path);
536 synchronized long nFileA3DCreateFromFile(String path) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800537 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800538 return rsnFileA3DCreateFromFile(mContext, path);
539 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800540 native long rsnFileA3DCreateFromAsset(long con, AssetManager mgr, String path);
541 synchronized long nFileA3DCreateFromAsset(AssetManager mgr, String path) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800542 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800543 return rsnFileA3DCreateFromAsset(mContext, mgr, path);
544 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800545 native int rsnFileA3DGetNumIndexEntries(long con, long fileA3D);
546 synchronized int nFileA3DGetNumIndexEntries(long fileA3D) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800547 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700548 return rsnFileA3DGetNumIndexEntries(mContext, fileA3D);
549 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800550 native void rsnFileA3DGetIndexEntries(long con, long fileA3D, int numEntries, int[] IDs, String[] names);
551 synchronized void nFileA3DGetIndexEntries(long fileA3D, int numEntries, int[] IDs, String[] names) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800552 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700553 rsnFileA3DGetIndexEntries(mContext, fileA3D, numEntries, IDs, names);
554 }
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000555 native long rsnFileA3DGetEntryByIndex(long con, long fileA3D, int index);
556 synchronized long nFileA3DGetEntryByIndex(long fileA3D, int index) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800557 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700558 return rsnFileA3DGetEntryByIndex(mContext, fileA3D, index);
559 }
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700560
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000561 native long rsnFontCreateFromFile(long con, String fileName, float size, int dpi);
562 synchronized long nFontCreateFromFile(String fileName, float size, int dpi) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800563 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700564 return rsnFontCreateFromFile(mContext, fileName, size, dpi);
565 }
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000566 native long rsnFontCreateFromAssetStream(long con, String name, float size, int dpi, long assetStream);
567 synchronized long nFontCreateFromAssetStream(String name, float size, int dpi, long assetStream) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800568 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800569 return rsnFontCreateFromAssetStream(mContext, name, size, dpi, assetStream);
570 }
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000571 native long rsnFontCreateFromAsset(long con, AssetManager mgr, String path, float size, int dpi);
572 synchronized long nFontCreateFromAsset(AssetManager mgr, String path, float size, int dpi) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800573 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800574 return rsnFontCreateFromAsset(mContext, mgr, path, size, dpi);
575 }
Jason Sams22534172009-08-04 16:58:20 -0700576
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700577
Tim Murray7a629fa2013-11-19 12:45:54 -0800578 native void rsnScriptBindAllocation(long con, long script, long alloc, int slot);
579 synchronized void nScriptBindAllocation(long script, long alloc, int slot) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800580 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700581 rsnScriptBindAllocation(mContext, script, alloc, slot);
582 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800583 native void rsnScriptSetTimeZone(long con, long script, byte[] timeZone);
584 synchronized void nScriptSetTimeZone(long script, byte[] timeZone) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800585 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700586 rsnScriptSetTimeZone(mContext, script, timeZone);
587 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800588 native void rsnScriptInvoke(long con, long id, int slot);
589 synchronized void nScriptInvoke(long id, int slot) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800590 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700591 rsnScriptInvoke(mContext, id, slot);
592 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800593 native void rsnScriptForEach(long con, long id, int slot, long ain, long aout, byte[] params);
594 native void rsnScriptForEach(long con, long id, int slot, long ain, long aout);
595 native void rsnScriptForEachClipped(long con, long id, int slot, long ain, long aout, byte[] params,
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800596 int xstart, int xend, int ystart, int yend, int zstart, int zend);
Tim Murray7a629fa2013-11-19 12:45:54 -0800597 native void rsnScriptForEachClipped(long con, long id, int slot, long ain, long aout,
Stephen Hinesdac6ed02013-02-13 00:09:02 -0800598 int xstart, int xend, int ystart, int yend, int zstart, int zend);
Tim Murray7a629fa2013-11-19 12:45:54 -0800599 synchronized void nScriptForEach(long id, int slot, long ain, long aout, byte[] params) {
Jason Sams6e494d32011-04-27 16:33:11 -0700600 validate();
601 if (params == null) {
602 rsnScriptForEach(mContext, id, slot, ain, aout);
603 } else {
604 rsnScriptForEach(mContext, id, slot, ain, aout, params);
605 }
606 }
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800607
Tim Murray7a629fa2013-11-19 12:45:54 -0800608 synchronized void nScriptForEachClipped(long id, int slot, long ain, long aout, byte[] params,
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800609 int xstart, int xend, int ystart, int yend, int zstart, int zend) {
610 validate();
Stephen Hinesdac6ed02013-02-13 00:09:02 -0800611 if (params == null) {
612 rsnScriptForEachClipped(mContext, id, slot, ain, aout, xstart, xend, ystart, yend, zstart, zend);
613 } else {
614 rsnScriptForEachClipped(mContext, id, slot, ain, aout, params, xstart, xend, ystart, yend, zstart, zend);
615 }
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800616 }
617
Chris Wailes94961062014-06-11 12:01:28 -0700618 /**
619 * Multi-input code.
620 *
621 */
622
623 // @hide
624 native void rsnScriptForEachMultiClipped(long con, long id, int slot, long[] ains, long aout, byte[] params,
625 int xstart, int xend, int ystart, int yend, int zstart, int zend);
626 // @hide
627 native void rsnScriptForEachMultiClipped(long con, long id, int slot, long[] ains, long aout,
628 int xstart, int xend, int ystart, int yend, int zstart, int zend);
629
630 // @hide
631 synchronized void nScriptForEachMultiClipped(long id, int slot, long[] ains, long aout, byte[] params,
632 int xstart, int xend, int ystart, int yend, int zstart, int zend) {
633 validate();
634 if (params == null) {
635 rsnScriptForEachMultiClipped(mContext, id, slot, ains, aout, xstart, xend, ystart, yend, zstart, zend);
636 } else {
637 rsnScriptForEachMultiClipped(mContext, id, slot, ains, aout, params, xstart, xend, ystart, yend, zstart, zend);
638 }
639 }
640
Tim Murray7a629fa2013-11-19 12:45:54 -0800641 native void rsnScriptInvokeV(long con, long id, int slot, byte[] params);
642 synchronized void nScriptInvokeV(long id, int slot, byte[] params) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800643 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700644 rsnScriptInvokeV(mContext, id, slot, params);
645 }
Tim Murray7c4caad2013-04-10 16:21:40 -0700646
Tim Murray7a629fa2013-11-19 12:45:54 -0800647 native void rsnScriptSetVarI(long con, long id, int slot, int val);
648 synchronized void nScriptSetVarI(long id, int slot, int val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800649 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700650 rsnScriptSetVarI(mContext, id, slot, val);
651 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800652 native int rsnScriptGetVarI(long con, long id, int slot);
653 synchronized int nScriptGetVarI(long id, int slot) {
Tim Murray7c4caad2013-04-10 16:21:40 -0700654 validate();
655 return rsnScriptGetVarI(mContext, id, slot);
656 }
657
Tim Murray7a629fa2013-11-19 12:45:54 -0800658 native void rsnScriptSetVarJ(long con, long id, int slot, long val);
659 synchronized void nScriptSetVarJ(long id, int slot, long val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800660 validate();
Stephen Hines031ec58c2010-10-11 10:54:21 -0700661 rsnScriptSetVarJ(mContext, id, slot, val);
662 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800663 native long rsnScriptGetVarJ(long con, long id, int slot);
664 synchronized long nScriptGetVarJ(long id, int slot) {
Tim Murray7c4caad2013-04-10 16:21:40 -0700665 validate();
666 return rsnScriptGetVarJ(mContext, id, slot);
667 }
668
Tim Murray7a629fa2013-11-19 12:45:54 -0800669 native void rsnScriptSetVarF(long con, long id, int slot, float val);
670 synchronized void nScriptSetVarF(long id, int slot, float val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800671 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700672 rsnScriptSetVarF(mContext, id, slot, val);
673 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800674 native float rsnScriptGetVarF(long con, long id, int slot);
675 synchronized float nScriptGetVarF(long id, int slot) {
Tim Murray7c4caad2013-04-10 16:21:40 -0700676 validate();
677 return rsnScriptGetVarF(mContext, id, slot);
678 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800679 native void rsnScriptSetVarD(long con, long id, int slot, double val);
680 synchronized void nScriptSetVarD(long id, int slot, double val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800681 validate();
Stephen Hinesca54ec32010-09-20 17:20:30 -0700682 rsnScriptSetVarD(mContext, id, slot, val);
683 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800684 native double rsnScriptGetVarD(long con, long id, int slot);
685 synchronized double nScriptGetVarD(long id, int slot) {
Tim Murray7c4caad2013-04-10 16:21:40 -0700686 validate();
687 return rsnScriptGetVarD(mContext, id, slot);
688 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800689 native void rsnScriptSetVarV(long con, long id, int slot, byte[] val);
690 synchronized void nScriptSetVarV(long id, int slot, byte[] val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800691 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700692 rsnScriptSetVarV(mContext, id, slot, val);
693 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800694 native void rsnScriptGetVarV(long con, long id, int slot, byte[] val);
695 synchronized void nScriptGetVarV(long id, int slot, byte[] val) {
Tim Murray7c4caad2013-04-10 16:21:40 -0700696 validate();
697 rsnScriptGetVarV(mContext, id, slot, val);
698 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800699 native void rsnScriptSetVarVE(long con, long id, int slot, byte[] val,
700 long e, int[] dims);
701 synchronized void nScriptSetVarVE(long id, int slot, byte[] val,
702 long e, int[] dims) {
Stephen Hinesadeb8092012-04-20 14:26:06 -0700703 validate();
704 rsnScriptSetVarVE(mContext, id, slot, val, e, dims);
705 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800706 native void rsnScriptSetVarObj(long con, long id, int slot, long val);
707 synchronized void nScriptSetVarObj(long id, int slot, long val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800708 validate();
Jason Sams6f4cf0b2010-11-16 17:37:02 -0800709 rsnScriptSetVarObj(mContext, id, slot, val);
710 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700711
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000712 native long rsnScriptCCreate(long con, String resName, String cacheDir,
Jason Samse4a06c52011-03-16 16:29:28 -0700713 byte[] script, int length);
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000714 synchronized long nScriptCCreate(String resName, String cacheDir, byte[] script, int length) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800715 validate();
Jason Samse4a06c52011-03-16 16:29:28 -0700716 return rsnScriptCCreate(mContext, resName, cacheDir, script, length);
Jason Sams2e1872f2010-08-17 16:25:41 -0700717 }
Jason Samsebfb4362009-09-23 13:57:02 -0700718
Tim Murray7a629fa2013-11-19 12:45:54 -0800719 native long rsnScriptIntrinsicCreate(long con, int id, long eid);
720 synchronized long nScriptIntrinsicCreate(int id, long eid) {
Jason Sams6ab97682012-08-10 12:09:43 -0700721 validate();
722 return rsnScriptIntrinsicCreate(mContext, id, eid);
723 }
724
Tim Murray7a629fa2013-11-19 12:45:54 -0800725 native long rsnScriptKernelIDCreate(long con, long sid, int slot, int sig);
726 synchronized long nScriptKernelIDCreate(long sid, int slot, int sig) {
Jason Sams08a81582012-09-18 12:32:10 -0700727 validate();
728 return rsnScriptKernelIDCreate(mContext, sid, slot, sig);
729 }
730
Tim Murray7a629fa2013-11-19 12:45:54 -0800731 native long rsnScriptFieldIDCreate(long con, long sid, int slot);
732 synchronized long nScriptFieldIDCreate(long sid, int slot) {
Jason Sams08a81582012-09-18 12:32:10 -0700733 validate();
734 return rsnScriptFieldIDCreate(mContext, sid, slot);
735 }
736
Ashok Bhat98071552014-02-12 09:54:43 +0000737 native long rsnScriptGroupCreate(long con, long[] kernels, long[] src, long[] dstk, long[] dstf, long[] types);
738 synchronized long nScriptGroupCreate(long[] kernels, long[] src, long[] dstk, long[] dstf, long[] types) {
Jason Sams08a81582012-09-18 12:32:10 -0700739 validate();
740 return rsnScriptGroupCreate(mContext, kernels, src, dstk, dstf, types);
741 }
742
Tim Murray7a629fa2013-11-19 12:45:54 -0800743 native void rsnScriptGroupSetInput(long con, long group, long kernel, long alloc);
744 synchronized void nScriptGroupSetInput(long group, long kernel, long alloc) {
Jason Sams08a81582012-09-18 12:32:10 -0700745 validate();
746 rsnScriptGroupSetInput(mContext, group, kernel, alloc);
747 }
748
Tim Murray7a629fa2013-11-19 12:45:54 -0800749 native void rsnScriptGroupSetOutput(long con, long group, long kernel, long alloc);
750 synchronized void nScriptGroupSetOutput(long group, long kernel, long alloc) {
Jason Sams08a81582012-09-18 12:32:10 -0700751 validate();
752 rsnScriptGroupSetOutput(mContext, group, kernel, alloc);
753 }
754
Tim Murray7a629fa2013-11-19 12:45:54 -0800755 native void rsnScriptGroupExecute(long con, long group);
756 synchronized void nScriptGroupExecute(long group) {
Jason Sams08a81582012-09-18 12:32:10 -0700757 validate();
758 rsnScriptGroupExecute(mContext, group);
759 }
760
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000761 native long rsnSamplerCreate(long con, int magFilter, int minFilter,
Alex Sakhartchouka89094a2011-05-04 17:45:36 -0700762 int wrapS, int wrapT, int wrapR, float aniso);
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000763 synchronized long nSamplerCreate(int magFilter, int minFilter,
Alex Sakhartchouka89094a2011-05-04 17:45:36 -0700764 int wrapS, int wrapT, int wrapR, float aniso) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800765 validate();
Alex Sakhartchouka89094a2011-05-04 17:45:36 -0700766 return rsnSamplerCreate(mContext, magFilter, minFilter, wrapS, wrapT, wrapR, aniso);
Jason Sams2e1872f2010-08-17 16:25:41 -0700767 }
Jason Sams0011bcf2009-12-15 12:58:36 -0800768
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000769 native long rsnProgramStoreCreate(long con, boolean r, boolean g, boolean b, boolean a,
Jason Sams331bf9b2011-04-06 11:23:54 -0700770 boolean depthMask, boolean dither,
771 int srcMode, int dstMode, int depthFunc);
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000772 synchronized long nProgramStoreCreate(boolean r, boolean g, boolean b, boolean a,
Jason Sams331bf9b2011-04-06 11:23:54 -0700773 boolean depthMask, boolean dither,
774 int srcMode, int dstMode, int depthFunc) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800775 validate();
Jason Samsbd184c52011-04-06 11:44:47 -0700776 return rsnProgramStoreCreate(mContext, r, g, b, a, depthMask, dither, srcMode,
777 dstMode, depthFunc);
Jason Sams2e1872f2010-08-17 16:25:41 -0700778 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700779
Tim Murray7a629fa2013-11-19 12:45:54 -0800780 native long rsnProgramRasterCreate(long con, boolean pointSprite, int cullMode);
781 synchronized long nProgramRasterCreate(boolean pointSprite, int cullMode) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800782 validate();
Jason Sams94aaed32011-09-23 14:18:53 -0700783 return rsnProgramRasterCreate(mContext, pointSprite, cullMode);
Jason Sams2e1872f2010-08-17 16:25:41 -0700784 }
Jason Sams1fe9b8c2009-06-11 14:46:10 -0700785
Tim Murray7a629fa2013-11-19 12:45:54 -0800786 native void rsnProgramBindConstants(long con, long pv, int slot, long mID);
787 synchronized void nProgramBindConstants(long pv, int slot, long mID) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800788 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700789 rsnProgramBindConstants(mContext, pv, slot, mID);
790 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800791 native void rsnProgramBindTexture(long con, long vpf, int slot, long a);
792 synchronized void nProgramBindTexture(long vpf, int slot, long a) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800793 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700794 rsnProgramBindTexture(mContext, vpf, slot, a);
795 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800796 native void rsnProgramBindSampler(long con, long vpf, int slot, long s);
797 synchronized void nProgramBindSampler(long vpf, int slot, long s) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800798 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700799 rsnProgramBindSampler(mContext, vpf, slot, s);
800 }
Ashok Bhat98071552014-02-12 09:54:43 +0000801 native long rsnProgramFragmentCreate(long con, String shader, String[] texNames, long[] params);
802 synchronized long nProgramFragmentCreate(String shader, String[] texNames, long[] params) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800803 validate();
Alex Sakhartchouk2123b462012-02-15 16:21:46 -0800804 return rsnProgramFragmentCreate(mContext, shader, texNames, params);
Jason Sams2e1872f2010-08-17 16:25:41 -0700805 }
Ashok Bhat98071552014-02-12 09:54:43 +0000806 native long rsnProgramVertexCreate(long con, String shader, String[] texNames, long[] params);
807 synchronized long nProgramVertexCreate(String shader, String[] texNames, long[] params) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800808 validate();
Alex Sakhartchouk2123b462012-02-15 16:21:46 -0800809 return rsnProgramVertexCreate(mContext, shader, texNames, params);
Jason Sams2e1872f2010-08-17 16:25:41 -0700810 }
Alex Sakhartchouk164aaed2010-07-01 16:14:06 -0700811
Ashok Bhat98071552014-02-12 09:54:43 +0000812 native long rsnMeshCreate(long con, long[] vtx, long[] idx, int[] prim);
813 synchronized long nMeshCreate(long[] vtx, long[] idx, int[] prim) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800814 validate();
Alex Sakhartchouk25999a02011-05-12 10:38:03 -0700815 return rsnMeshCreate(mContext, vtx, idx, prim);
Alex Sakhartchouk9d71e212010-11-08 15:10:52 -0800816 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800817 native int rsnMeshGetVertexBufferCount(long con, long id);
818 synchronized int nMeshGetVertexBufferCount(long id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800819 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700820 return rsnMeshGetVertexBufferCount(mContext, id);
821 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800822 native int rsnMeshGetIndexCount(long con, long id);
823 synchronized int nMeshGetIndexCount(long id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800824 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700825 return rsnMeshGetIndexCount(mContext, id);
826 }
Ashok Bhat98071552014-02-12 09:54:43 +0000827 native void rsnMeshGetVertices(long con, long id, long[] vtxIds, int vtxIdCount);
828 synchronized void nMeshGetVertices(long id, long[] vtxIds, int vtxIdCount) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800829 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700830 rsnMeshGetVertices(mContext, id, vtxIds, vtxIdCount);
831 }
Ashok Bhat98071552014-02-12 09:54:43 +0000832 native void rsnMeshGetIndices(long con, long id, long[] idxIds, int[] primitives, int vtxIdCount);
833 synchronized void nMeshGetIndices(long id, long[] idxIds, int[] primitives, int vtxIdCount) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800834 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700835 rsnMeshGetIndices(mContext, id, idxIds, primitives, vtxIdCount);
836 }
837
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000838 native long rsnPathCreate(long con, int prim, boolean isStatic, long vtx, long loop, float q);
839 synchronized long nPathCreate(int prim, boolean isStatic, long vtx, long loop, float q) {
Jason Samsf15ed012011-10-31 13:23:43 -0700840 validate();
841 return rsnPathCreate(mContext, prim, isStatic, vtx, loop, q);
842 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700843
Tim Murraya78e9ad2013-11-15 13:08:30 -0800844 long mDev;
845 long mContext;
Romain Guy650a3eb2009-08-31 14:06:43 -0700846 @SuppressWarnings({"FieldCanBeLocal"})
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800847 MessageThread mMessageThread;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700848
Jason Sams8cb39de2010-06-01 15:47:01 -0700849 Element mElement_U8;
850 Element mElement_I8;
851 Element mElement_U16;
852 Element mElement_I16;
853 Element mElement_U32;
854 Element mElement_I32;
Stephen Hines52d83632010-10-11 16:10:42 -0700855 Element mElement_U64;
Stephen Hinesef1dac22010-10-01 15:39:33 -0700856 Element mElement_I64;
Jason Sams8cb39de2010-06-01 15:47:01 -0700857 Element mElement_F32;
Stephen Hines02f417052010-09-30 15:19:22 -0700858 Element mElement_F64;
Jason Samsf110d4b2010-06-21 17:42:41 -0700859 Element mElement_BOOLEAN;
Jason Sams3c0dfba2009-09-27 17:50:38 -0700860
Jason Sams8cb39de2010-06-01 15:47:01 -0700861 Element mElement_ELEMENT;
862 Element mElement_TYPE;
863 Element mElement_ALLOCATION;
864 Element mElement_SAMPLER;
865 Element mElement_SCRIPT;
866 Element mElement_MESH;
867 Element mElement_PROGRAM_FRAGMENT;
868 Element mElement_PROGRAM_VERTEX;
869 Element mElement_PROGRAM_RASTER;
870 Element mElement_PROGRAM_STORE;
Stephen Hines3a291412012-04-11 17:27:29 -0700871 Element mElement_FONT;
Jason Samsa70f4162010-03-26 15:33:42 -0700872
Jason Sams3c0dfba2009-09-27 17:50:38 -0700873 Element mElement_A_8;
874 Element mElement_RGB_565;
875 Element mElement_RGB_888;
876 Element mElement_RGBA_5551;
877 Element mElement_RGBA_4444;
878 Element mElement_RGBA_8888;
879
Jason Sams8cb39de2010-06-01 15:47:01 -0700880 Element mElement_FLOAT_2;
881 Element mElement_FLOAT_3;
882 Element mElement_FLOAT_4;
Stephen Hines836c4a52011-06-01 14:38:10 -0700883
884 Element mElement_DOUBLE_2;
885 Element mElement_DOUBLE_3;
886 Element mElement_DOUBLE_4;
887
888 Element mElement_UCHAR_2;
889 Element mElement_UCHAR_3;
Jason Sams8cb39de2010-06-01 15:47:01 -0700890 Element mElement_UCHAR_4;
Jason Sams7d787b42009-11-15 12:14:26 -0800891
Stephen Hines836c4a52011-06-01 14:38:10 -0700892 Element mElement_CHAR_2;
893 Element mElement_CHAR_3;
894 Element mElement_CHAR_4;
895
896 Element mElement_USHORT_2;
897 Element mElement_USHORT_3;
898 Element mElement_USHORT_4;
899
900 Element mElement_SHORT_2;
901 Element mElement_SHORT_3;
902 Element mElement_SHORT_4;
903
904 Element mElement_UINT_2;
905 Element mElement_UINT_3;
906 Element mElement_UINT_4;
907
908 Element mElement_INT_2;
909 Element mElement_INT_3;
910 Element mElement_INT_4;
911
912 Element mElement_ULONG_2;
913 Element mElement_ULONG_3;
914 Element mElement_ULONG_4;
915
916 Element mElement_LONG_2;
917 Element mElement_LONG_3;
918 Element mElement_LONG_4;
919
Tim Murray932e78e2013-09-03 11:42:26 -0700920 Element mElement_YUV;
921
Jason Sams1d45c472010-08-25 14:31:48 -0700922 Element mElement_MATRIX_4X4;
923 Element mElement_MATRIX_3X3;
924 Element mElement_MATRIX_2X2;
925
Jason Sams4d339932010-05-11 14:03:58 -0700926 Sampler mSampler_CLAMP_NEAREST;
927 Sampler mSampler_CLAMP_LINEAR;
928 Sampler mSampler_CLAMP_LINEAR_MIP_LINEAR;
929 Sampler mSampler_WRAP_NEAREST;
930 Sampler mSampler_WRAP_LINEAR;
931 Sampler mSampler_WRAP_LINEAR_MIP_LINEAR;
Tim Murray6b9b2ca2013-02-15 13:25:55 -0800932 Sampler mSampler_MIRRORED_REPEAT_NEAREST;
933 Sampler mSampler_MIRRORED_REPEAT_LINEAR;
934 Sampler mSampler_MIRRORED_REPEAT_LINEAR_MIP_LINEAR;
Jason Sams4d339932010-05-11 14:03:58 -0700935
Alex Sakhartchoukd36f2482010-08-24 11:37:33 -0700936 ProgramStore mProgramStore_BLEND_NONE_DEPTH_TEST;
937 ProgramStore mProgramStore_BLEND_NONE_DEPTH_NO_DEPTH;
Alex Sakhartchoukd36f2482010-08-24 11:37:33 -0700938 ProgramStore mProgramStore_BLEND_ALPHA_DEPTH_TEST;
939 ProgramStore mProgramStore_BLEND_ALPHA_DEPTH_NO_DEPTH;
Alex Sakhartchouk32e09b52010-08-23 10:24:10 -0700940
Alex Sakhartchoukd36f2482010-08-24 11:37:33 -0700941 ProgramRaster mProgramRaster_CULL_BACK;
942 ProgramRaster mProgramRaster_CULL_FRONT;
943 ProgramRaster mProgramRaster_CULL_NONE;
Alex Sakhartchouk32e09b52010-08-23 10:24:10 -0700944
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700945 ///////////////////////////////////////////////////////////////////////////////////
Jack Palevich43702d82009-05-28 13:38:16 -0700946 //
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700947
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700948 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -0700949 * The base class from which an application should derive in order
950 * to receive RS messages from scripts. When a script calls {@code
951 * rsSendToClient}, the data fields will be filled, and the run
952 * method will be called on a separate thread. This will occur
953 * some time after {@code rsSendToClient} completes in the script,
954 * as {@code rsSendToClient} is asynchronous. Message handlers are
955 * not guaranteed to have completed when {@link
956 * android.renderscript.RenderScript#finish} returns.
Jason Sams27676fe2010-11-10 17:00:59 -0800957 *
958 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800959 public static class RSMessageHandler implements Runnable {
Jason Sams516c3192009-10-06 13:58:47 -0700960 protected int[] mData;
961 protected int mID;
Jason Sams1c415172010-11-08 17:06:46 -0800962 protected int mLength;
Jason Sams516c3192009-10-06 13:58:47 -0700963 public void run() {
964 }
965 }
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700966 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -0700967 * If an application is expecting messages, it should set this
968 * field to an instance of {@link RSMessageHandler}. This
969 * instance will receive all the user messages sent from {@code
970 * sendToClient} by scripts from this context.
Jason Sams27676fe2010-11-10 17:00:59 -0800971 *
972 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800973 RSMessageHandler mMessageCallback = null;
974
975 public void setMessageHandler(RSMessageHandler msg) {
976 mMessageCallback = msg;
977 }
978 public RSMessageHandler getMessageHandler() {
979 return mMessageCallback;
980 }
Jason Sams516c3192009-10-06 13:58:47 -0700981
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700982 /**
Jason Sams02d56d92013-04-12 16:40:50 -0700983 * Place a message into the message queue to be sent back to the message
984 * handler once all previous commands have been executed.
Jason Sams455d6442013-02-05 19:20:18 -0800985 *
986 * @param id
987 * @param data
988 */
989 public void sendMessage(int id, int[] data) {
990 nContextSendMessage(id, data);
991 }
992
993 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -0700994 * The runtime error handler base class. An application should derive from this class
995 * if it wishes to install an error handler. When errors occur at runtime,
996 * the fields in this class will be filled, and the run method will be called.
Jason Sams27676fe2010-11-10 17:00:59 -0800997 *
998 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800999 public static class RSErrorHandler implements Runnable {
Jason Sams1c415172010-11-08 17:06:46 -08001000 protected String mErrorMessage;
1001 protected int mErrorNum;
1002 public void run() {
1003 }
1004 }
Jason Sams27676fe2010-11-10 17:00:59 -08001005
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001006 /**
Jason Sams27676fe2010-11-10 17:00:59 -08001007 * Application Error handler. All runtime errors will be dispatched to the
1008 * instance of RSAsyncError set here. If this field is null a
Tim Murrayc11e25c2013-04-09 11:01:01 -07001009 * {@link RSRuntimeException} will instead be thrown with details about the error.
Jason Sams27676fe2010-11-10 17:00:59 -08001010 * This will cause program termaination.
1011 *
1012 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001013 RSErrorHandler mErrorCallback = null;
1014
1015 public void setErrorHandler(RSErrorHandler msg) {
1016 mErrorCallback = msg;
1017 }
1018 public RSErrorHandler getErrorHandler() {
1019 return mErrorCallback;
1020 }
Jason Sams1c415172010-11-08 17:06:46 -08001021
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001022 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001023 * RenderScript worker thread priority enumeration. The default value is
1024 * NORMAL. Applications wishing to do background processing should set
1025 * their priority to LOW to avoid starving forground processes.
Jason Sams27676fe2010-11-10 17:00:59 -08001026 */
Jason Sams7d787b42009-11-15 12:14:26 -08001027 public enum Priority {
Glenn Kasten260c77a2011-06-01 17:25:54 -07001028 LOW (Process.THREAD_PRIORITY_BACKGROUND + (5 * Process.THREAD_PRIORITY_LESS_FAVORABLE)),
1029 NORMAL (Process.THREAD_PRIORITY_DISPLAY);
Jason Sams7d787b42009-11-15 12:14:26 -08001030
1031 int mID;
1032 Priority(int id) {
1033 mID = id;
1034 }
1035 }
1036
Jason Sams678cc7f2014-03-05 16:09:02 -08001037 void validateObject(BaseObj o) {
1038 if (o != null) {
1039 if (o.mRS != this) {
1040 throw new RSIllegalArgumentException("Attempting to use an object across contexts.");
1041 }
1042 }
1043 }
1044
Jason Sams771bebb2009-12-07 12:40:12 -08001045 void validate() {
1046 if (mContext == 0) {
Jason Samsc1d62102010-11-04 14:32:19 -07001047 throw new RSInvalidStateException("Calling RS with no Context active.");
Jason Sams771bebb2009-12-07 12:40:12 -08001048 }
1049 }
1050
Jason Sams27676fe2010-11-10 17:00:59 -08001051
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001052 /**
Jason Sams27676fe2010-11-10 17:00:59 -08001053 * Change the priority of the worker threads for this context.
1054 *
1055 * @param p New priority to be set.
1056 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001057 public void setPriority(Priority p) {
Jason Sams5dbfe932010-01-27 14:41:43 -08001058 validate();
Jason Sams7d787b42009-11-15 12:14:26 -08001059 nContextSetPriority(p.mID);
1060 }
1061
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001062 static class MessageThread extends Thread {
Jason Sams516c3192009-10-06 13:58:47 -07001063 RenderScript mRS;
1064 boolean mRun = true;
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001065 int[] mAuxData = new int[2];
Jason Sams1c415172010-11-08 17:06:46 -08001066
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001067 static final int RS_MESSAGE_TO_CLIENT_NONE = 0;
1068 static final int RS_MESSAGE_TO_CLIENT_EXCEPTION = 1;
1069 static final int RS_MESSAGE_TO_CLIENT_RESIZE = 2;
1070 static final int RS_MESSAGE_TO_CLIENT_ERROR = 3;
1071 static final int RS_MESSAGE_TO_CLIENT_USER = 4;
Jason Sams739c8262013-04-11 18:07:52 -07001072 static final int RS_MESSAGE_TO_CLIENT_NEW_BUFFER = 5;
Jason Sams516c3192009-10-06 13:58:47 -07001073
Stephen Hines42028a82013-04-17 19:22:01 -07001074 static final int RS_ERROR_FATAL_DEBUG = 0x0800;
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001075 static final int RS_ERROR_FATAL_UNKNOWN = 0x1000;
Jason Samsadd9d962010-11-22 16:20:16 -08001076
Jason Sams516c3192009-10-06 13:58:47 -07001077 MessageThread(RenderScript rs) {
1078 super("RSMessageThread");
1079 mRS = rs;
1080
1081 }
1082
1083 public void run() {
1084 // This function is a temporary solution. The final solution will
1085 // used typed allocations where the message id is the type indicator.
1086 int[] rbuf = new int[16];
Jason Sams2e1872f2010-08-17 16:25:41 -07001087 mRS.nContextInitToClient(mRS.mContext);
Jason Sams516c3192009-10-06 13:58:47 -07001088 while(mRun) {
Jason Sams1d45c472010-08-25 14:31:48 -07001089 rbuf[0] = 0;
Jason Samsedbfabd2011-05-17 15:01:29 -07001090 int msg = mRS.nContextPeekMessage(mRS.mContext, mAuxData);
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001091 int size = mAuxData[1];
1092 int subID = mAuxData[0];
Jason Sams1c415172010-11-08 17:06:46 -08001093
1094 if (msg == RS_MESSAGE_TO_CLIENT_USER) {
1095 if ((size>>2) >= rbuf.length) {
1096 rbuf = new int[(size + 3) >> 2];
1097 }
Jason Samsedbfabd2011-05-17 15:01:29 -07001098 if (mRS.nContextGetUserMessage(mRS.mContext, rbuf) !=
1099 RS_MESSAGE_TO_CLIENT_USER) {
Tim Murrayc11e25c2013-04-09 11:01:01 -07001100 throw new RSDriverException("Error processing message from RenderScript.");
Jason Samsedbfabd2011-05-17 15:01:29 -07001101 }
Jason Sams1c415172010-11-08 17:06:46 -08001102
1103 if(mRS.mMessageCallback != null) {
1104 mRS.mMessageCallback.mData = rbuf;
1105 mRS.mMessageCallback.mID = subID;
1106 mRS.mMessageCallback.mLength = size;
1107 mRS.mMessageCallback.run();
Jason Sams1d45c472010-08-25 14:31:48 -07001108 } else {
Jason Sams1c415172010-11-08 17:06:46 -08001109 throw new RSInvalidStateException("Received a message from the script with no message handler installed.");
Jason Sams516c3192009-10-06 13:58:47 -07001110 }
Stephen Hinesab98bb62010-09-24 14:38:30 -07001111 continue;
Jason Sams516c3192009-10-06 13:58:47 -07001112 }
Jason Sams1c415172010-11-08 17:06:46 -08001113
1114 if (msg == RS_MESSAGE_TO_CLIENT_ERROR) {
1115 String e = mRS.nContextGetErrorMessage(mRS.mContext);
1116
Stephen Hines42028a82013-04-17 19:22:01 -07001117 // Throw RSRuntimeException under the following conditions:
1118 //
1119 // 1) It is an unknown fatal error.
1120 // 2) It is a debug fatal error, and we are not in a
1121 // debug context.
1122 // 3) It is a debug fatal error, and we do not have an
1123 // error callback.
1124 if (subID >= RS_ERROR_FATAL_UNKNOWN ||
1125 (subID >= RS_ERROR_FATAL_DEBUG &&
1126 (mRS.mContextType != ContextType.DEBUG ||
1127 mRS.mErrorCallback == null))) {
Jason Samsadd9d962010-11-22 16:20:16 -08001128 throw new RSRuntimeException("Fatal error " + subID + ", details: " + e);
1129 }
1130
Jason Sams1c415172010-11-08 17:06:46 -08001131 if(mRS.mErrorCallback != null) {
1132 mRS.mErrorCallback.mErrorMessage = e;
1133 mRS.mErrorCallback.mErrorNum = subID;
1134 mRS.mErrorCallback.run();
1135 } else {
Jason Samsa4b7bc92013-02-05 15:05:39 -08001136 android.util.Log.e(LOG_TAG, "non fatal RS error, " + e);
Stephen Hinesbe74bdd2012-02-03 15:29:36 -08001137 // Do not throw here. In these cases, we do not have
1138 // a fatal error.
Jason Sams1c415172010-11-08 17:06:46 -08001139 }
1140 continue;
1141 }
1142
Jason Sams739c8262013-04-11 18:07:52 -07001143 if (msg == RS_MESSAGE_TO_CLIENT_NEW_BUFFER) {
1144 Allocation.sendBufferNotification(subID);
1145 continue;
1146 }
1147
Jason Sams1c415172010-11-08 17:06:46 -08001148 // 2: teardown.
1149 // But we want to avoid starving other threads during
1150 // teardown by yielding until the next line in the destructor
1151 // can execute to set mRun = false
1152 try {
1153 sleep(1, 0);
1154 } catch(InterruptedException e) {
Jason Sams516c3192009-10-06 13:58:47 -07001155 }
Jason Sams516c3192009-10-06 13:58:47 -07001156 }
Tim Murrayda67deb2013-05-09 12:02:50 -07001157 //Log.d(LOG_TAG, "MessageThread exiting.");
Jason Sams516c3192009-10-06 13:58:47 -07001158 }
1159 }
1160
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001161 RenderScript(Context ctx) {
Stephen Hines42028a82013-04-17 19:22:01 -07001162 mContextType = ContextType.NORMAL;
Jason Sams1a4e1f32012-02-24 17:51:24 -08001163 if (ctx != null) {
1164 mApplicationContext = ctx.getApplicationContext();
1165 }
Tim Murray504abb32014-01-07 11:13:56 -08001166 mRWLock = new ReentrantReadWriteLock();
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001167 }
1168
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001169 /**
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001170 * Gets the application context associated with the RenderScript context.
1171 *
1172 * @return The application context.
1173 */
1174 public final Context getApplicationContext() {
1175 return mApplicationContext;
Jack Palevich60aa3ea2009-05-26 13:45:08 -07001176 }
1177
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001178 /**
Jason Samsadd26dc2013-02-22 18:43:45 -08001179 * @hide
1180 */
1181 public static RenderScript create(Context ctx, int sdkVersion) {
1182 return create(ctx, sdkVersion, ContextType.NORMAL);
1183 }
1184
1185 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001186 * Create a RenderScript context.
Jason Sams27676fe2010-11-10 17:00:59 -08001187 *
Jason Sams1a4e1f32012-02-24 17:51:24 -08001188 * @hide
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001189 * @param ctx The context.
Jason Sams27676fe2010-11-10 17:00:59 -08001190 * @return RenderScript
1191 */
Jason Samsadd26dc2013-02-22 18:43:45 -08001192 public static RenderScript create(Context ctx, int sdkVersion, ContextType ct) {
Dan Morrille4d9a012013-03-28 18:10:43 -07001193 if (!sInitialized) {
1194 Log.e(LOG_TAG, "RenderScript.create() called when disabled; someone is likely to crash");
1195 return null;
1196 }
1197
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001198 RenderScript rs = new RenderScript(ctx);
Jason Sams704ff642010-02-09 16:05:07 -08001199
1200 rs.mDev = rs.nDeviceCreate();
Jason Samsadd26dc2013-02-22 18:43:45 -08001201 rs.mContext = rs.nContextCreate(rs.mDev, 0, sdkVersion, ct.mID);
Stephen Hines42028a82013-04-17 19:22:01 -07001202 rs.mContextType = ct;
Jason Sams26985362011-05-03 15:01:58 -07001203 if (rs.mContext == 0) {
1204 throw new RSDriverException("Failed to create RS context.");
1205 }
Jason Sams704ff642010-02-09 16:05:07 -08001206 rs.mMessageThread = new MessageThread(rs);
1207 rs.mMessageThread.start();
Jason Sams704ff642010-02-09 16:05:07 -08001208 return rs;
Jason Samsefd9b6fb2009-11-03 13:58:36 -08001209 }
1210
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001211 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001212 * Create a RenderScript context.
Jason Sams1a4e1f32012-02-24 17:51:24 -08001213 *
1214 * @param ctx The context.
1215 * @return RenderScript
1216 */
1217 public static RenderScript create(Context ctx) {
Jason Samsadd26dc2013-02-22 18:43:45 -08001218 return create(ctx, ContextType.NORMAL);
1219 }
1220
1221 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001222 * Create a RenderScript context.
Jason Samsadd26dc2013-02-22 18:43:45 -08001223 *
Jason Samsadd26dc2013-02-22 18:43:45 -08001224 *
1225 * @param ctx The context.
Jason Sams02d56d92013-04-12 16:40:50 -07001226 * @param ct The type of context to be created.
Jason Samsadd26dc2013-02-22 18:43:45 -08001227 * @return RenderScript
1228 */
1229 public static RenderScript create(Context ctx, ContextType ct) {
Jason Sams1a4e1f32012-02-24 17:51:24 -08001230 int v = ctx.getApplicationInfo().targetSdkVersion;
Jason Samsadd26dc2013-02-22 18:43:45 -08001231 return create(ctx, v, ct);
Jason Sams1a4e1f32012-02-24 17:51:24 -08001232 }
1233
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001234 /**
Jason Sams27676fe2010-11-10 17:00:59 -08001235 * Print the currently available debugging information about the state of
1236 * the RS context to the log.
1237 *
Jason Sams27676fe2010-11-10 17:00:59 -08001238 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001239 public void contextDump() {
Jason Sams5dbfe932010-01-27 14:41:43 -08001240 validate();
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001241 nContextDump(0);
Jason Sams715333b2009-11-17 17:26:46 -08001242 }
1243
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001244 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001245 * Wait for any pending asynchronous opeations (such as copies to a RS
1246 * allocation or RS script executions) to complete.
Jason Sams27676fe2010-11-10 17:00:59 -08001247 *
1248 */
Jason Sams96ed4cf2010-06-15 12:15:57 -07001249 public void finish() {
1250 nContextFinish();
1251 }
1252
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001253 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001254 * Destroys this RenderScript context. Once this function is called,
1255 * using this context or any objects belonging to this context is
1256 * illegal.
Jason Sams27676fe2010-11-10 17:00:59 -08001257 *
1258 */
Jason Samsf5b45962009-08-25 14:49:07 -07001259 public void destroy() {
Jason Sams5dbfe932010-01-27 14:41:43 -08001260 validate();
Tim Murray504abb32014-01-07 11:13:56 -08001261 nContextFinish();
1262
Jason Sams2e1872f2010-08-17 16:25:41 -07001263 nContextDeinitToClient(mContext);
Jason Sams516c3192009-10-06 13:58:47 -07001264 mMessageThread.mRun = false;
Jason Samsa8bf9422010-09-16 13:43:19 -07001265 try {
1266 mMessageThread.join();
1267 } catch(InterruptedException e) {
1268 }
Jason Sams516c3192009-10-06 13:58:47 -07001269
Jason Sams2e1872f2010-08-17 16:25:41 -07001270 nContextDestroy();
Jason Samsf5b45962009-08-25 14:49:07 -07001271
1272 nDeviceDestroy(mDev);
1273 mDev = 0;
1274 }
Jason Sams02fb2cb2009-05-28 15:37:57 -07001275
Jason Samsa9e7a052009-09-25 14:51:22 -07001276 boolean isAlive() {
1277 return mContext != 0;
1278 }
1279
Tim Murray7a629fa2013-11-19 12:45:54 -08001280 long safeID(BaseObj o) {
Jason Sams6b9dec02009-09-23 16:38:37 -07001281 if(o != null) {
Jason Samse07694b2012-04-03 15:36:36 -07001282 return o.getID(this);
Jason Samsd8e41612009-08-20 17:22:40 -07001283 }
Jason Sams6b9dec02009-09-23 16:38:37 -07001284 return 0;
Jack Palevich60aa3ea2009-05-26 13:45:08 -07001285 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -07001286}