blob: ea25f5896e00989388208fe102ec0c569ea0a6c8 [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
Jack Palevich60aa3ea2009-05-26 13:45:08 -070070 static {
71 sInitialized = false;
Dan Morrille4d9a012013-03-28 18:10:43 -070072 if (!SystemProperties.getBoolean("config.disable_renderscript", false)) {
73 try {
Tim Murray2f2472c2013-08-22 14:55:26 -070074 Class<?> vm_runtime = Class.forName("dalvik.system.VMRuntime");
75 Method get_runtime = vm_runtime.getDeclaredMethod("getRuntime");
76 sRuntime = get_runtime.invoke(null);
77 registerNativeAllocation = vm_runtime.getDeclaredMethod("registerNativeAllocation", Integer.TYPE);
78 registerNativeFree = vm_runtime.getDeclaredMethod("registerNativeFree", Integer.TYPE);
79 } catch (Exception e) {
80 Log.e(LOG_TAG, "Error loading GC methods: " + e);
81 throw new RSRuntimeException("Error loading GC methods: " + e);
82 }
83 try {
Dan Morrille4d9a012013-03-28 18:10:43 -070084 System.loadLibrary("rs_jni");
85 _nInit();
86 sInitialized = true;
87 } catch (UnsatisfiedLinkError e) {
88 Log.e(LOG_TAG, "Error loading RS jni library: " + e);
89 throw new RSRuntimeException("Error loading RS jni library: " + e);
90 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -070091 }
92 }
93
Jason Sams2e1872f2010-08-17 16:25:41 -070094 // Non-threadsafe functions.
Tim Murraya78e9ad2013-11-15 13:08:30 -080095 native long nDeviceCreate();
96 native void nDeviceDestroy(long dev);
97 native void nDeviceSetConfig(long dev, int param, int value);
98 native int nContextGetUserMessage(long con, int[] data);
99 native String nContextGetErrorMessage(long con);
100 native int nContextPeekMessage(long con, int[] subID);
101 native void nContextInitToClient(long con);
102 native void nContextDeinitToClient(long con);
Jason Sams3eaa3382009-06-10 15:04:38 -0700103
Stephen Hines7d25a822013-04-09 23:51:56 -0700104 static File mCacheDir;
Jason Samsa6f338c2012-02-24 16:22:16 -0800105
Tim Murray67cc2d02014-02-06 16:39:38 -0800106 // this should be a monotonically increasing ID
107 // used in conjunction with the API version of a device
108 static final long sMinorID = 1;
109
110 /**
111 * Returns an identifier that can be used to identify a particular
112 * minor version of RS.
113 *
114 * @hide
115 */
116 public static long getMinorID() {
117 return sMinorID;
118 }
119
Jason Samsa6f338c2012-02-24 16:22:16 -0800120 /**
121 * Sets the directory to use as a persistent storage for the
122 * renderscript object file cache.
123 *
124 * @hide
125 * @param cacheDir A directory the current process can write to
126 */
Jason Samsa6f338c2012-02-24 16:22:16 -0800127 public static void setupDiskCache(File cacheDir) {
Dan Morrille4d9a012013-03-28 18:10:43 -0700128 if (!sInitialized) {
129 Log.e(LOG_TAG, "RenderScript.setupDiskCache() called when disabled");
130 return;
131 }
132
Stephen Hines7d25a822013-04-09 23:51:56 -0700133 // Defer creation of cache path to nScriptCCreate().
134 mCacheDir = cacheDir;
Jason Samsa6f338c2012-02-24 16:22:16 -0800135 }
136
Jason Sams02d56d92013-04-12 16:40:50 -0700137 /**
138 * ContextType specifies the specific type of context to be created.
139 *
140 */
Jason Samsadd26dc2013-02-22 18:43:45 -0800141 public enum ContextType {
Jason Sams02d56d92013-04-12 16:40:50 -0700142 /**
143 * NORMAL context, this is the default and what shipping apps should
144 * use.
145 */
Jason Samsadd26dc2013-02-22 18:43:45 -0800146 NORMAL (0),
Jason Sams02d56d92013-04-12 16:40:50 -0700147
148 /**
149 * DEBUG context, perform extra runtime checks to validate the
150 * kernels and APIs are being used as intended. Get and SetElementAt
151 * will be bounds checked in this mode.
152 */
Jason Samsadd26dc2013-02-22 18:43:45 -0800153 DEBUG (1),
Jason Sams02d56d92013-04-12 16:40:50 -0700154
155 /**
156 * PROFILE context, Intended to be used once the first time an
157 * application is run on a new device. This mode allows the runtime to
158 * do additional testing and performance tuning.
159 */
Jason Samsadd26dc2013-02-22 18:43:45 -0800160 PROFILE (2);
161
162 int mID;
163 ContextType(int id) {
164 mID = id;
165 }
166 }
Jason Sams718cd1f2009-12-23 14:35:29 -0800167
Stephen Hines42028a82013-04-17 19:22:01 -0700168 ContextType mContextType;
Tim Murray504abb32014-01-07 11:13:56 -0800169 ReentrantReadWriteLock mRWLock;
Stephen Hines42028a82013-04-17 19:22:01 -0700170
Jason Sams2e1872f2010-08-17 16:25:41 -0700171 // Methods below are wrapped to protect the non-threadsafe
172 // lockless fifo.
Tim Murraya78e9ad2013-11-15 13:08:30 -0800173 native long rsnContextCreateGL(long dev, int ver, int sdkVer,
Jason Sams11c8af92010-10-13 15:31:10 -0700174 int colorMin, int colorPref,
175 int alphaMin, int alphaPref,
176 int depthMin, int depthPref,
177 int stencilMin, int stencilPref,
Alex Sakhartchouk2c74ad92011-03-16 19:28:25 -0700178 int samplesMin, int samplesPref, float samplesQ, int dpi);
Tim Murraya78e9ad2013-11-15 13:08:30 -0800179 synchronized long nContextCreateGL(long dev, int ver, int sdkVer,
Jason Sams11c8af92010-10-13 15:31:10 -0700180 int colorMin, int colorPref,
181 int alphaMin, int alphaPref,
182 int depthMin, int depthPref,
183 int stencilMin, int stencilPref,
Alex Sakhartchouk2c74ad92011-03-16 19:28:25 -0700184 int samplesMin, int samplesPref, float samplesQ, int dpi) {
Stephen Hines4382467a2011-08-01 15:02:34 -0700185 return rsnContextCreateGL(dev, ver, sdkVer, colorMin, colorPref,
Jason Sams11c8af92010-10-13 15:31:10 -0700186 alphaMin, alphaPref, depthMin, depthPref,
187 stencilMin, stencilPref,
Alex Sakhartchouk2c74ad92011-03-16 19:28:25 -0700188 samplesMin, samplesPref, samplesQ, dpi);
Jason Sams2e1872f2010-08-17 16:25:41 -0700189 }
Tim Murraya78e9ad2013-11-15 13:08:30 -0800190 native long rsnContextCreate(long dev, int ver, int sdkVer, int contextType);
191 synchronized long nContextCreate(long dev, int ver, int sdkVer, int contextType) {
Jason Samsadd26dc2013-02-22 18:43:45 -0800192 return rsnContextCreate(dev, ver, sdkVer, contextType);
Jason Sams2e1872f2010-08-17 16:25:41 -0700193 }
Tim Murraya78e9ad2013-11-15 13:08:30 -0800194 native void rsnContextDestroy(long con);
Jason Sams2e1872f2010-08-17 16:25:41 -0700195 synchronized void nContextDestroy() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800196 validate();
Tim Murray504abb32014-01-07 11:13:56 -0800197
198 // take teardown lock
199 // teardown lock can only be taken when no objects are being destroyed
200 ReentrantReadWriteLock.WriteLock wlock = mRWLock.writeLock();
201 wlock.lock();
202
203 long curCon = mContext;
204 // context is considered dead as of this point
205 mContext = 0;
206
207 wlock.unlock();
208 rsnContextDestroy(curCon);
Jason Sams2e1872f2010-08-17 16:25:41 -0700209 }
Tim Murraya78e9ad2013-11-15 13:08:30 -0800210 native void rsnContextSetSurface(long con, int w, int h, Surface sur);
Jason Sams2e1872f2010-08-17 16:25:41 -0700211 synchronized void nContextSetSurface(int w, int h, Surface sur) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800212 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700213 rsnContextSetSurface(mContext, w, h, sur);
214 }
Tim Murraya78e9ad2013-11-15 13:08:30 -0800215 native void rsnContextSetSurfaceTexture(long con, int w, int h, SurfaceTexture sur);
Jason Samsfaa32b32011-06-20 16:58:04 -0700216 synchronized void nContextSetSurfaceTexture(int w, int h, SurfaceTexture sur) {
217 validate();
218 rsnContextSetSurfaceTexture(mContext, w, h, sur);
219 }
Tim Murraya78e9ad2013-11-15 13:08:30 -0800220 native void rsnContextSetPriority(long con, int p);
Jason Sams2e1872f2010-08-17 16:25:41 -0700221 synchronized void nContextSetPriority(int p) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800222 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700223 rsnContextSetPriority(mContext, p);
224 }
Tim Murraya78e9ad2013-11-15 13:08:30 -0800225 native void rsnContextDump(long con, int bits);
Jason Sams2e1872f2010-08-17 16:25:41 -0700226 synchronized void nContextDump(int bits) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800227 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700228 rsnContextDump(mContext, bits);
229 }
Tim Murraya78e9ad2013-11-15 13:08:30 -0800230 native void rsnContextFinish(long con);
Jason Sams2e1872f2010-08-17 16:25:41 -0700231 synchronized void nContextFinish() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800232 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700233 rsnContextFinish(mContext);
234 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700235
Tim Murraya78e9ad2013-11-15 13:08:30 -0800236 native void rsnContextSendMessage(long con, int id, int[] data);
Jason Sams455d6442013-02-05 19:20:18 -0800237 synchronized void nContextSendMessage(int id, int[] data) {
238 validate();
239 rsnContextSendMessage(mContext, id, data);
240 }
241
Narayan Kamath78c0ce52014-03-19 10:15:51 +0000242 native void rsnContextBindRootScript(long con, long script);
243 synchronized void nContextBindRootScript(long script) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800244 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700245 rsnContextBindRootScript(mContext, script);
246 }
Tim Murraya78e9ad2013-11-15 13:08:30 -0800247 native void rsnContextBindSampler(long con, int sampler, int slot);
Jason Sams2e1872f2010-08-17 16:25:41 -0700248 synchronized void nContextBindSampler(int sampler, int slot) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800249 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700250 rsnContextBindSampler(mContext, sampler, slot);
251 }
Narayan Kamath78c0ce52014-03-19 10:15:51 +0000252 native void rsnContextBindProgramStore(long con, long pfs);
253 synchronized void nContextBindProgramStore(long pfs) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800254 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700255 rsnContextBindProgramStore(mContext, pfs);
256 }
Narayan Kamath78c0ce52014-03-19 10:15:51 +0000257 native void rsnContextBindProgramFragment(long con, long pf);
258 synchronized void nContextBindProgramFragment(long pf) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800259 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700260 rsnContextBindProgramFragment(mContext, pf);
261 }
Narayan Kamath78c0ce52014-03-19 10:15:51 +0000262 native void rsnContextBindProgramVertex(long con, long pv);
263 synchronized void nContextBindProgramVertex(long pv) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800264 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700265 rsnContextBindProgramVertex(mContext, pv);
266 }
Narayan Kamath78c0ce52014-03-19 10:15:51 +0000267 native void rsnContextBindProgramRaster(long con, long pr);
268 synchronized void nContextBindProgramRaster(long pr) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800269 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700270 rsnContextBindProgramRaster(mContext, pr);
271 }
Tim Murraya78e9ad2013-11-15 13:08:30 -0800272 native void rsnContextPause(long con);
Jason Sams2e1872f2010-08-17 16:25:41 -0700273 synchronized void nContextPause() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800274 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700275 rsnContextPause(mContext);
276 }
Tim Murraya78e9ad2013-11-15 13:08:30 -0800277 native void rsnContextResume(long con);
Jason Sams2e1872f2010-08-17 16:25:41 -0700278 synchronized void nContextResume() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800279 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700280 rsnContextResume(mContext);
281 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700282
Tim Murray7a629fa2013-11-19 12:45:54 -0800283 native void rsnAssignName(long con, long obj, byte[] name);
284 synchronized void nAssignName(long obj, byte[] name) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800285 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700286 rsnAssignName(mContext, obj, name);
287 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800288 native String rsnGetName(long con, long obj);
289 synchronized String nGetName(long obj) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800290 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700291 return rsnGetName(mContext, obj);
292 }
Tim Murray504abb32014-01-07 11:13:56 -0800293
294 // nObjDestroy is explicitly _not_ synchronous to prevent crashes in finalizers
Tim Murray7a629fa2013-11-19 12:45:54 -0800295 native void rsnObjDestroy(long con, long id);
Tim Murray504abb32014-01-07 11:13:56 -0800296 void nObjDestroy(long id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800297 // There is a race condition here. The calling code may be run
298 // by the gc while teardown is occuring. This protects againts
299 // deleting dead objects.
300 if (mContext != 0) {
301 rsnObjDestroy(mContext, id);
302 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700303 }
Jason Samsfe08d992009-05-27 14:45:32 -0700304
Tim Murray7a629fa2013-11-19 12:45:54 -0800305 native long rsnElementCreate(long con, long type, int kind, boolean norm, int vecSize);
306 synchronized long nElementCreate(long type, int kind, boolean norm, int vecSize) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800307 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700308 return rsnElementCreate(mContext, type, kind, norm, vecSize);
309 }
Ashok Bhat98071552014-02-12 09:54:43 +0000310 native long rsnElementCreate2(long con, long[] elements, String[] names, int[] arraySizes);
311 synchronized long nElementCreate2(long[] elements, String[] names, int[] arraySizes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800312 validate();
Jason Sams70d4e502010-09-02 17:35:23 -0700313 return rsnElementCreate2(mContext, elements, names, arraySizes);
Jason Sams2e1872f2010-08-17 16:25:41 -0700314 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800315 native void rsnElementGetNativeData(long con, long id, int[] elementData);
316 synchronized void nElementGetNativeData(long id, int[] elementData) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800317 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700318 rsnElementGetNativeData(mContext, id, elementData);
319 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800320 native void rsnElementGetSubElements(long con, long id,
Ashok Bhat98071552014-02-12 09:54:43 +0000321 long[] IDs, String[] names, int[] arraySizes);
322 synchronized void nElementGetSubElements(long id, long[] IDs, String[] names, int[] arraySizes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800323 validate();
Alex Sakhartchouk7d5f5e72011-10-18 11:08:31 -0700324 rsnElementGetSubElements(mContext, id, IDs, names, arraySizes);
Jason Sams2e1872f2010-08-17 16:25:41 -0700325 }
Jason Sams768bc022009-09-21 19:41:04 -0700326
Tim Murray7a629fa2013-11-19 12:45:54 -0800327 native long rsnTypeCreate(long con, long eid, int x, int y, int z, boolean mips, boolean faces, int yuv);
328 synchronized long nTypeCreate(long eid, int x, int y, int z, boolean mips, boolean faces, int yuv) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800329 validate();
Jason Samsb109cc72013-01-07 18:20:12 -0800330 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv);
Jason Sams2e1872f2010-08-17 16:25:41 -0700331 }
Ashok Bhat98071552014-02-12 09:54:43 +0000332 native void rsnTypeGetNativeData(long con, long id, long[] typeData);
333 synchronized void nTypeGetNativeData(long id, long[] typeData) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800334 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700335 rsnTypeGetNativeData(mContext, id, typeData);
336 }
Jason Sams768bc022009-09-21 19:41:04 -0700337
Ashok Bhat98071552014-02-12 09:54:43 +0000338 native long rsnAllocationCreateTyped(long con, long type, int mip, int usage, long pointer);
339 synchronized long nAllocationCreateTyped(long type, int mip, int usage, long pointer) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800340 validate();
Jason Sams857d0c72011-11-23 15:02:15 -0800341 return rsnAllocationCreateTyped(mContext, type, mip, usage, pointer);
Jason Sams2e1872f2010-08-17 16:25:41 -0700342 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800343 native long rsnAllocationCreateFromBitmap(long con, long type, int mip, Bitmap bmp, int usage);
344 synchronized long nAllocationCreateFromBitmap(long type, int mip, Bitmap bmp, int usage) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800345 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800346 return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage);
Alex Sakhartchouk26ae3902010-10-11 12:35:15 -0700347 }
Tim Murraya3145512012-12-04 17:59:29 -0800348
Tim Murray7a629fa2013-11-19 12:45:54 -0800349 native long rsnAllocationCreateBitmapBackedAllocation(long con, long type, int mip, Bitmap bmp, int usage);
350 synchronized long nAllocationCreateBitmapBackedAllocation(long type, int mip, Bitmap bmp, int usage) {
Tim Murraya3145512012-12-04 17:59:29 -0800351 validate();
352 return rsnAllocationCreateBitmapBackedAllocation(mContext, type, mip, bmp, usage);
353 }
354
Tim Murray7a629fa2013-11-19 12:45:54 -0800355 native long rsnAllocationCubeCreateFromBitmap(long con, long type, int mip, Bitmap bmp, int usage);
356 synchronized long nAllocationCubeCreateFromBitmap(long type, int mip, Bitmap bmp, int usage) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800357 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800358 return rsnAllocationCubeCreateFromBitmap(mContext, type, mip, bmp, usage);
Alex Sakhartchouk67f2e442010-11-18 15:22:43 -0800359 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800360 native long rsnAllocationCreateBitmapRef(long con, long type, Bitmap bmp);
361 synchronized long nAllocationCreateBitmapRef(long type, Bitmap bmp) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800362 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700363 return rsnAllocationCreateBitmapRef(mContext, type, bmp);
364 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800365 native long rsnAllocationCreateFromAssetStream(long con, int mips, int assetStream, int usage);
366 synchronized long nAllocationCreateFromAssetStream(int mips, int assetStream, int usage) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800367 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800368 return rsnAllocationCreateFromAssetStream(mContext, mips, assetStream, usage);
369 }
370
Tim Murray7a629fa2013-11-19 12:45:54 -0800371 native void rsnAllocationCopyToBitmap(long con, long alloc, Bitmap bmp);
372 synchronized void nAllocationCopyToBitmap(long alloc, Bitmap bmp) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800373 validate();
Jason Sams4ef66502010-12-10 16:03:15 -0800374 rsnAllocationCopyToBitmap(mContext, alloc, bmp);
375 }
376
377
Tim Murray7a629fa2013-11-19 12:45:54 -0800378 native void rsnAllocationSyncAll(long con, long alloc, int src);
379 synchronized void nAllocationSyncAll(long alloc, int src) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800380 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800381 rsnAllocationSyncAll(mContext, alloc, src);
382 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800383 native Surface rsnAllocationGetSurface(long con, long alloc);
384 synchronized Surface nAllocationGetSurface(long alloc) {
Jason Sams615e7ce2012-01-13 14:01:20 -0800385 validate();
Jason Sams72226e02013-02-22 12:45:54 -0800386 return rsnAllocationGetSurface(mContext, alloc);
Jason Samsfe1d5ff2012-03-23 11:47:26 -0700387 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800388 native void rsnAllocationSetSurface(long con, long alloc, Surface sur);
389 synchronized void nAllocationSetSurface(long alloc, Surface sur) {
Jason Sams163766c2012-02-15 12:04:24 -0800390 validate();
Jason Samsfb9aa9f2012-03-28 15:30:07 -0700391 rsnAllocationSetSurface(mContext, alloc, sur);
Jason Sams163766c2012-02-15 12:04:24 -0800392 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800393 native void rsnAllocationIoSend(long con, long alloc);
394 synchronized void nAllocationIoSend(long alloc) {
Jason Sams163766c2012-02-15 12:04:24 -0800395 validate();
396 rsnAllocationIoSend(mContext, alloc);
397 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800398 native void rsnAllocationIoReceive(long con, long alloc);
399 synchronized void nAllocationIoReceive(long alloc) {
Jason Sams163766c2012-02-15 12:04:24 -0800400 validate();
401 rsnAllocationIoReceive(mContext, alloc);
402 }
403
Jason Sams615e7ce2012-01-13 14:01:20 -0800404
Tim Murray7a629fa2013-11-19 12:45:54 -0800405 native void rsnAllocationGenerateMipmaps(long con, long alloc);
406 synchronized void nAllocationGenerateMipmaps(long alloc) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800407 validate();
Jason Samsf7086092011-01-12 13:28:37 -0800408 rsnAllocationGenerateMipmaps(mContext, alloc);
409 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800410 native void rsnAllocationCopyFromBitmap(long con, long alloc, Bitmap bmp);
411 synchronized void nAllocationCopyFromBitmap(long alloc, Bitmap bmp) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800412 validate();
Jason Sams4ef66502010-12-10 16:03:15 -0800413 rsnAllocationCopyFromBitmap(mContext, alloc, bmp);
Jason Sams2e1872f2010-08-17 16:25:41 -0700414 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700415
Jason Sams49a05d72010-12-29 14:31:29 -0800416
Tim Murray7a629fa2013-11-19 12:45:54 -0800417 native void rsnAllocationData1D(long con, long id, int off, int mip, int count, Object d, int sizeBytes, int dt);
418 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 -0800419 validate();
Jason Sams6fcf2e12013-11-06 11:22:02 -0800420 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes, dt.mID);
Jason Sams2e1872f2010-08-17 16:25:41 -0700421 }
Alex Sakhartchoukaae74ad2010-06-04 10:06:50 -0700422
Tim Murray7a629fa2013-11-19 12:45:54 -0800423 native void rsnAllocationElementData1D(long con,long id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes);
424 synchronized void nAllocationElementData1D(long id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800425 validate();
Jason Sams49a05d72010-12-29 14:31:29 -0800426 rsnAllocationElementData1D(mContext, id, xoff, mip, compIdx, d, sizeBytes);
Jason Sams2e1872f2010-08-17 16:25:41 -0700427 }
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -0700428
Tim Murraya78e9ad2013-11-15 13:08:30 -0800429 native void rsnAllocationData2D(long con,
Tim Murray7a629fa2013-11-19 12:45:54 -0800430 long dstAlloc, int dstXoff, int dstYoff,
Alex Sakhartchouk304b1f52011-06-14 11:13:19 -0700431 int dstMip, int dstFace,
432 int width, int height,
Tim Murray7a629fa2013-11-19 12:45:54 -0800433 long srcAlloc, int srcXoff, int srcYoff,
Alex Sakhartchouk304b1f52011-06-14 11:13:19 -0700434 int srcMip, int srcFace);
Tim Murray7a629fa2013-11-19 12:45:54 -0800435 synchronized void nAllocationData2D(long dstAlloc, int dstXoff, int dstYoff,
Alex Sakhartchouk304b1f52011-06-14 11:13:19 -0700436 int dstMip, int dstFace,
437 int width, int height,
Tim Murray7a629fa2013-11-19 12:45:54 -0800438 long srcAlloc, int srcXoff, int srcYoff,
Alex Sakhartchouk304b1f52011-06-14 11:13:19 -0700439 int srcMip, int srcFace) {
440 validate();
441 rsnAllocationData2D(mContext,
442 dstAlloc, dstXoff, dstYoff,
443 dstMip, dstFace,
444 width, height,
445 srcAlloc, srcXoff, srcYoff,
446 srcMip, srcFace);
447 }
448
Tim Murray7a629fa2013-11-19 12:45:54 -0800449 native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face,
Jason Sams6fcf2e12013-11-06 11:22:02 -0800450 int w, int h, Object d, int sizeBytes, int dt);
Tim Murray7a629fa2013-11-19 12:45:54 -0800451 synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face,
Jason Sams6fcf2e12013-11-06 11:22:02 -0800452 int w, int h, Object d, int sizeBytes, Element.DataType dt) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800453 validate();
Jason Sams6fcf2e12013-11-06 11:22:02 -0800454 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes, dt.mID);
Jason Sams2e1872f2010-08-17 16:25:41 -0700455 }
Jason Sams29868df2013-11-06 15:08:07 -0800456
Tim Murray7a629fa2013-11-19 12:45:54 -0800457 native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face, Bitmap b);
458 synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face, Bitmap b) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800459 validate();
Jason Samsfa445b92011-01-07 17:00:07 -0800460 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, b);
461 }
Jason Sams49a05d72010-12-29 14:31:29 -0800462
Tim Murraya78e9ad2013-11-15 13:08:30 -0800463 native void rsnAllocationData3D(long con,
Tim Murray7a629fa2013-11-19 12:45:54 -0800464 long dstAlloc, int dstXoff, int dstYoff, int dstZoff,
Jason Samsb05d6892013-04-09 15:59:24 -0700465 int dstMip,
466 int width, int height, int depth,
Tim Murray7a629fa2013-11-19 12:45:54 -0800467 long srcAlloc, int srcXoff, int srcYoff, int srcZoff,
Jason Samsb05d6892013-04-09 15:59:24 -0700468 int srcMip);
Tim Murray7a629fa2013-11-19 12:45:54 -0800469 synchronized void nAllocationData3D(long dstAlloc, int dstXoff, int dstYoff, int dstZoff,
Jason Samsb05d6892013-04-09 15:59:24 -0700470 int dstMip,
471 int width, int height, int depth,
Tim Murray7a629fa2013-11-19 12:45:54 -0800472 long srcAlloc, int srcXoff, int srcYoff, int srcZoff,
Jason Samsb05d6892013-04-09 15:59:24 -0700473 int srcMip) {
474 validate();
475 rsnAllocationData3D(mContext,
476 dstAlloc, dstXoff, dstYoff, dstZoff,
477 dstMip, width, height, depth,
478 srcAlloc, srcXoff, srcYoff, srcZoff, srcMip);
479 }
480
Tim Murray7a629fa2013-11-19 12:45:54 -0800481 native void rsnAllocationData3D(long con, long id, int xoff, int yoff, int zoff, int mip,
Jason Sams6fcf2e12013-11-06 11:22:02 -0800482 int w, int h, int depth, Object d, int sizeBytes, int dt);
Tim Murray7a629fa2013-11-19 12:45:54 -0800483 synchronized void nAllocationData3D(long id, int xoff, int yoff, int zoff, int mip,
Jason Sams6fcf2e12013-11-06 11:22:02 -0800484 int w, int h, int depth, Object d, int sizeBytes, Element.DataType dt) {
Jason Samsb05d6892013-04-09 15:59:24 -0700485 validate();
Jason Sams6fcf2e12013-11-06 11:22:02 -0800486 rsnAllocationData3D(mContext, id, xoff, yoff, zoff, mip, w, h, depth, d, sizeBytes, dt.mID);
Jason Samsb05d6892013-04-09 15:59:24 -0700487 }
Jason Samsb05d6892013-04-09 15:59:24 -0700488
Tim Murray7a629fa2013-11-19 12:45:54 -0800489 native void rsnAllocationRead(long con, long id, Object d, int dt);
490 synchronized void nAllocationRead(long id, Object d, Element.DataType dt) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800491 validate();
Jason Sams29868df2013-11-06 15:08:07 -0800492 rsnAllocationRead(mContext, id, d, dt.mID);
Jason Samsfa445b92011-01-07 17:00:07 -0800493 }
Jason Sams29868df2013-11-06 15:08:07 -0800494
Tim Murray7a629fa2013-11-19 12:45:54 -0800495 native void rsnAllocationRead1D(long con, long id, int off, int mip, int count, Object d,
Jason Sams29868df2013-11-06 15:08:07 -0800496 int sizeBytes, int dt);
Tim Murray7a629fa2013-11-19 12:45:54 -0800497 synchronized void nAllocationRead1D(long id, int off, int mip, int count, Object d,
Jason Sams29868df2013-11-06 15:08:07 -0800498 int sizeBytes, Element.DataType dt) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800499 validate();
Jason Sams29868df2013-11-06 15:08:07 -0800500 rsnAllocationRead1D(mContext, id, off, mip, count, d, sizeBytes, dt.mID);
Jason Samsfa445b92011-01-07 17:00:07 -0800501 }
Jason Sams29868df2013-11-06 15:08:07 -0800502
Tim Murray7a629fa2013-11-19 12:45:54 -0800503 native void rsnAllocationRead2D(long con, long id, int xoff, int yoff, int mip, int face,
Jason Sams29868df2013-11-06 15:08:07 -0800504 int w, int h, Object d, int sizeBytes, int dt);
Tim Murray7a629fa2013-11-19 12:45:54 -0800505 synchronized void nAllocationRead2D(long id, int xoff, int yoff, int mip, int face,
Jason Sams29868df2013-11-06 15:08:07 -0800506 int w, int h, Object d, int sizeBytes, Element.DataType dt) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800507 validate();
Jason Sams29868df2013-11-06 15:08:07 -0800508 rsnAllocationRead2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes, dt.mID);
Jason Sams2e1872f2010-08-17 16:25:41 -0700509 }
Jason Sams29868df2013-11-06 15:08:07 -0800510
Tim Murray7a629fa2013-11-19 12:45:54 -0800511 native long rsnAllocationGetType(long con, long id);
512 synchronized long nAllocationGetType(long id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800513 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700514 return rsnAllocationGetType(mContext, id);
515 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700516
Tim Murray7a629fa2013-11-19 12:45:54 -0800517 native void rsnAllocationResize1D(long con, long id, int dimX);
518 synchronized void nAllocationResize1D(long id, int dimX) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800519 validate();
Jason Sams5edc6082010-10-05 13:32:49 -0700520 rsnAllocationResize1D(mContext, id, dimX);
521 }
Jason Sams5edc6082010-10-05 13:32:49 -0700522
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000523 native long rsnFileA3DCreateFromAssetStream(long con, long assetStream);
524 synchronized long nFileA3DCreateFromAssetStream(long assetStream) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800525 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700526 return rsnFileA3DCreateFromAssetStream(mContext, assetStream);
527 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800528 native long rsnFileA3DCreateFromFile(long con, String path);
529 synchronized long nFileA3DCreateFromFile(String path) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800530 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800531 return rsnFileA3DCreateFromFile(mContext, path);
532 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800533 native long rsnFileA3DCreateFromAsset(long con, AssetManager mgr, String path);
534 synchronized long nFileA3DCreateFromAsset(AssetManager mgr, String path) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800535 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800536 return rsnFileA3DCreateFromAsset(mContext, mgr, path);
537 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800538 native int rsnFileA3DGetNumIndexEntries(long con, long fileA3D);
539 synchronized int nFileA3DGetNumIndexEntries(long fileA3D) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800540 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700541 return rsnFileA3DGetNumIndexEntries(mContext, fileA3D);
542 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800543 native void rsnFileA3DGetIndexEntries(long con, long fileA3D, int numEntries, int[] IDs, String[] names);
544 synchronized void nFileA3DGetIndexEntries(long fileA3D, int numEntries, int[] IDs, String[] names) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800545 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700546 rsnFileA3DGetIndexEntries(mContext, fileA3D, numEntries, IDs, names);
547 }
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000548 native long rsnFileA3DGetEntryByIndex(long con, long fileA3D, int index);
549 synchronized long nFileA3DGetEntryByIndex(long fileA3D, int index) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800550 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700551 return rsnFileA3DGetEntryByIndex(mContext, fileA3D, index);
552 }
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700553
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000554 native long rsnFontCreateFromFile(long con, String fileName, float size, int dpi);
555 synchronized long nFontCreateFromFile(String fileName, float size, int dpi) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800556 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700557 return rsnFontCreateFromFile(mContext, fileName, size, dpi);
558 }
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000559 native long rsnFontCreateFromAssetStream(long con, String name, float size, int dpi, long assetStream);
560 synchronized long nFontCreateFromAssetStream(String name, float size, int dpi, long assetStream) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800561 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800562 return rsnFontCreateFromAssetStream(mContext, name, size, dpi, assetStream);
563 }
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000564 native long rsnFontCreateFromAsset(long con, AssetManager mgr, String path, float size, int dpi);
565 synchronized long nFontCreateFromAsset(AssetManager mgr, String path, float size, int dpi) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800566 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800567 return rsnFontCreateFromAsset(mContext, mgr, path, size, dpi);
568 }
Jason Sams22534172009-08-04 16:58:20 -0700569
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700570
Tim Murray7a629fa2013-11-19 12:45:54 -0800571 native void rsnScriptBindAllocation(long con, long script, long alloc, int slot);
572 synchronized void nScriptBindAllocation(long script, long alloc, int slot) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800573 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700574 rsnScriptBindAllocation(mContext, script, alloc, slot);
575 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800576 native void rsnScriptSetTimeZone(long con, long script, byte[] timeZone);
577 synchronized void nScriptSetTimeZone(long script, byte[] timeZone) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800578 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700579 rsnScriptSetTimeZone(mContext, script, timeZone);
580 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800581 native void rsnScriptInvoke(long con, long id, int slot);
582 synchronized void nScriptInvoke(long id, int slot) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800583 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700584 rsnScriptInvoke(mContext, id, slot);
585 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800586 native void rsnScriptForEach(long con, long id, int slot, long ain, long aout, byte[] params);
587 native void rsnScriptForEach(long con, long id, int slot, long ain, long aout);
588 native void rsnScriptForEachClipped(long con, long id, int slot, long ain, long aout, byte[] params,
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800589 int xstart, int xend, int ystart, int yend, int zstart, int zend);
Tim Murray7a629fa2013-11-19 12:45:54 -0800590 native void rsnScriptForEachClipped(long con, long id, int slot, long ain, long aout,
Stephen Hinesdac6ed02013-02-13 00:09:02 -0800591 int xstart, int xend, int ystart, int yend, int zstart, int zend);
Tim Murray7a629fa2013-11-19 12:45:54 -0800592 synchronized void nScriptForEach(long id, int slot, long ain, long aout, byte[] params) {
Jason Sams6e494d32011-04-27 16:33:11 -0700593 validate();
594 if (params == null) {
595 rsnScriptForEach(mContext, id, slot, ain, aout);
596 } else {
597 rsnScriptForEach(mContext, id, slot, ain, aout, params);
598 }
599 }
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800600
Tim Murray7a629fa2013-11-19 12:45:54 -0800601 synchronized void nScriptForEachClipped(long id, int slot, long ain, long aout, byte[] params,
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800602 int xstart, int xend, int ystart, int yend, int zstart, int zend) {
603 validate();
Stephen Hinesdac6ed02013-02-13 00:09:02 -0800604 if (params == null) {
605 rsnScriptForEachClipped(mContext, id, slot, ain, aout, xstart, xend, ystart, yend, zstart, zend);
606 } else {
607 rsnScriptForEachClipped(mContext, id, slot, ain, aout, params, xstart, xend, ystart, yend, zstart, zend);
608 }
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800609 }
610
Tim Murray7a629fa2013-11-19 12:45:54 -0800611 native void rsnScriptInvokeV(long con, long id, int slot, byte[] params);
612 synchronized void nScriptInvokeV(long id, int slot, byte[] params) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800613 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700614 rsnScriptInvokeV(mContext, id, slot, params);
615 }
Tim Murray7c4caad2013-04-10 16:21:40 -0700616
Tim Murray7a629fa2013-11-19 12:45:54 -0800617 native void rsnScriptSetVarI(long con, long id, int slot, int val);
618 synchronized void nScriptSetVarI(long id, int slot, int val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800619 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700620 rsnScriptSetVarI(mContext, id, slot, val);
621 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800622 native int rsnScriptGetVarI(long con, long id, int slot);
623 synchronized int nScriptGetVarI(long id, int slot) {
Tim Murray7c4caad2013-04-10 16:21:40 -0700624 validate();
625 return rsnScriptGetVarI(mContext, id, slot);
626 }
627
Tim Murray7a629fa2013-11-19 12:45:54 -0800628 native void rsnScriptSetVarJ(long con, long id, int slot, long val);
629 synchronized void nScriptSetVarJ(long id, int slot, long val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800630 validate();
Stephen Hines031ec58c2010-10-11 10:54:21 -0700631 rsnScriptSetVarJ(mContext, id, slot, val);
632 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800633 native long rsnScriptGetVarJ(long con, long id, int slot);
634 synchronized long nScriptGetVarJ(long id, int slot) {
Tim Murray7c4caad2013-04-10 16:21:40 -0700635 validate();
636 return rsnScriptGetVarJ(mContext, id, slot);
637 }
638
Tim Murray7a629fa2013-11-19 12:45:54 -0800639 native void rsnScriptSetVarF(long con, long id, int slot, float val);
640 synchronized void nScriptSetVarF(long id, int slot, float val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800641 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700642 rsnScriptSetVarF(mContext, id, slot, val);
643 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800644 native float rsnScriptGetVarF(long con, long id, int slot);
645 synchronized float nScriptGetVarF(long id, int slot) {
Tim Murray7c4caad2013-04-10 16:21:40 -0700646 validate();
647 return rsnScriptGetVarF(mContext, id, slot);
648 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800649 native void rsnScriptSetVarD(long con, long id, int slot, double val);
650 synchronized void nScriptSetVarD(long id, int slot, double val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800651 validate();
Stephen Hinesca54ec32010-09-20 17:20:30 -0700652 rsnScriptSetVarD(mContext, id, slot, val);
653 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800654 native double rsnScriptGetVarD(long con, long id, int slot);
655 synchronized double nScriptGetVarD(long id, int slot) {
Tim Murray7c4caad2013-04-10 16:21:40 -0700656 validate();
657 return rsnScriptGetVarD(mContext, id, slot);
658 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800659 native void rsnScriptSetVarV(long con, long id, int slot, byte[] val);
660 synchronized void nScriptSetVarV(long id, int slot, byte[] val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800661 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700662 rsnScriptSetVarV(mContext, id, slot, val);
663 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800664 native void rsnScriptGetVarV(long con, long id, int slot, byte[] val);
665 synchronized void nScriptGetVarV(long id, int slot, byte[] val) {
Tim Murray7c4caad2013-04-10 16:21:40 -0700666 validate();
667 rsnScriptGetVarV(mContext, id, slot, val);
668 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800669 native void rsnScriptSetVarVE(long con, long id, int slot, byte[] val,
670 long e, int[] dims);
671 synchronized void nScriptSetVarVE(long id, int slot, byte[] val,
672 long e, int[] dims) {
Stephen Hinesadeb8092012-04-20 14:26:06 -0700673 validate();
674 rsnScriptSetVarVE(mContext, id, slot, val, e, dims);
675 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800676 native void rsnScriptSetVarObj(long con, long id, int slot, long val);
677 synchronized void nScriptSetVarObj(long id, int slot, long val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800678 validate();
Jason Sams6f4cf0b2010-11-16 17:37:02 -0800679 rsnScriptSetVarObj(mContext, id, slot, val);
680 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700681
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000682 native long rsnScriptCCreate(long con, String resName, String cacheDir,
Jason Samse4a06c52011-03-16 16:29:28 -0700683 byte[] script, int length);
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000684 synchronized long nScriptCCreate(String resName, String cacheDir, byte[] script, int length) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800685 validate();
Jason Samse4a06c52011-03-16 16:29:28 -0700686 return rsnScriptCCreate(mContext, resName, cacheDir, script, length);
Jason Sams2e1872f2010-08-17 16:25:41 -0700687 }
Jason Samsebfb4362009-09-23 13:57:02 -0700688
Tim Murray7a629fa2013-11-19 12:45:54 -0800689 native long rsnScriptIntrinsicCreate(long con, int id, long eid);
690 synchronized long nScriptIntrinsicCreate(int id, long eid) {
Jason Sams6ab97682012-08-10 12:09:43 -0700691 validate();
692 return rsnScriptIntrinsicCreate(mContext, id, eid);
693 }
694
Tim Murray7a629fa2013-11-19 12:45:54 -0800695 native long rsnScriptKernelIDCreate(long con, long sid, int slot, int sig);
696 synchronized long nScriptKernelIDCreate(long sid, int slot, int sig) {
Jason Sams08a81582012-09-18 12:32:10 -0700697 validate();
698 return rsnScriptKernelIDCreate(mContext, sid, slot, sig);
699 }
700
Tim Murray7a629fa2013-11-19 12:45:54 -0800701 native long rsnScriptFieldIDCreate(long con, long sid, int slot);
702 synchronized long nScriptFieldIDCreate(long sid, int slot) {
Jason Sams08a81582012-09-18 12:32:10 -0700703 validate();
704 return rsnScriptFieldIDCreate(mContext, sid, slot);
705 }
706
Ashok Bhat98071552014-02-12 09:54:43 +0000707 native long rsnScriptGroupCreate(long con, long[] kernels, long[] src, long[] dstk, long[] dstf, long[] types);
708 synchronized long nScriptGroupCreate(long[] kernels, long[] src, long[] dstk, long[] dstf, long[] types) {
Jason Sams08a81582012-09-18 12:32:10 -0700709 validate();
710 return rsnScriptGroupCreate(mContext, kernels, src, dstk, dstf, types);
711 }
712
Tim Murray7a629fa2013-11-19 12:45:54 -0800713 native void rsnScriptGroupSetInput(long con, long group, long kernel, long alloc);
714 synchronized void nScriptGroupSetInput(long group, long kernel, long alloc) {
Jason Sams08a81582012-09-18 12:32:10 -0700715 validate();
716 rsnScriptGroupSetInput(mContext, group, kernel, alloc);
717 }
718
Tim Murray7a629fa2013-11-19 12:45:54 -0800719 native void rsnScriptGroupSetOutput(long con, long group, long kernel, long alloc);
720 synchronized void nScriptGroupSetOutput(long group, long kernel, long alloc) {
Jason Sams08a81582012-09-18 12:32:10 -0700721 validate();
722 rsnScriptGroupSetOutput(mContext, group, kernel, alloc);
723 }
724
Tim Murray7a629fa2013-11-19 12:45:54 -0800725 native void rsnScriptGroupExecute(long con, long group);
726 synchronized void nScriptGroupExecute(long group) {
Jason Sams08a81582012-09-18 12:32:10 -0700727 validate();
728 rsnScriptGroupExecute(mContext, group);
729 }
730
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000731 native long rsnSamplerCreate(long con, int magFilter, int minFilter,
Alex Sakhartchouka89094a2011-05-04 17:45:36 -0700732 int wrapS, int wrapT, int wrapR, float aniso);
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000733 synchronized long nSamplerCreate(int magFilter, int minFilter,
Alex Sakhartchouka89094a2011-05-04 17:45:36 -0700734 int wrapS, int wrapT, int wrapR, float aniso) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800735 validate();
Alex Sakhartchouka89094a2011-05-04 17:45:36 -0700736 return rsnSamplerCreate(mContext, magFilter, minFilter, wrapS, wrapT, wrapR, aniso);
Jason Sams2e1872f2010-08-17 16:25:41 -0700737 }
Jason Sams0011bcf2009-12-15 12:58:36 -0800738
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000739 native long rsnProgramStoreCreate(long con, boolean r, boolean g, boolean b, boolean a,
Jason Sams331bf9b2011-04-06 11:23:54 -0700740 boolean depthMask, boolean dither,
741 int srcMode, int dstMode, int depthFunc);
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000742 synchronized long nProgramStoreCreate(boolean r, boolean g, boolean b, boolean a,
Jason Sams331bf9b2011-04-06 11:23:54 -0700743 boolean depthMask, boolean dither,
744 int srcMode, int dstMode, int depthFunc) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800745 validate();
Jason Samsbd184c52011-04-06 11:44:47 -0700746 return rsnProgramStoreCreate(mContext, r, g, b, a, depthMask, dither, srcMode,
747 dstMode, depthFunc);
Jason Sams2e1872f2010-08-17 16:25:41 -0700748 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700749
Tim Murray7a629fa2013-11-19 12:45:54 -0800750 native long rsnProgramRasterCreate(long con, boolean pointSprite, int cullMode);
751 synchronized long nProgramRasterCreate(boolean pointSprite, int cullMode) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800752 validate();
Jason Sams94aaed32011-09-23 14:18:53 -0700753 return rsnProgramRasterCreate(mContext, pointSprite, cullMode);
Jason Sams2e1872f2010-08-17 16:25:41 -0700754 }
Jason Sams1fe9b8c2009-06-11 14:46:10 -0700755
Tim Murray7a629fa2013-11-19 12:45:54 -0800756 native void rsnProgramBindConstants(long con, long pv, int slot, long mID);
757 synchronized void nProgramBindConstants(long pv, int slot, long mID) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800758 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700759 rsnProgramBindConstants(mContext, pv, slot, mID);
760 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800761 native void rsnProgramBindTexture(long con, long vpf, int slot, long a);
762 synchronized void nProgramBindTexture(long vpf, int slot, long a) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800763 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700764 rsnProgramBindTexture(mContext, vpf, slot, a);
765 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800766 native void rsnProgramBindSampler(long con, long vpf, int slot, long s);
767 synchronized void nProgramBindSampler(long vpf, int slot, long s) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800768 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700769 rsnProgramBindSampler(mContext, vpf, slot, s);
770 }
Ashok Bhat98071552014-02-12 09:54:43 +0000771 native long rsnProgramFragmentCreate(long con, String shader, String[] texNames, long[] params);
772 synchronized long nProgramFragmentCreate(String shader, String[] texNames, long[] params) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800773 validate();
Alex Sakhartchouk2123b462012-02-15 16:21:46 -0800774 return rsnProgramFragmentCreate(mContext, shader, texNames, params);
Jason Sams2e1872f2010-08-17 16:25:41 -0700775 }
Ashok Bhat98071552014-02-12 09:54:43 +0000776 native long rsnProgramVertexCreate(long con, String shader, String[] texNames, long[] params);
777 synchronized long nProgramVertexCreate(String shader, String[] texNames, long[] params) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800778 validate();
Alex Sakhartchouk2123b462012-02-15 16:21:46 -0800779 return rsnProgramVertexCreate(mContext, shader, texNames, params);
Jason Sams2e1872f2010-08-17 16:25:41 -0700780 }
Alex Sakhartchouk164aaed2010-07-01 16:14:06 -0700781
Ashok Bhat98071552014-02-12 09:54:43 +0000782 native long rsnMeshCreate(long con, long[] vtx, long[] idx, int[] prim);
783 synchronized long nMeshCreate(long[] vtx, long[] idx, int[] prim) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800784 validate();
Alex Sakhartchouk25999a02011-05-12 10:38:03 -0700785 return rsnMeshCreate(mContext, vtx, idx, prim);
Alex Sakhartchouk9d71e212010-11-08 15:10:52 -0800786 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800787 native int rsnMeshGetVertexBufferCount(long con, long id);
788 synchronized int nMeshGetVertexBufferCount(long id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800789 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700790 return rsnMeshGetVertexBufferCount(mContext, id);
791 }
Tim Murray7a629fa2013-11-19 12:45:54 -0800792 native int rsnMeshGetIndexCount(long con, long id);
793 synchronized int nMeshGetIndexCount(long id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800794 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700795 return rsnMeshGetIndexCount(mContext, id);
796 }
Ashok Bhat98071552014-02-12 09:54:43 +0000797 native void rsnMeshGetVertices(long con, long id, long[] vtxIds, int vtxIdCount);
798 synchronized void nMeshGetVertices(long id, long[] vtxIds, int vtxIdCount) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800799 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700800 rsnMeshGetVertices(mContext, id, vtxIds, vtxIdCount);
801 }
Ashok Bhat98071552014-02-12 09:54:43 +0000802 native void rsnMeshGetIndices(long con, long id, long[] idxIds, int[] primitives, int vtxIdCount);
803 synchronized void nMeshGetIndices(long id, long[] idxIds, int[] primitives, int vtxIdCount) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800804 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700805 rsnMeshGetIndices(mContext, id, idxIds, primitives, vtxIdCount);
806 }
807
Ashok Bhat0e0c0882014-02-04 14:57:58 +0000808 native long rsnPathCreate(long con, int prim, boolean isStatic, long vtx, long loop, float q);
809 synchronized long nPathCreate(int prim, boolean isStatic, long vtx, long loop, float q) {
Jason Samsf15ed012011-10-31 13:23:43 -0700810 validate();
811 return rsnPathCreate(mContext, prim, isStatic, vtx, loop, q);
812 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700813
Tim Murraya78e9ad2013-11-15 13:08:30 -0800814 long mDev;
815 long mContext;
Romain Guy650a3eb2009-08-31 14:06:43 -0700816 @SuppressWarnings({"FieldCanBeLocal"})
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800817 MessageThread mMessageThread;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700818
Jason Sams8cb39de2010-06-01 15:47:01 -0700819 Element mElement_U8;
820 Element mElement_I8;
821 Element mElement_U16;
822 Element mElement_I16;
823 Element mElement_U32;
824 Element mElement_I32;
Stephen Hines52d83632010-10-11 16:10:42 -0700825 Element mElement_U64;
Stephen Hinesef1dac22010-10-01 15:39:33 -0700826 Element mElement_I64;
Jason Sams8cb39de2010-06-01 15:47:01 -0700827 Element mElement_F32;
Stephen Hines02f417052010-09-30 15:19:22 -0700828 Element mElement_F64;
Jason Samsf110d4b2010-06-21 17:42:41 -0700829 Element mElement_BOOLEAN;
Jason Sams3c0dfba2009-09-27 17:50:38 -0700830
Jason Sams8cb39de2010-06-01 15:47:01 -0700831 Element mElement_ELEMENT;
832 Element mElement_TYPE;
833 Element mElement_ALLOCATION;
834 Element mElement_SAMPLER;
835 Element mElement_SCRIPT;
836 Element mElement_MESH;
837 Element mElement_PROGRAM_FRAGMENT;
838 Element mElement_PROGRAM_VERTEX;
839 Element mElement_PROGRAM_RASTER;
840 Element mElement_PROGRAM_STORE;
Stephen Hines3a291412012-04-11 17:27:29 -0700841 Element mElement_FONT;
Jason Samsa70f4162010-03-26 15:33:42 -0700842
Jason Sams3c0dfba2009-09-27 17:50:38 -0700843 Element mElement_A_8;
844 Element mElement_RGB_565;
845 Element mElement_RGB_888;
846 Element mElement_RGBA_5551;
847 Element mElement_RGBA_4444;
848 Element mElement_RGBA_8888;
849
Jason Sams8cb39de2010-06-01 15:47:01 -0700850 Element mElement_FLOAT_2;
851 Element mElement_FLOAT_3;
852 Element mElement_FLOAT_4;
Stephen Hines836c4a52011-06-01 14:38:10 -0700853
854 Element mElement_DOUBLE_2;
855 Element mElement_DOUBLE_3;
856 Element mElement_DOUBLE_4;
857
858 Element mElement_UCHAR_2;
859 Element mElement_UCHAR_3;
Jason Sams8cb39de2010-06-01 15:47:01 -0700860 Element mElement_UCHAR_4;
Jason Sams7d787b42009-11-15 12:14:26 -0800861
Stephen Hines836c4a52011-06-01 14:38:10 -0700862 Element mElement_CHAR_2;
863 Element mElement_CHAR_3;
864 Element mElement_CHAR_4;
865
866 Element mElement_USHORT_2;
867 Element mElement_USHORT_3;
868 Element mElement_USHORT_4;
869
870 Element mElement_SHORT_2;
871 Element mElement_SHORT_3;
872 Element mElement_SHORT_4;
873
874 Element mElement_UINT_2;
875 Element mElement_UINT_3;
876 Element mElement_UINT_4;
877
878 Element mElement_INT_2;
879 Element mElement_INT_3;
880 Element mElement_INT_4;
881
882 Element mElement_ULONG_2;
883 Element mElement_ULONG_3;
884 Element mElement_ULONG_4;
885
886 Element mElement_LONG_2;
887 Element mElement_LONG_3;
888 Element mElement_LONG_4;
889
Tim Murray932e78e2013-09-03 11:42:26 -0700890 Element mElement_YUV;
891
Jason Sams1d45c472010-08-25 14:31:48 -0700892 Element mElement_MATRIX_4X4;
893 Element mElement_MATRIX_3X3;
894 Element mElement_MATRIX_2X2;
895
Jason Sams4d339932010-05-11 14:03:58 -0700896 Sampler mSampler_CLAMP_NEAREST;
897 Sampler mSampler_CLAMP_LINEAR;
898 Sampler mSampler_CLAMP_LINEAR_MIP_LINEAR;
899 Sampler mSampler_WRAP_NEAREST;
900 Sampler mSampler_WRAP_LINEAR;
901 Sampler mSampler_WRAP_LINEAR_MIP_LINEAR;
Tim Murray6b9b2ca2013-02-15 13:25:55 -0800902 Sampler mSampler_MIRRORED_REPEAT_NEAREST;
903 Sampler mSampler_MIRRORED_REPEAT_LINEAR;
904 Sampler mSampler_MIRRORED_REPEAT_LINEAR_MIP_LINEAR;
Jason Sams4d339932010-05-11 14:03:58 -0700905
Alex Sakhartchoukd36f2482010-08-24 11:37:33 -0700906 ProgramStore mProgramStore_BLEND_NONE_DEPTH_TEST;
907 ProgramStore mProgramStore_BLEND_NONE_DEPTH_NO_DEPTH;
Alex Sakhartchoukd36f2482010-08-24 11:37:33 -0700908 ProgramStore mProgramStore_BLEND_ALPHA_DEPTH_TEST;
909 ProgramStore mProgramStore_BLEND_ALPHA_DEPTH_NO_DEPTH;
Alex Sakhartchouk32e09b52010-08-23 10:24:10 -0700910
Alex Sakhartchoukd36f2482010-08-24 11:37:33 -0700911 ProgramRaster mProgramRaster_CULL_BACK;
912 ProgramRaster mProgramRaster_CULL_FRONT;
913 ProgramRaster mProgramRaster_CULL_NONE;
Alex Sakhartchouk32e09b52010-08-23 10:24:10 -0700914
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700915 ///////////////////////////////////////////////////////////////////////////////////
Jack Palevich43702d82009-05-28 13:38:16 -0700916 //
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700917
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700918 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -0700919 * The base class from which an application should derive in order
920 * to receive RS messages from scripts. When a script calls {@code
921 * rsSendToClient}, the data fields will be filled, and the run
922 * method will be called on a separate thread. This will occur
923 * some time after {@code rsSendToClient} completes in the script,
924 * as {@code rsSendToClient} is asynchronous. Message handlers are
925 * not guaranteed to have completed when {@link
926 * android.renderscript.RenderScript#finish} returns.
Jason Sams27676fe2010-11-10 17:00:59 -0800927 *
928 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800929 public static class RSMessageHandler implements Runnable {
Jason Sams516c3192009-10-06 13:58:47 -0700930 protected int[] mData;
931 protected int mID;
Jason Sams1c415172010-11-08 17:06:46 -0800932 protected int mLength;
Jason Sams516c3192009-10-06 13:58:47 -0700933 public void run() {
934 }
935 }
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700936 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -0700937 * If an application is expecting messages, it should set this
938 * field to an instance of {@link RSMessageHandler}. This
939 * instance will receive all the user messages sent from {@code
940 * sendToClient} by scripts from this context.
Jason Sams27676fe2010-11-10 17:00:59 -0800941 *
942 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800943 RSMessageHandler mMessageCallback = null;
944
945 public void setMessageHandler(RSMessageHandler msg) {
946 mMessageCallback = msg;
947 }
948 public RSMessageHandler getMessageHandler() {
949 return mMessageCallback;
950 }
Jason Sams516c3192009-10-06 13:58:47 -0700951
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700952 /**
Jason Sams02d56d92013-04-12 16:40:50 -0700953 * Place a message into the message queue to be sent back to the message
954 * handler once all previous commands have been executed.
Jason Sams455d6442013-02-05 19:20:18 -0800955 *
956 * @param id
957 * @param data
958 */
959 public void sendMessage(int id, int[] data) {
960 nContextSendMessage(id, data);
961 }
962
963 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -0700964 * The runtime error handler base class. An application should derive from this class
965 * if it wishes to install an error handler. When errors occur at runtime,
966 * the fields in this class will be filled, and the run method will be called.
Jason Sams27676fe2010-11-10 17:00:59 -0800967 *
968 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800969 public static class RSErrorHandler implements Runnable {
Jason Sams1c415172010-11-08 17:06:46 -0800970 protected String mErrorMessage;
971 protected int mErrorNum;
972 public void run() {
973 }
974 }
Jason Sams27676fe2010-11-10 17:00:59 -0800975
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700976 /**
Jason Sams27676fe2010-11-10 17:00:59 -0800977 * Application Error handler. All runtime errors will be dispatched to the
978 * instance of RSAsyncError set here. If this field is null a
Tim Murrayc11e25c2013-04-09 11:01:01 -0700979 * {@link RSRuntimeException} will instead be thrown with details about the error.
Jason Sams27676fe2010-11-10 17:00:59 -0800980 * This will cause program termaination.
981 *
982 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800983 RSErrorHandler mErrorCallback = null;
984
985 public void setErrorHandler(RSErrorHandler msg) {
986 mErrorCallback = msg;
987 }
988 public RSErrorHandler getErrorHandler() {
989 return mErrorCallback;
990 }
Jason Sams1c415172010-11-08 17:06:46 -0800991
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700992 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -0700993 * RenderScript worker thread priority enumeration. The default value is
994 * NORMAL. Applications wishing to do background processing should set
995 * their priority to LOW to avoid starving forground processes.
Jason Sams27676fe2010-11-10 17:00:59 -0800996 */
Jason Sams7d787b42009-11-15 12:14:26 -0800997 public enum Priority {
Glenn Kasten260c77a2011-06-01 17:25:54 -0700998 LOW (Process.THREAD_PRIORITY_BACKGROUND + (5 * Process.THREAD_PRIORITY_LESS_FAVORABLE)),
999 NORMAL (Process.THREAD_PRIORITY_DISPLAY);
Jason Sams7d787b42009-11-15 12:14:26 -08001000
1001 int mID;
1002 Priority(int id) {
1003 mID = id;
1004 }
1005 }
1006
Jason Sams678cc7f2014-03-05 16:09:02 -08001007 void validateObject(BaseObj o) {
1008 if (o != null) {
1009 if (o.mRS != this) {
1010 throw new RSIllegalArgumentException("Attempting to use an object across contexts.");
1011 }
1012 }
1013 }
1014
Jason Sams771bebb2009-12-07 12:40:12 -08001015 void validate() {
1016 if (mContext == 0) {
Jason Samsc1d62102010-11-04 14:32:19 -07001017 throw new RSInvalidStateException("Calling RS with no Context active.");
Jason Sams771bebb2009-12-07 12:40:12 -08001018 }
1019 }
1020
Jason Sams27676fe2010-11-10 17:00:59 -08001021
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001022 /**
Jason Sams27676fe2010-11-10 17:00:59 -08001023 * Change the priority of the worker threads for this context.
1024 *
1025 * @param p New priority to be set.
1026 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001027 public void setPriority(Priority p) {
Jason Sams5dbfe932010-01-27 14:41:43 -08001028 validate();
Jason Sams7d787b42009-11-15 12:14:26 -08001029 nContextSetPriority(p.mID);
1030 }
1031
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001032 static class MessageThread extends Thread {
Jason Sams516c3192009-10-06 13:58:47 -07001033 RenderScript mRS;
1034 boolean mRun = true;
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001035 int[] mAuxData = new int[2];
Jason Sams1c415172010-11-08 17:06:46 -08001036
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001037 static final int RS_MESSAGE_TO_CLIENT_NONE = 0;
1038 static final int RS_MESSAGE_TO_CLIENT_EXCEPTION = 1;
1039 static final int RS_MESSAGE_TO_CLIENT_RESIZE = 2;
1040 static final int RS_MESSAGE_TO_CLIENT_ERROR = 3;
1041 static final int RS_MESSAGE_TO_CLIENT_USER = 4;
Jason Sams739c8262013-04-11 18:07:52 -07001042 static final int RS_MESSAGE_TO_CLIENT_NEW_BUFFER = 5;
Jason Sams516c3192009-10-06 13:58:47 -07001043
Stephen Hines42028a82013-04-17 19:22:01 -07001044 static final int RS_ERROR_FATAL_DEBUG = 0x0800;
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001045 static final int RS_ERROR_FATAL_UNKNOWN = 0x1000;
Jason Samsadd9d962010-11-22 16:20:16 -08001046
Jason Sams516c3192009-10-06 13:58:47 -07001047 MessageThread(RenderScript rs) {
1048 super("RSMessageThread");
1049 mRS = rs;
1050
1051 }
1052
1053 public void run() {
1054 // This function is a temporary solution. The final solution will
1055 // used typed allocations where the message id is the type indicator.
1056 int[] rbuf = new int[16];
Jason Sams2e1872f2010-08-17 16:25:41 -07001057 mRS.nContextInitToClient(mRS.mContext);
Jason Sams516c3192009-10-06 13:58:47 -07001058 while(mRun) {
Jason Sams1d45c472010-08-25 14:31:48 -07001059 rbuf[0] = 0;
Jason Samsedbfabd2011-05-17 15:01:29 -07001060 int msg = mRS.nContextPeekMessage(mRS.mContext, mAuxData);
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001061 int size = mAuxData[1];
1062 int subID = mAuxData[0];
Jason Sams1c415172010-11-08 17:06:46 -08001063
1064 if (msg == RS_MESSAGE_TO_CLIENT_USER) {
1065 if ((size>>2) >= rbuf.length) {
1066 rbuf = new int[(size + 3) >> 2];
1067 }
Jason Samsedbfabd2011-05-17 15:01:29 -07001068 if (mRS.nContextGetUserMessage(mRS.mContext, rbuf) !=
1069 RS_MESSAGE_TO_CLIENT_USER) {
Tim Murrayc11e25c2013-04-09 11:01:01 -07001070 throw new RSDriverException("Error processing message from RenderScript.");
Jason Samsedbfabd2011-05-17 15:01:29 -07001071 }
Jason Sams1c415172010-11-08 17:06:46 -08001072
1073 if(mRS.mMessageCallback != null) {
1074 mRS.mMessageCallback.mData = rbuf;
1075 mRS.mMessageCallback.mID = subID;
1076 mRS.mMessageCallback.mLength = size;
1077 mRS.mMessageCallback.run();
Jason Sams1d45c472010-08-25 14:31:48 -07001078 } else {
Jason Sams1c415172010-11-08 17:06:46 -08001079 throw new RSInvalidStateException("Received a message from the script with no message handler installed.");
Jason Sams516c3192009-10-06 13:58:47 -07001080 }
Stephen Hinesab98bb62010-09-24 14:38:30 -07001081 continue;
Jason Sams516c3192009-10-06 13:58:47 -07001082 }
Jason Sams1c415172010-11-08 17:06:46 -08001083
1084 if (msg == RS_MESSAGE_TO_CLIENT_ERROR) {
1085 String e = mRS.nContextGetErrorMessage(mRS.mContext);
1086
Stephen Hines42028a82013-04-17 19:22:01 -07001087 // Throw RSRuntimeException under the following conditions:
1088 //
1089 // 1) It is an unknown fatal error.
1090 // 2) It is a debug fatal error, and we are not in a
1091 // debug context.
1092 // 3) It is a debug fatal error, and we do not have an
1093 // error callback.
1094 if (subID >= RS_ERROR_FATAL_UNKNOWN ||
1095 (subID >= RS_ERROR_FATAL_DEBUG &&
1096 (mRS.mContextType != ContextType.DEBUG ||
1097 mRS.mErrorCallback == null))) {
Jason Samsadd9d962010-11-22 16:20:16 -08001098 throw new RSRuntimeException("Fatal error " + subID + ", details: " + e);
1099 }
1100
Jason Sams1c415172010-11-08 17:06:46 -08001101 if(mRS.mErrorCallback != null) {
1102 mRS.mErrorCallback.mErrorMessage = e;
1103 mRS.mErrorCallback.mErrorNum = subID;
1104 mRS.mErrorCallback.run();
1105 } else {
Jason Samsa4b7bc92013-02-05 15:05:39 -08001106 android.util.Log.e(LOG_TAG, "non fatal RS error, " + e);
Stephen Hinesbe74bdd2012-02-03 15:29:36 -08001107 // Do not throw here. In these cases, we do not have
1108 // a fatal error.
Jason Sams1c415172010-11-08 17:06:46 -08001109 }
1110 continue;
1111 }
1112
Jason Sams739c8262013-04-11 18:07:52 -07001113 if (msg == RS_MESSAGE_TO_CLIENT_NEW_BUFFER) {
1114 Allocation.sendBufferNotification(subID);
1115 continue;
1116 }
1117
Jason Sams1c415172010-11-08 17:06:46 -08001118 // 2: teardown.
1119 // But we want to avoid starving other threads during
1120 // teardown by yielding until the next line in the destructor
1121 // can execute to set mRun = false
1122 try {
1123 sleep(1, 0);
1124 } catch(InterruptedException e) {
Jason Sams516c3192009-10-06 13:58:47 -07001125 }
Jason Sams516c3192009-10-06 13:58:47 -07001126 }
Tim Murrayda67deb2013-05-09 12:02:50 -07001127 //Log.d(LOG_TAG, "MessageThread exiting.");
Jason Sams516c3192009-10-06 13:58:47 -07001128 }
1129 }
1130
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001131 RenderScript(Context ctx) {
Stephen Hines42028a82013-04-17 19:22:01 -07001132 mContextType = ContextType.NORMAL;
Jason Sams1a4e1f32012-02-24 17:51:24 -08001133 if (ctx != null) {
1134 mApplicationContext = ctx.getApplicationContext();
1135 }
Tim Murray504abb32014-01-07 11:13:56 -08001136 mRWLock = new ReentrantReadWriteLock();
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001137 }
1138
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001139 /**
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001140 * Gets the application context associated with the RenderScript context.
1141 *
1142 * @return The application context.
1143 */
1144 public final Context getApplicationContext() {
1145 return mApplicationContext;
Jack Palevich60aa3ea2009-05-26 13:45:08 -07001146 }
1147
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001148 /**
Jason Samsadd26dc2013-02-22 18:43:45 -08001149 * @hide
1150 */
1151 public static RenderScript create(Context ctx, int sdkVersion) {
1152 return create(ctx, sdkVersion, ContextType.NORMAL);
1153 }
1154
1155 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001156 * Create a RenderScript context.
Jason Sams27676fe2010-11-10 17:00:59 -08001157 *
Jason Sams1a4e1f32012-02-24 17:51:24 -08001158 * @hide
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001159 * @param ctx The context.
Jason Sams27676fe2010-11-10 17:00:59 -08001160 * @return RenderScript
1161 */
Jason Samsadd26dc2013-02-22 18:43:45 -08001162 public static RenderScript create(Context ctx, int sdkVersion, ContextType ct) {
Dan Morrille4d9a012013-03-28 18:10:43 -07001163 if (!sInitialized) {
1164 Log.e(LOG_TAG, "RenderScript.create() called when disabled; someone is likely to crash");
1165 return null;
1166 }
1167
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001168 RenderScript rs = new RenderScript(ctx);
Jason Sams704ff642010-02-09 16:05:07 -08001169
1170 rs.mDev = rs.nDeviceCreate();
Jason Samsadd26dc2013-02-22 18:43:45 -08001171 rs.mContext = rs.nContextCreate(rs.mDev, 0, sdkVersion, ct.mID);
Stephen Hines42028a82013-04-17 19:22:01 -07001172 rs.mContextType = ct;
Jason Sams26985362011-05-03 15:01:58 -07001173 if (rs.mContext == 0) {
1174 throw new RSDriverException("Failed to create RS context.");
1175 }
Jason Sams704ff642010-02-09 16:05:07 -08001176 rs.mMessageThread = new MessageThread(rs);
1177 rs.mMessageThread.start();
Jason Sams704ff642010-02-09 16:05:07 -08001178 return rs;
Jason Samsefd9b6fb2009-11-03 13:58:36 -08001179 }
1180
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001181 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001182 * Create a RenderScript context.
Jason Sams1a4e1f32012-02-24 17:51:24 -08001183 *
1184 * @param ctx The context.
1185 * @return RenderScript
1186 */
1187 public static RenderScript create(Context ctx) {
Jason Samsadd26dc2013-02-22 18:43:45 -08001188 return create(ctx, ContextType.NORMAL);
1189 }
1190
1191 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001192 * Create a RenderScript context.
Jason Samsadd26dc2013-02-22 18:43:45 -08001193 *
Jason Samsadd26dc2013-02-22 18:43:45 -08001194 *
1195 * @param ctx The context.
Jason Sams02d56d92013-04-12 16:40:50 -07001196 * @param ct The type of context to be created.
Jason Samsadd26dc2013-02-22 18:43:45 -08001197 * @return RenderScript
1198 */
1199 public static RenderScript create(Context ctx, ContextType ct) {
Jason Sams1a4e1f32012-02-24 17:51:24 -08001200 int v = ctx.getApplicationInfo().targetSdkVersion;
Jason Samsadd26dc2013-02-22 18:43:45 -08001201 return create(ctx, v, ct);
Jason Sams1a4e1f32012-02-24 17:51:24 -08001202 }
1203
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001204 /**
Jason Sams27676fe2010-11-10 17:00:59 -08001205 * Print the currently available debugging information about the state of
1206 * the RS context to the log.
1207 *
Jason Sams27676fe2010-11-10 17:00:59 -08001208 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001209 public void contextDump() {
Jason Sams5dbfe932010-01-27 14:41:43 -08001210 validate();
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001211 nContextDump(0);
Jason Sams715333b2009-11-17 17:26:46 -08001212 }
1213
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001214 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001215 * Wait for any pending asynchronous opeations (such as copies to a RS
1216 * allocation or RS script executions) to complete.
Jason Sams27676fe2010-11-10 17:00:59 -08001217 *
1218 */
Jason Sams96ed4cf2010-06-15 12:15:57 -07001219 public void finish() {
1220 nContextFinish();
1221 }
1222
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001223 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001224 * Destroys this RenderScript context. Once this function is called,
1225 * using this context or any objects belonging to this context is
1226 * illegal.
Jason Sams27676fe2010-11-10 17:00:59 -08001227 *
1228 */
Jason Samsf5b45962009-08-25 14:49:07 -07001229 public void destroy() {
Jason Sams5dbfe932010-01-27 14:41:43 -08001230 validate();
Tim Murray504abb32014-01-07 11:13:56 -08001231 nContextFinish();
1232
Jason Sams2e1872f2010-08-17 16:25:41 -07001233 nContextDeinitToClient(mContext);
Jason Sams516c3192009-10-06 13:58:47 -07001234 mMessageThread.mRun = false;
Jason Samsa8bf9422010-09-16 13:43:19 -07001235 try {
1236 mMessageThread.join();
1237 } catch(InterruptedException e) {
1238 }
Jason Sams516c3192009-10-06 13:58:47 -07001239
Jason Sams2e1872f2010-08-17 16:25:41 -07001240 nContextDestroy();
Jason Samsf5b45962009-08-25 14:49:07 -07001241
1242 nDeviceDestroy(mDev);
1243 mDev = 0;
1244 }
Jason Sams02fb2cb2009-05-28 15:37:57 -07001245
Jason Samsa9e7a052009-09-25 14:51:22 -07001246 boolean isAlive() {
1247 return mContext != 0;
1248 }
1249
Tim Murray7a629fa2013-11-19 12:45:54 -08001250 long safeID(BaseObj o) {
Jason Sams6b9dec02009-09-23 16:38:37 -07001251 if(o != null) {
Jason Samse07694b2012-04-03 15:36:36 -07001252 return o.getID(this);
Jason Samsd8e41612009-08-20 17:22:40 -07001253 }
Jason Sams6b9dec02009-09-23 16:38:37 -07001254 return 0;
Jack Palevich60aa3ea2009-05-26 13:45:08 -07001255 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -07001256}