blob: b0ef156e0934f2c67e1ac59c76627784b8a90f78 [file] [log] [blame]
Jack Palevich60aa3ea2009-05-26 13:45:08 -07001/*
Stephen Hinesbe74bdd2012-02-03 15:29:36 -08002 * Copyright (C) 2008-2012 The Android Open Source Project
Jack Palevich60aa3ea2009-05-26 13:45:08 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Jason Sams94d8e90a2009-06-10 16:09:05 -070017package android.renderscript;
Jack Palevich60aa3ea2009-05-26 13:45:08 -070018
Jason Samsa6f338c2012-02-24 16:22:16 -080019import java.io.File;
Tim Murray2f2472c2013-08-22 14:55:26 -070020import java.lang.reflect.Method;
Tim Murray06b45672014-01-07 11:13:56 -080021import java.util.concurrent.locks.ReentrantReadWriteLock;
Jason Sams36e612a2009-07-31 16:26:13 -070022
Shih-wei Liao6b32fab2010-12-10 01:03:59 -080023import android.content.Context;
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -080024import android.content.res.AssetManager;
Jason Samsb8c5a842009-07-31 20:40:47 -070025import android.graphics.Bitmap;
Jason Samsfaa32b32011-06-20 16:58:04 -070026import android.graphics.SurfaceTexture;
Glenn Kasten260c77a2011-06-01 17:25:54 -070027import android.os.Process;
Jason Sams36e612a2009-07-31 16:26:13 -070028import android.util.Log;
29import android.view.Surface;
Dan Morrille4d9a012013-03-28 18:10:43 -070030import android.os.SystemProperties;
Tim Murray6d7a53c2013-05-23 16:59:23 -070031import android.os.Trace;
Stephen Hines4382467a2011-08-01 15:02:34 -070032
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -070033/**
Tim Murrayc11e25c2013-04-09 11:01:01 -070034 * This class provides access to a RenderScript context, which controls RenderScript
35 * initialization, resource management, and teardown. An instance of the RenderScript
36 * class must be created before any other RS objects can be created.
Jason Sams27676fe2010-11-10 17:00:59 -080037 *
Joe Fernandez3aef8e1d2011-12-20 10:38:34 -080038 * <div class="special reference">
39 * <h3>Developer Guides</h3>
Tim Murrayc11e25c2013-04-09 11:01:01 -070040 * <p>For more information about creating an application that uses RenderScript, read the
41 * <a href="{@docRoot}guide/topics/renderscript/index.html">RenderScript</a> developer guide.</p>
Joe Fernandez3aef8e1d2011-12-20 10:38:34 -080042 * </div>
Jason Samse29d4712009-07-23 15:19:03 -070043 **/
Jack Palevich60aa3ea2009-05-26 13:45:08 -070044public class RenderScript {
Tim Murray6d7a53c2013-05-23 16:59:23 -070045 static final long TRACE_TAG = Trace.TRACE_TAG_RS;
46
Jason Sams3bc47d42009-11-12 15:10:25 -080047 static final String LOG_TAG = "RenderScript_jni";
Jason Samsbf6ef8d2010-12-06 15:59:59 -080048 static final boolean DEBUG = false;
Romain Guy650a3eb2009-08-31 14:06:43 -070049 @SuppressWarnings({"UnusedDeclaration", "deprecation"})
Joe Onorato43a17652011-04-06 19:22:23 -070050 static final boolean LOG_ENABLED = false;
Jack Palevich60aa3ea2009-05-26 13:45:08 -070051
Shih-wei Liao6b32fab2010-12-10 01:03:59 -080052 private Context mApplicationContext;
Jack Palevich60aa3ea2009-05-26 13:45:08 -070053
Shih-wei Liao6b32fab2010-12-10 01:03:59 -080054 /*
Jack Palevich60aa3ea2009-05-26 13:45:08 -070055 * We use a class initializer to allow the native code to cache some
56 * field offsets.
57 */
Dan Morrille4d9a012013-03-28 18:10:43 -070058 @SuppressWarnings({"FieldCanBeLocal", "UnusedDeclaration"}) // TODO: now used locally; remove?
Jason Samsbf6ef8d2010-12-06 15:59:59 -080059 static boolean sInitialized;
60 native static void _nInit();
Jack Palevich60aa3ea2009-05-26 13:45:08 -070061
Tim Murray2f2472c2013-08-22 14:55:26 -070062 static Object sRuntime;
63 static Method registerNativeAllocation;
64 static Method registerNativeFree;
Jason Samsdba3ba52009-07-30 14:56:12 -070065
Jack Palevich60aa3ea2009-05-26 13:45:08 -070066 static {
67 sInitialized = false;
Dan Morrille4d9a012013-03-28 18:10:43 -070068 if (!SystemProperties.getBoolean("config.disable_renderscript", false)) {
69 try {
Tim Murray2f2472c2013-08-22 14:55:26 -070070 Class<?> vm_runtime = Class.forName("dalvik.system.VMRuntime");
71 Method get_runtime = vm_runtime.getDeclaredMethod("getRuntime");
72 sRuntime = get_runtime.invoke(null);
73 registerNativeAllocation = vm_runtime.getDeclaredMethod("registerNativeAllocation", Integer.TYPE);
74 registerNativeFree = vm_runtime.getDeclaredMethod("registerNativeFree", Integer.TYPE);
75 } catch (Exception e) {
76 Log.e(LOG_TAG, "Error loading GC methods: " + e);
77 throw new RSRuntimeException("Error loading GC methods: " + e);
78 }
79 try {
Dan Morrille4d9a012013-03-28 18:10:43 -070080 System.loadLibrary("rs_jni");
81 _nInit();
82 sInitialized = true;
83 } catch (UnsatisfiedLinkError e) {
84 Log.e(LOG_TAG, "Error loading RS jni library: " + e);
85 throw new RSRuntimeException("Error loading RS jni library: " + e);
86 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -070087 }
88 }
89
Jason Sams2e1872f2010-08-17 16:25:41 -070090 // Non-threadsafe functions.
Tim Murrayeff663f2013-11-15 13:08:30 -080091 native long nDeviceCreate();
92 native void nDeviceDestroy(long dev);
93 native void nDeviceSetConfig(long dev, int param, int value);
94 native int nContextGetUserMessage(long con, int[] data);
95 native String nContextGetErrorMessage(long con);
96 native int nContextPeekMessage(long con, int[] subID);
97 native void nContextInitToClient(long con);
98 native void nContextDeinitToClient(long con);
Jason Sams3eaa3382009-06-10 15:04:38 -070099
Stephen Hines7d25a822013-04-09 23:51:56 -0700100 static File mCacheDir;
Jason Samsa6f338c2012-02-24 16:22:16 -0800101
102 /**
103 * Sets the directory to use as a persistent storage for the
104 * renderscript object file cache.
105 *
106 * @hide
107 * @param cacheDir A directory the current process can write to
108 */
Jason Samsa6f338c2012-02-24 16:22:16 -0800109 public static void setupDiskCache(File cacheDir) {
Dan Morrille4d9a012013-03-28 18:10:43 -0700110 if (!sInitialized) {
111 Log.e(LOG_TAG, "RenderScript.setupDiskCache() called when disabled");
112 return;
113 }
114
Stephen Hines7d25a822013-04-09 23:51:56 -0700115 // Defer creation of cache path to nScriptCCreate().
116 mCacheDir = cacheDir;
Jason Samsa6f338c2012-02-24 16:22:16 -0800117 }
118
Jason Sams02d56d92013-04-12 16:40:50 -0700119 /**
120 * ContextType specifies the specific type of context to be created.
121 *
122 */
Jason Samsadd26dc2013-02-22 18:43:45 -0800123 public enum ContextType {
Jason Sams02d56d92013-04-12 16:40:50 -0700124 /**
125 * NORMAL context, this is the default and what shipping apps should
126 * use.
127 */
Jason Samsadd26dc2013-02-22 18:43:45 -0800128 NORMAL (0),
Jason Sams02d56d92013-04-12 16:40:50 -0700129
130 /**
131 * DEBUG context, perform extra runtime checks to validate the
132 * kernels and APIs are being used as intended. Get and SetElementAt
133 * will be bounds checked in this mode.
134 */
Jason Samsadd26dc2013-02-22 18:43:45 -0800135 DEBUG (1),
Jason Sams02d56d92013-04-12 16:40:50 -0700136
137 /**
138 * PROFILE context, Intended to be used once the first time an
139 * application is run on a new device. This mode allows the runtime to
140 * do additional testing and performance tuning.
141 */
Jason Samsadd26dc2013-02-22 18:43:45 -0800142 PROFILE (2);
143
144 int mID;
145 ContextType(int id) {
146 mID = id;
147 }
148 }
Jason Sams718cd1f2009-12-23 14:35:29 -0800149
Stephen Hines42028a82013-04-17 19:22:01 -0700150 ContextType mContextType;
Tim Murray06b45672014-01-07 11:13:56 -0800151 ReentrantReadWriteLock mRWLock;
Stephen Hines42028a82013-04-17 19:22:01 -0700152
Jason Sams2e1872f2010-08-17 16:25:41 -0700153 // Methods below are wrapped to protect the non-threadsafe
154 // lockless fifo.
Tim Murrayeff663f2013-11-15 13:08:30 -0800155 native long rsnContextCreateGL(long dev, int ver, int sdkVer,
Jason Sams11c8af92010-10-13 15:31:10 -0700156 int colorMin, int colorPref,
157 int alphaMin, int alphaPref,
158 int depthMin, int depthPref,
159 int stencilMin, int stencilPref,
Alex Sakhartchouk2c74ad92011-03-16 19:28:25 -0700160 int samplesMin, int samplesPref, float samplesQ, int dpi);
Tim Murrayeff663f2013-11-15 13:08:30 -0800161 synchronized long nContextCreateGL(long dev, int ver, int sdkVer,
Jason Sams11c8af92010-10-13 15:31:10 -0700162 int colorMin, int colorPref,
163 int alphaMin, int alphaPref,
164 int depthMin, int depthPref,
165 int stencilMin, int stencilPref,
Alex Sakhartchouk2c74ad92011-03-16 19:28:25 -0700166 int samplesMin, int samplesPref, float samplesQ, int dpi) {
Stephen Hines4382467a2011-08-01 15:02:34 -0700167 return rsnContextCreateGL(dev, ver, sdkVer, colorMin, colorPref,
Jason Sams11c8af92010-10-13 15:31:10 -0700168 alphaMin, alphaPref, depthMin, depthPref,
169 stencilMin, stencilPref,
Alex Sakhartchouk2c74ad92011-03-16 19:28:25 -0700170 samplesMin, samplesPref, samplesQ, dpi);
Jason Sams2e1872f2010-08-17 16:25:41 -0700171 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800172 native long rsnContextCreate(long dev, int ver, int sdkVer, int contextType);
173 synchronized long nContextCreate(long dev, int ver, int sdkVer, int contextType) {
Jason Samsadd26dc2013-02-22 18:43:45 -0800174 return rsnContextCreate(dev, ver, sdkVer, contextType);
Jason Sams2e1872f2010-08-17 16:25:41 -0700175 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800176 native void rsnContextDestroy(long con);
Jason Sams2e1872f2010-08-17 16:25:41 -0700177 synchronized void nContextDestroy() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800178 validate();
Tim Murray06b45672014-01-07 11:13:56 -0800179
180 // take teardown lock
181 // teardown lock can only be taken when no objects are being destroyed
182 ReentrantReadWriteLock.WriteLock wlock = mRWLock.writeLock();
183 wlock.lock();
184
185 long curCon = mContext;
186 // context is considered dead as of this point
187 mContext = 0;
188
189 wlock.unlock();
190 rsnContextDestroy(curCon);
Jason Sams2e1872f2010-08-17 16:25:41 -0700191 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800192 native void rsnContextSetSurface(long con, int w, int h, Surface sur);
Jason Sams2e1872f2010-08-17 16:25:41 -0700193 synchronized void nContextSetSurface(int w, int h, Surface sur) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800194 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700195 rsnContextSetSurface(mContext, w, h, sur);
196 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800197 native void rsnContextSetSurfaceTexture(long con, int w, int h, SurfaceTexture sur);
Jason Samsfaa32b32011-06-20 16:58:04 -0700198 synchronized void nContextSetSurfaceTexture(int w, int h, SurfaceTexture sur) {
199 validate();
200 rsnContextSetSurfaceTexture(mContext, w, h, sur);
201 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800202 native void rsnContextSetPriority(long con, int p);
Jason Sams2e1872f2010-08-17 16:25:41 -0700203 synchronized void nContextSetPriority(int p) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800204 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700205 rsnContextSetPriority(mContext, p);
206 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800207 native void rsnContextDump(long con, int bits);
Jason Sams2e1872f2010-08-17 16:25:41 -0700208 synchronized void nContextDump(int bits) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800209 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700210 rsnContextDump(mContext, bits);
211 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800212 native void rsnContextFinish(long con);
Jason Sams2e1872f2010-08-17 16:25:41 -0700213 synchronized void nContextFinish() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800214 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700215 rsnContextFinish(mContext);
216 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700217
Tim Murrayeff663f2013-11-15 13:08:30 -0800218 native void rsnContextSendMessage(long con, int id, int[] data);
Jason Sams455d6442013-02-05 19:20:18 -0800219 synchronized void nContextSendMessage(int id, int[] data) {
220 validate();
221 rsnContextSendMessage(mContext, id, data);
222 }
223
Tim Murrayeff663f2013-11-15 13:08:30 -0800224 native void rsnContextBindRootScript(long con, int script);
Jason Sams2e1872f2010-08-17 16:25:41 -0700225 synchronized void nContextBindRootScript(int script) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800226 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700227 rsnContextBindRootScript(mContext, script);
228 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800229 native void rsnContextBindSampler(long con, int sampler, int slot);
Jason Sams2e1872f2010-08-17 16:25:41 -0700230 synchronized void nContextBindSampler(int sampler, int slot) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800231 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700232 rsnContextBindSampler(mContext, sampler, slot);
233 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800234 native void rsnContextBindProgramStore(long con, int pfs);
Jason Sams2e1872f2010-08-17 16:25:41 -0700235 synchronized void nContextBindProgramStore(int pfs) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800236 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700237 rsnContextBindProgramStore(mContext, pfs);
238 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800239 native void rsnContextBindProgramFragment(long con, int pf);
Jason Sams2e1872f2010-08-17 16:25:41 -0700240 synchronized void nContextBindProgramFragment(int pf) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800241 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700242 rsnContextBindProgramFragment(mContext, pf);
243 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800244 native void rsnContextBindProgramVertex(long con, int pv);
Jason Sams2e1872f2010-08-17 16:25:41 -0700245 synchronized void nContextBindProgramVertex(int pv) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800246 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700247 rsnContextBindProgramVertex(mContext, pv);
248 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800249 native void rsnContextBindProgramRaster(long con, int pr);
Jason Sams2e1872f2010-08-17 16:25:41 -0700250 synchronized void nContextBindProgramRaster(int pr) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800251 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700252 rsnContextBindProgramRaster(mContext, pr);
253 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800254 native void rsnContextPause(long con);
Jason Sams2e1872f2010-08-17 16:25:41 -0700255 synchronized void nContextPause() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800256 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700257 rsnContextPause(mContext);
258 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800259 native void rsnContextResume(long con);
Jason Sams2e1872f2010-08-17 16:25:41 -0700260 synchronized void nContextResume() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800261 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700262 rsnContextResume(mContext);
263 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700264
Tim Murray460a0492013-11-19 12:45:54 -0800265 native void rsnAssignName(long con, long obj, byte[] name);
266 synchronized void nAssignName(long obj, byte[] name) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800267 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700268 rsnAssignName(mContext, obj, name);
269 }
Tim Murray460a0492013-11-19 12:45:54 -0800270 native String rsnGetName(long con, long obj);
271 synchronized String nGetName(long obj) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800272 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700273 return rsnGetName(mContext, obj);
274 }
Tim Murray06b45672014-01-07 11:13:56 -0800275
276 // nObjDestroy is explicitly _not_ synchronous to prevent crashes in finalizers
Tim Murray460a0492013-11-19 12:45:54 -0800277 native void rsnObjDestroy(long con, long id);
Tim Murray06b45672014-01-07 11:13:56 -0800278 void nObjDestroy(long id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800279 // There is a race condition here. The calling code may be run
280 // by the gc while teardown is occuring. This protects againts
281 // deleting dead objects.
282 if (mContext != 0) {
283 rsnObjDestroy(mContext, id);
284 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700285 }
Jason Samsfe08d992009-05-27 14:45:32 -0700286
Tim Murray460a0492013-11-19 12:45:54 -0800287 native long rsnElementCreate(long con, long type, int kind, boolean norm, int vecSize);
288 synchronized long nElementCreate(long type, int kind, boolean norm, int vecSize) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800289 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700290 return rsnElementCreate(mContext, type, kind, norm, vecSize);
291 }
Tim Murray460a0492013-11-19 12:45:54 -0800292 native long rsnElementCreate2(long con, int[]elements, String[] names, int[] arraySizes);
293 synchronized long nElementCreate2(int[] elements, String[] names, int[] arraySizes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800294 validate();
Jason Sams70d4e502010-09-02 17:35:23 -0700295 return rsnElementCreate2(mContext, elements, names, arraySizes);
Jason Sams2e1872f2010-08-17 16:25:41 -0700296 }
Tim Murray460a0492013-11-19 12:45:54 -0800297 native void rsnElementGetNativeData(long con, long id, int[] elementData);
298 synchronized void nElementGetNativeData(long id, int[] elementData) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800299 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700300 rsnElementGetNativeData(mContext, id, elementData);
301 }
Tim Murray460a0492013-11-19 12:45:54 -0800302 native void rsnElementGetSubElements(long con, long id,
Alex Sakhartchouk7d5f5e72011-10-18 11:08:31 -0700303 int[] IDs, String[] names, int[] arraySizes);
Tim Murray460a0492013-11-19 12:45:54 -0800304 synchronized void nElementGetSubElements(long id, int[] IDs, String[] names, int[] arraySizes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800305 validate();
Alex Sakhartchouk7d5f5e72011-10-18 11:08:31 -0700306 rsnElementGetSubElements(mContext, id, IDs, names, arraySizes);
Jason Sams2e1872f2010-08-17 16:25:41 -0700307 }
Jason Sams768bc022009-09-21 19:41:04 -0700308
Tim Murray460a0492013-11-19 12:45:54 -0800309 native long rsnTypeCreate(long con, long eid, int x, int y, int z, boolean mips, boolean faces, int yuv);
310 synchronized long nTypeCreate(long eid, int x, int y, int z, boolean mips, boolean faces, int yuv) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800311 validate();
Jason Samsb109cc72013-01-07 18:20:12 -0800312 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv);
Jason Sams2e1872f2010-08-17 16:25:41 -0700313 }
Tim Murray460a0492013-11-19 12:45:54 -0800314 native void rsnTypeGetNativeData(long con, long id, int[] typeData);
315 synchronized void nTypeGetNativeData(long id, int[] typeData) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800316 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700317 rsnTypeGetNativeData(mContext, id, typeData);
318 }
Jason Sams768bc022009-09-21 19:41:04 -0700319
Tim Murray460a0492013-11-19 12:45:54 -0800320 native long rsnAllocationCreateTyped(long con, long type, int mip, int usage, int pointer);
321 synchronized long nAllocationCreateTyped(long type, int mip, int usage, int pointer) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800322 validate();
Jason Sams857d0c72011-11-23 15:02:15 -0800323 return rsnAllocationCreateTyped(mContext, type, mip, usage, pointer);
Jason Sams2e1872f2010-08-17 16:25:41 -0700324 }
Tim Murray460a0492013-11-19 12:45:54 -0800325 native long rsnAllocationCreateFromBitmap(long con, long type, int mip, Bitmap bmp, int usage);
326 synchronized long nAllocationCreateFromBitmap(long type, int mip, Bitmap bmp, int usage) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800327 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800328 return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage);
Alex Sakhartchouk26ae3902010-10-11 12:35:15 -0700329 }
Tim Murraya3145512012-12-04 17:59:29 -0800330
Tim Murray460a0492013-11-19 12:45:54 -0800331 native long rsnAllocationCreateBitmapBackedAllocation(long con, long type, int mip, Bitmap bmp, int usage);
332 synchronized long nAllocationCreateBitmapBackedAllocation(long type, int mip, Bitmap bmp, int usage) {
Tim Murraya3145512012-12-04 17:59:29 -0800333 validate();
334 return rsnAllocationCreateBitmapBackedAllocation(mContext, type, mip, bmp, usage);
335 }
336
Tim Murray460a0492013-11-19 12:45:54 -0800337 native long rsnAllocationCubeCreateFromBitmap(long con, long type, int mip, Bitmap bmp, int usage);
338 synchronized long nAllocationCubeCreateFromBitmap(long type, int mip, Bitmap bmp, int usage) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800339 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800340 return rsnAllocationCubeCreateFromBitmap(mContext, type, mip, bmp, usage);
Alex Sakhartchouk67f2e442010-11-18 15:22:43 -0800341 }
Tim Murray460a0492013-11-19 12:45:54 -0800342 native long rsnAllocationCreateBitmapRef(long con, long type, Bitmap bmp);
343 synchronized long nAllocationCreateBitmapRef(long type, Bitmap bmp) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800344 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700345 return rsnAllocationCreateBitmapRef(mContext, type, bmp);
346 }
Tim Murray460a0492013-11-19 12:45:54 -0800347 native long rsnAllocationCreateFromAssetStream(long con, int mips, int assetStream, int usage);
348 synchronized long nAllocationCreateFromAssetStream(int mips, int assetStream, int usage) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800349 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800350 return rsnAllocationCreateFromAssetStream(mContext, mips, assetStream, usage);
351 }
352
Tim Murray460a0492013-11-19 12:45:54 -0800353 native void rsnAllocationCopyToBitmap(long con, long alloc, Bitmap bmp);
354 synchronized void nAllocationCopyToBitmap(long alloc, Bitmap bmp) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800355 validate();
Jason Sams4ef66502010-12-10 16:03:15 -0800356 rsnAllocationCopyToBitmap(mContext, alloc, bmp);
357 }
358
359
Tim Murray460a0492013-11-19 12:45:54 -0800360 native void rsnAllocationSyncAll(long con, long alloc, int src);
361 synchronized void nAllocationSyncAll(long alloc, int src) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800362 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800363 rsnAllocationSyncAll(mContext, alloc, src);
364 }
Tim Murray460a0492013-11-19 12:45:54 -0800365 native Surface rsnAllocationGetSurface(long con, long alloc);
366 synchronized Surface nAllocationGetSurface(long alloc) {
Jason Sams615e7ce2012-01-13 14:01:20 -0800367 validate();
Jason Sams72226e02013-02-22 12:45:54 -0800368 return rsnAllocationGetSurface(mContext, alloc);
Jason Samsfe1d5ff2012-03-23 11:47:26 -0700369 }
Tim Murray460a0492013-11-19 12:45:54 -0800370 native void rsnAllocationSetSurface(long con, long alloc, Surface sur);
371 synchronized void nAllocationSetSurface(long alloc, Surface sur) {
Jason Sams163766c2012-02-15 12:04:24 -0800372 validate();
Jason Samsfb9aa9f2012-03-28 15:30:07 -0700373 rsnAllocationSetSurface(mContext, alloc, sur);
Jason Sams163766c2012-02-15 12:04:24 -0800374 }
Tim Murray460a0492013-11-19 12:45:54 -0800375 native void rsnAllocationIoSend(long con, long alloc);
376 synchronized void nAllocationIoSend(long alloc) {
Jason Sams163766c2012-02-15 12:04:24 -0800377 validate();
378 rsnAllocationIoSend(mContext, alloc);
379 }
Tim Murray460a0492013-11-19 12:45:54 -0800380 native void rsnAllocationIoReceive(long con, long alloc);
381 synchronized void nAllocationIoReceive(long alloc) {
Jason Sams163766c2012-02-15 12:04:24 -0800382 validate();
383 rsnAllocationIoReceive(mContext, alloc);
384 }
385
Jason Sams615e7ce2012-01-13 14:01:20 -0800386
Tim Murray460a0492013-11-19 12:45:54 -0800387 native void rsnAllocationGenerateMipmaps(long con, long alloc);
388 synchronized void nAllocationGenerateMipmaps(long alloc) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800389 validate();
Jason Samsf7086092011-01-12 13:28:37 -0800390 rsnAllocationGenerateMipmaps(mContext, alloc);
391 }
Tim Murray460a0492013-11-19 12:45:54 -0800392 native void rsnAllocationCopyFromBitmap(long con, long alloc, Bitmap bmp);
393 synchronized void nAllocationCopyFromBitmap(long alloc, Bitmap bmp) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800394 validate();
Jason Sams4ef66502010-12-10 16:03:15 -0800395 rsnAllocationCopyFromBitmap(mContext, alloc, bmp);
Jason Sams2e1872f2010-08-17 16:25:41 -0700396 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700397
Jason Sams49a05d72010-12-29 14:31:29 -0800398
Tim Murray460a0492013-11-19 12:45:54 -0800399 native void rsnAllocationData1D(long con, long id, int off, int mip, int count, Object d, int sizeBytes, int dt);
400 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 -0800401 validate();
Jason Samse729a942013-11-06 11:22:02 -0800402 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes, dt.mID);
Jason Sams2e1872f2010-08-17 16:25:41 -0700403 }
Alex Sakhartchoukaae74ad2010-06-04 10:06:50 -0700404
Tim Murray460a0492013-11-19 12:45:54 -0800405 native void rsnAllocationElementData1D(long con,long id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes);
406 synchronized void nAllocationElementData1D(long id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800407 validate();
Jason Sams49a05d72010-12-29 14:31:29 -0800408 rsnAllocationElementData1D(mContext, id, xoff, mip, compIdx, d, sizeBytes);
Jason Sams2e1872f2010-08-17 16:25:41 -0700409 }
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -0700410
Tim Murrayeff663f2013-11-15 13:08:30 -0800411 native void rsnAllocationData2D(long con,
Tim Murray460a0492013-11-19 12:45:54 -0800412 long dstAlloc, int dstXoff, int dstYoff,
Alex Sakhartchouk304b1f52011-06-14 11:13:19 -0700413 int dstMip, int dstFace,
414 int width, int height,
Tim Murray460a0492013-11-19 12:45:54 -0800415 long srcAlloc, int srcXoff, int srcYoff,
Alex Sakhartchouk304b1f52011-06-14 11:13:19 -0700416 int srcMip, int srcFace);
Tim Murray460a0492013-11-19 12:45:54 -0800417 synchronized void nAllocationData2D(long dstAlloc, int dstXoff, int dstYoff,
Alex Sakhartchouk304b1f52011-06-14 11:13:19 -0700418 int dstMip, int dstFace,
419 int width, int height,
Tim Murray460a0492013-11-19 12:45:54 -0800420 long srcAlloc, int srcXoff, int srcYoff,
Alex Sakhartchouk304b1f52011-06-14 11:13:19 -0700421 int srcMip, int srcFace) {
422 validate();
423 rsnAllocationData2D(mContext,
424 dstAlloc, dstXoff, dstYoff,
425 dstMip, dstFace,
426 width, height,
427 srcAlloc, srcXoff, srcYoff,
428 srcMip, srcFace);
429 }
430
Tim Murray460a0492013-11-19 12:45:54 -0800431 native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face,
Jason Samse729a942013-11-06 11:22:02 -0800432 int w, int h, Object d, int sizeBytes, int dt);
Tim Murray460a0492013-11-19 12:45:54 -0800433 synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face,
Jason Samse729a942013-11-06 11:22:02 -0800434 int w, int h, Object d, int sizeBytes, Element.DataType dt) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800435 validate();
Jason Samse729a942013-11-06 11:22:02 -0800436 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes, dt.mID);
Jason Sams2e1872f2010-08-17 16:25:41 -0700437 }
Jason Sams21659ac2013-11-06 15:08:07 -0800438
Tim Murray460a0492013-11-19 12:45:54 -0800439 native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face, Bitmap b);
440 synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face, Bitmap b) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800441 validate();
Jason Samsfa445b92011-01-07 17:00:07 -0800442 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, b);
443 }
Jason Sams49a05d72010-12-29 14:31:29 -0800444
Tim Murrayeff663f2013-11-15 13:08:30 -0800445 native void rsnAllocationData3D(long con,
Tim Murray460a0492013-11-19 12:45:54 -0800446 long dstAlloc, int dstXoff, int dstYoff, int dstZoff,
Jason Samsb05d6892013-04-09 15:59:24 -0700447 int dstMip,
448 int width, int height, int depth,
Tim Murray460a0492013-11-19 12:45:54 -0800449 long srcAlloc, int srcXoff, int srcYoff, int srcZoff,
Jason Samsb05d6892013-04-09 15:59:24 -0700450 int srcMip);
Tim Murray460a0492013-11-19 12:45:54 -0800451 synchronized void nAllocationData3D(long dstAlloc, int dstXoff, int dstYoff, int dstZoff,
Jason Samsb05d6892013-04-09 15:59:24 -0700452 int dstMip,
453 int width, int height, int depth,
Tim Murray460a0492013-11-19 12:45:54 -0800454 long srcAlloc, int srcXoff, int srcYoff, int srcZoff,
Jason Samsb05d6892013-04-09 15:59:24 -0700455 int srcMip) {
456 validate();
457 rsnAllocationData3D(mContext,
458 dstAlloc, dstXoff, dstYoff, dstZoff,
459 dstMip, width, height, depth,
460 srcAlloc, srcXoff, srcYoff, srcZoff, srcMip);
461 }
462
Tim Murray460a0492013-11-19 12:45:54 -0800463 native void rsnAllocationData3D(long con, long id, int xoff, int yoff, int zoff, int mip,
Jason Samse729a942013-11-06 11:22:02 -0800464 int w, int h, int depth, Object d, int sizeBytes, int dt);
Tim Murray460a0492013-11-19 12:45:54 -0800465 synchronized void nAllocationData3D(long id, int xoff, int yoff, int zoff, int mip,
Jason Samse729a942013-11-06 11:22:02 -0800466 int w, int h, int depth, Object d, int sizeBytes, Element.DataType dt) {
Jason Samsb05d6892013-04-09 15:59:24 -0700467 validate();
Jason Samse729a942013-11-06 11:22:02 -0800468 rsnAllocationData3D(mContext, id, xoff, yoff, zoff, mip, w, h, depth, d, sizeBytes, dt.mID);
Jason Samsb05d6892013-04-09 15:59:24 -0700469 }
Jason Samsb05d6892013-04-09 15:59:24 -0700470
Tim Murray460a0492013-11-19 12:45:54 -0800471 native void rsnAllocationRead(long con, long id, Object d, int dt);
472 synchronized void nAllocationRead(long id, Object d, Element.DataType dt) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800473 validate();
Jason Sams21659ac2013-11-06 15:08:07 -0800474 rsnAllocationRead(mContext, id, d, dt.mID);
Jason Samsfa445b92011-01-07 17:00:07 -0800475 }
Jason Sams21659ac2013-11-06 15:08:07 -0800476
Tim Murray460a0492013-11-19 12:45:54 -0800477 native void rsnAllocationRead1D(long con, long id, int off, int mip, int count, Object d,
Jason Sams21659ac2013-11-06 15:08:07 -0800478 int sizeBytes, int dt);
Tim Murray460a0492013-11-19 12:45:54 -0800479 synchronized void nAllocationRead1D(long id, int off, int mip, int count, Object d,
Jason Sams21659ac2013-11-06 15:08:07 -0800480 int sizeBytes, Element.DataType dt) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800481 validate();
Jason Sams21659ac2013-11-06 15:08:07 -0800482 rsnAllocationRead1D(mContext, id, off, mip, count, d, sizeBytes, dt.mID);
Jason Samsfa445b92011-01-07 17:00:07 -0800483 }
Jason Sams21659ac2013-11-06 15:08:07 -0800484
Tim Murray460a0492013-11-19 12:45:54 -0800485 native void rsnAllocationRead2D(long con, long id, int xoff, int yoff, int mip, int face,
Jason Sams21659ac2013-11-06 15:08:07 -0800486 int w, int h, Object d, int sizeBytes, int dt);
Tim Murray460a0492013-11-19 12:45:54 -0800487 synchronized void nAllocationRead2D(long id, int xoff, int yoff, int mip, int face,
Jason Sams21659ac2013-11-06 15:08:07 -0800488 int w, int h, Object d, int sizeBytes, Element.DataType dt) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800489 validate();
Jason Sams21659ac2013-11-06 15:08:07 -0800490 rsnAllocationRead2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes, dt.mID);
Jason Sams2e1872f2010-08-17 16:25:41 -0700491 }
Jason Sams21659ac2013-11-06 15:08:07 -0800492
Tim Murray460a0492013-11-19 12:45:54 -0800493 native long rsnAllocationGetType(long con, long id);
494 synchronized long nAllocationGetType(long id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800495 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700496 return rsnAllocationGetType(mContext, id);
497 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700498
Tim Murray460a0492013-11-19 12:45:54 -0800499 native void rsnAllocationResize1D(long con, long id, int dimX);
500 synchronized void nAllocationResize1D(long id, int dimX) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800501 validate();
Jason Sams5edc6082010-10-05 13:32:49 -0700502 rsnAllocationResize1D(mContext, id, dimX);
503 }
Jason Sams5edc6082010-10-05 13:32:49 -0700504
Tim Murray460a0492013-11-19 12:45:54 -0800505 native long rsnFileA3DCreateFromAssetStream(long con, int assetStream);
506 synchronized long nFileA3DCreateFromAssetStream(int assetStream) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800507 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700508 return rsnFileA3DCreateFromAssetStream(mContext, assetStream);
509 }
Tim Murray460a0492013-11-19 12:45:54 -0800510 native long rsnFileA3DCreateFromFile(long con, String path);
511 synchronized long nFileA3DCreateFromFile(String path) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800512 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800513 return rsnFileA3DCreateFromFile(mContext, path);
514 }
Tim Murray460a0492013-11-19 12:45:54 -0800515 native long rsnFileA3DCreateFromAsset(long con, AssetManager mgr, String path);
516 synchronized long nFileA3DCreateFromAsset(AssetManager mgr, String path) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800517 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800518 return rsnFileA3DCreateFromAsset(mContext, mgr, path);
519 }
Tim Murray460a0492013-11-19 12:45:54 -0800520 native int rsnFileA3DGetNumIndexEntries(long con, long fileA3D);
521 synchronized int nFileA3DGetNumIndexEntries(long fileA3D) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800522 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700523 return rsnFileA3DGetNumIndexEntries(mContext, fileA3D);
524 }
Tim Murray460a0492013-11-19 12:45:54 -0800525 native void rsnFileA3DGetIndexEntries(long con, long fileA3D, int numEntries, int[] IDs, String[] names);
526 synchronized void nFileA3DGetIndexEntries(long fileA3D, int numEntries, int[] IDs, String[] names) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800527 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700528 rsnFileA3DGetIndexEntries(mContext, fileA3D, numEntries, IDs, names);
529 }
Tim Murray460a0492013-11-19 12:45:54 -0800530 native int rsnFileA3DGetEntryByIndex(long con, long fileA3D, int index);
531 synchronized int nFileA3DGetEntryByIndex(long fileA3D, int index) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800532 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700533 return rsnFileA3DGetEntryByIndex(mContext, fileA3D, index);
534 }
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700535
Tim Murrayeff663f2013-11-15 13:08:30 -0800536 native int rsnFontCreateFromFile(long con, String fileName, float size, int dpi);
Alex Sakhartchouke27cdee2010-12-17 11:41:08 -0800537 synchronized int nFontCreateFromFile(String fileName, float size, int dpi) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800538 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700539 return rsnFontCreateFromFile(mContext, fileName, size, dpi);
540 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800541 native int rsnFontCreateFromAssetStream(long con, String name, float size, int dpi, int assetStream);
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800542 synchronized int nFontCreateFromAssetStream(String name, float size, int dpi, int assetStream) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800543 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800544 return rsnFontCreateFromAssetStream(mContext, name, size, dpi, assetStream);
545 }
Tim Murrayeff663f2013-11-15 13:08:30 -0800546 native int rsnFontCreateFromAsset(long con, AssetManager mgr, String path, float size, int dpi);
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800547 synchronized int nFontCreateFromAsset(AssetManager mgr, String path, float size, int dpi) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800548 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800549 return rsnFontCreateFromAsset(mContext, mgr, path, size, dpi);
550 }
Jason Sams22534172009-08-04 16:58:20 -0700551
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700552
Tim Murray460a0492013-11-19 12:45:54 -0800553 native void rsnScriptBindAllocation(long con, long script, long alloc, int slot);
554 synchronized void nScriptBindAllocation(long script, long alloc, int slot) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800555 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700556 rsnScriptBindAllocation(mContext, script, alloc, slot);
557 }
Tim Murray460a0492013-11-19 12:45:54 -0800558 native void rsnScriptSetTimeZone(long con, long script, byte[] timeZone);
559 synchronized void nScriptSetTimeZone(long script, byte[] timeZone) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800560 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700561 rsnScriptSetTimeZone(mContext, script, timeZone);
562 }
Tim Murray460a0492013-11-19 12:45:54 -0800563 native void rsnScriptInvoke(long con, long id, int slot);
564 synchronized void nScriptInvoke(long id, int slot) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800565 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700566 rsnScriptInvoke(mContext, id, slot);
567 }
Tim Murray460a0492013-11-19 12:45:54 -0800568 native void rsnScriptForEach(long con, long id, int slot, long ain, long aout, byte[] params);
569 native void rsnScriptForEach(long con, long id, int slot, long ain, long aout);
570 native void rsnScriptForEachClipped(long con, long id, int slot, long ain, long aout, byte[] params,
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800571 int xstart, int xend, int ystart, int yend, int zstart, int zend);
Tim Murray460a0492013-11-19 12:45:54 -0800572 native void rsnScriptForEachClipped(long con, long id, int slot, long ain, long aout,
Stephen Hinesdac6ed02013-02-13 00:09:02 -0800573 int xstart, int xend, int ystart, int yend, int zstart, int zend);
Tim Murray460a0492013-11-19 12:45:54 -0800574 synchronized void nScriptForEach(long id, int slot, long ain, long aout, byte[] params) {
Jason Sams6e494d32011-04-27 16:33:11 -0700575 validate();
576 if (params == null) {
577 rsnScriptForEach(mContext, id, slot, ain, aout);
578 } else {
579 rsnScriptForEach(mContext, id, slot, ain, aout, params);
580 }
581 }
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800582
Tim Murray460a0492013-11-19 12:45:54 -0800583 synchronized void nScriptForEachClipped(long id, int slot, long ain, long aout, byte[] params,
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800584 int xstart, int xend, int ystart, int yend, int zstart, int zend) {
585 validate();
Stephen Hinesdac6ed02013-02-13 00:09:02 -0800586 if (params == null) {
587 rsnScriptForEachClipped(mContext, id, slot, ain, aout, xstart, xend, ystart, yend, zstart, zend);
588 } else {
589 rsnScriptForEachClipped(mContext, id, slot, ain, aout, params, xstart, xend, ystart, yend, zstart, zend);
590 }
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800591 }
592
Tim Murray460a0492013-11-19 12:45:54 -0800593 native void rsnScriptInvokeV(long con, long id, int slot, byte[] params);
594 synchronized void nScriptInvokeV(long id, int slot, byte[] params) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800595 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700596 rsnScriptInvokeV(mContext, id, slot, params);
597 }
Tim Murray7c4caad2013-04-10 16:21:40 -0700598
Tim Murray460a0492013-11-19 12:45:54 -0800599 native void rsnScriptSetVarI(long con, long id, int slot, int val);
600 synchronized void nScriptSetVarI(long id, int slot, int val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800601 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700602 rsnScriptSetVarI(mContext, id, slot, val);
603 }
Tim Murray460a0492013-11-19 12:45:54 -0800604 native int rsnScriptGetVarI(long con, long id, int slot);
605 synchronized int nScriptGetVarI(long id, int slot) {
Tim Murray7c4caad2013-04-10 16:21:40 -0700606 validate();
607 return rsnScriptGetVarI(mContext, id, slot);
608 }
609
Tim Murray460a0492013-11-19 12:45:54 -0800610 native void rsnScriptSetVarJ(long con, long id, int slot, long val);
611 synchronized void nScriptSetVarJ(long id, int slot, long val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800612 validate();
Stephen Hines031ec58c2010-10-11 10:54:21 -0700613 rsnScriptSetVarJ(mContext, id, slot, val);
614 }
Tim Murray460a0492013-11-19 12:45:54 -0800615 native long rsnScriptGetVarJ(long con, long id, int slot);
616 synchronized long nScriptGetVarJ(long id, int slot) {
Tim Murray7c4caad2013-04-10 16:21:40 -0700617 validate();
618 return rsnScriptGetVarJ(mContext, id, slot);
619 }
620
Tim Murray460a0492013-11-19 12:45:54 -0800621 native void rsnScriptSetVarF(long con, long id, int slot, float val);
622 synchronized void nScriptSetVarF(long id, int slot, float val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800623 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700624 rsnScriptSetVarF(mContext, id, slot, val);
625 }
Tim Murray460a0492013-11-19 12:45:54 -0800626 native float rsnScriptGetVarF(long con, long id, int slot);
627 synchronized float nScriptGetVarF(long id, int slot) {
Tim Murray7c4caad2013-04-10 16:21:40 -0700628 validate();
629 return rsnScriptGetVarF(mContext, id, slot);
630 }
Tim Murray460a0492013-11-19 12:45:54 -0800631 native void rsnScriptSetVarD(long con, long id, int slot, double val);
632 synchronized void nScriptSetVarD(long id, int slot, double val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800633 validate();
Stephen Hinesca54ec32010-09-20 17:20:30 -0700634 rsnScriptSetVarD(mContext, id, slot, val);
635 }
Tim Murray460a0492013-11-19 12:45:54 -0800636 native double rsnScriptGetVarD(long con, long id, int slot);
637 synchronized double nScriptGetVarD(long id, int slot) {
Tim Murray7c4caad2013-04-10 16:21:40 -0700638 validate();
639 return rsnScriptGetVarD(mContext, id, slot);
640 }
Tim Murray460a0492013-11-19 12:45:54 -0800641 native void rsnScriptSetVarV(long con, long id, int slot, byte[] val);
642 synchronized void nScriptSetVarV(long id, int slot, byte[] val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800643 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700644 rsnScriptSetVarV(mContext, id, slot, val);
645 }
Tim Murray460a0492013-11-19 12:45:54 -0800646 native void rsnScriptGetVarV(long con, long id, int slot, byte[] val);
647 synchronized void nScriptGetVarV(long id, int slot, byte[] val) {
Tim Murray7c4caad2013-04-10 16:21:40 -0700648 validate();
649 rsnScriptGetVarV(mContext, id, slot, val);
650 }
Tim Murray460a0492013-11-19 12:45:54 -0800651 native void rsnScriptSetVarVE(long con, long id, int slot, byte[] val,
652 long e, int[] dims);
653 synchronized void nScriptSetVarVE(long id, int slot, byte[] val,
654 long e, int[] dims) {
Stephen Hinesadeb8092012-04-20 14:26:06 -0700655 validate();
656 rsnScriptSetVarVE(mContext, id, slot, val, e, dims);
657 }
Tim Murray460a0492013-11-19 12:45:54 -0800658 native void rsnScriptSetVarObj(long con, long id, int slot, long val);
659 synchronized void nScriptSetVarObj(long id, int slot, long val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800660 validate();
Jason Sams6f4cf0b2010-11-16 17:37:02 -0800661 rsnScriptSetVarObj(mContext, id, slot, val);
662 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700663
Tim Murrayeff663f2013-11-15 13:08:30 -0800664 native int rsnScriptCCreate(long con, String resName, String cacheDir,
Jason Samse4a06c52011-03-16 16:29:28 -0700665 byte[] script, int length);
666 synchronized int nScriptCCreate(String resName, String cacheDir, byte[] script, int length) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800667 validate();
Jason Samse4a06c52011-03-16 16:29:28 -0700668 return rsnScriptCCreate(mContext, resName, cacheDir, script, length);
Jason Sams2e1872f2010-08-17 16:25:41 -0700669 }
Jason Samsebfb4362009-09-23 13:57:02 -0700670
Tim Murray460a0492013-11-19 12:45:54 -0800671 native long rsnScriptIntrinsicCreate(long con, int id, long eid);
672 synchronized long nScriptIntrinsicCreate(int id, long eid) {
Jason Sams6ab97682012-08-10 12:09:43 -0700673 validate();
674 return rsnScriptIntrinsicCreate(mContext, id, eid);
675 }
676
Tim Murray460a0492013-11-19 12:45:54 -0800677 native long rsnScriptKernelIDCreate(long con, long sid, int slot, int sig);
678 synchronized long nScriptKernelIDCreate(long sid, int slot, int sig) {
Jason Sams08a81582012-09-18 12:32:10 -0700679 validate();
680 return rsnScriptKernelIDCreate(mContext, sid, slot, sig);
681 }
682
Tim Murray460a0492013-11-19 12:45:54 -0800683 native long rsnScriptFieldIDCreate(long con, long sid, int slot);
684 synchronized long nScriptFieldIDCreate(long sid, int slot) {
Jason Sams08a81582012-09-18 12:32:10 -0700685 validate();
686 return rsnScriptFieldIDCreate(mContext, sid, slot);
687 }
688
Tim Murray460a0492013-11-19 12:45:54 -0800689 native long rsnScriptGroupCreate(long con, int[] kernels, int[] src, int[] dstk, int[] dstf, int[] types);
690 synchronized long nScriptGroupCreate(int[] kernels, int[] src, int[] dstk, int[] dstf, int[] types) {
Jason Sams08a81582012-09-18 12:32:10 -0700691 validate();
692 return rsnScriptGroupCreate(mContext, kernels, src, dstk, dstf, types);
693 }
694
Tim Murray460a0492013-11-19 12:45:54 -0800695 native void rsnScriptGroupSetInput(long con, long group, long kernel, long alloc);
696 synchronized void nScriptGroupSetInput(long group, long kernel, long alloc) {
Jason Sams08a81582012-09-18 12:32:10 -0700697 validate();
698 rsnScriptGroupSetInput(mContext, group, kernel, alloc);
699 }
700
Tim Murray460a0492013-11-19 12:45:54 -0800701 native void rsnScriptGroupSetOutput(long con, long group, long kernel, long alloc);
702 synchronized void nScriptGroupSetOutput(long group, long kernel, long alloc) {
Jason Sams08a81582012-09-18 12:32:10 -0700703 validate();
704 rsnScriptGroupSetOutput(mContext, group, kernel, alloc);
705 }
706
Tim Murray460a0492013-11-19 12:45:54 -0800707 native void rsnScriptGroupExecute(long con, long group);
708 synchronized void nScriptGroupExecute(long group) {
Jason Sams08a81582012-09-18 12:32:10 -0700709 validate();
710 rsnScriptGroupExecute(mContext, group);
711 }
712
Tim Murrayeff663f2013-11-15 13:08:30 -0800713 native int rsnSamplerCreate(long con, int magFilter, int minFilter,
Alex Sakhartchouka89094a2011-05-04 17:45:36 -0700714 int wrapS, int wrapT, int wrapR, float aniso);
715 synchronized int nSamplerCreate(int magFilter, int minFilter,
716 int wrapS, int wrapT, int wrapR, float aniso) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800717 validate();
Alex Sakhartchouka89094a2011-05-04 17:45:36 -0700718 return rsnSamplerCreate(mContext, magFilter, minFilter, wrapS, wrapT, wrapR, aniso);
Jason Sams2e1872f2010-08-17 16:25:41 -0700719 }
Jason Sams0011bcf2009-12-15 12:58:36 -0800720
Tim Murrayeff663f2013-11-15 13:08:30 -0800721 native int rsnProgramStoreCreate(long con, boolean r, boolean g, boolean b, boolean a,
Jason Sams331bf9b2011-04-06 11:23:54 -0700722 boolean depthMask, boolean dither,
723 int srcMode, int dstMode, int depthFunc);
724 synchronized int nProgramStoreCreate(boolean r, boolean g, boolean b, boolean a,
725 boolean depthMask, boolean dither,
726 int srcMode, int dstMode, int depthFunc) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800727 validate();
Jason Samsbd184c52011-04-06 11:44:47 -0700728 return rsnProgramStoreCreate(mContext, r, g, b, a, depthMask, dither, srcMode,
729 dstMode, depthFunc);
Jason Sams2e1872f2010-08-17 16:25:41 -0700730 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700731
Tim Murray460a0492013-11-19 12:45:54 -0800732 native long rsnProgramRasterCreate(long con, boolean pointSprite, int cullMode);
733 synchronized long nProgramRasterCreate(boolean pointSprite, int cullMode) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800734 validate();
Jason Sams94aaed32011-09-23 14:18:53 -0700735 return rsnProgramRasterCreate(mContext, pointSprite, cullMode);
Jason Sams2e1872f2010-08-17 16:25:41 -0700736 }
Jason Sams1fe9b8c2009-06-11 14:46:10 -0700737
Tim Murray460a0492013-11-19 12:45:54 -0800738 native void rsnProgramBindConstants(long con, long pv, int slot, long mID);
739 synchronized void nProgramBindConstants(long pv, int slot, long mID) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800740 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700741 rsnProgramBindConstants(mContext, pv, slot, mID);
742 }
Tim Murray460a0492013-11-19 12:45:54 -0800743 native void rsnProgramBindTexture(long con, long vpf, int slot, long a);
744 synchronized void nProgramBindTexture(long vpf, int slot, long a) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800745 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700746 rsnProgramBindTexture(mContext, vpf, slot, a);
747 }
Tim Murray460a0492013-11-19 12:45:54 -0800748 native void rsnProgramBindSampler(long con, long vpf, int slot, long s);
749 synchronized void nProgramBindSampler(long vpf, int slot, long s) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800750 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700751 rsnProgramBindSampler(mContext, vpf, slot, s);
752 }
Tim Murray460a0492013-11-19 12:45:54 -0800753 native long rsnProgramFragmentCreate(long con, String shader, String[] texNames, int[] params);
754 synchronized long nProgramFragmentCreate(String shader, String[] texNames, int[] params) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800755 validate();
Alex Sakhartchouk2123b462012-02-15 16:21:46 -0800756 return rsnProgramFragmentCreate(mContext, shader, texNames, params);
Jason Sams2e1872f2010-08-17 16:25:41 -0700757 }
Tim Murray460a0492013-11-19 12:45:54 -0800758 native long rsnProgramVertexCreate(long con, String shader, String[] texNames, int[] params);
759 synchronized long nProgramVertexCreate(String shader, String[] texNames, int[] params) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800760 validate();
Alex Sakhartchouk2123b462012-02-15 16:21:46 -0800761 return rsnProgramVertexCreate(mContext, shader, texNames, params);
Jason Sams2e1872f2010-08-17 16:25:41 -0700762 }
Alex Sakhartchouk164aaed2010-07-01 16:14:06 -0700763
Tim Murray460a0492013-11-19 12:45:54 -0800764 native long rsnMeshCreate(long con, int[] vtx, int[] idx, int[] prim);
765 synchronized long nMeshCreate(int[] vtx, int[] idx, int[] prim) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800766 validate();
Alex Sakhartchouk25999a02011-05-12 10:38:03 -0700767 return rsnMeshCreate(mContext, vtx, idx, prim);
Alex Sakhartchouk9d71e212010-11-08 15:10:52 -0800768 }
Tim Murray460a0492013-11-19 12:45:54 -0800769 native int rsnMeshGetVertexBufferCount(long con, long id);
770 synchronized int nMeshGetVertexBufferCount(long id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800771 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700772 return rsnMeshGetVertexBufferCount(mContext, id);
773 }
Tim Murray460a0492013-11-19 12:45:54 -0800774 native int rsnMeshGetIndexCount(long con, long id);
775 synchronized int nMeshGetIndexCount(long id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800776 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700777 return rsnMeshGetIndexCount(mContext, id);
778 }
Tim Murray460a0492013-11-19 12:45:54 -0800779 native void rsnMeshGetVertices(long con, long id, int[] vtxIds, int vtxIdCount);
780 synchronized void nMeshGetVertices(long id, int[] vtxIds, int vtxIdCount) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800781 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700782 rsnMeshGetVertices(mContext, id, vtxIds, vtxIdCount);
783 }
Tim Murray460a0492013-11-19 12:45:54 -0800784 native void rsnMeshGetIndices(long con, long id, int[] idxIds, int[] primitives, int vtxIdCount);
785 synchronized void nMeshGetIndices(long id, int[] idxIds, int[] primitives, int vtxIdCount) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800786 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700787 rsnMeshGetIndices(mContext, id, idxIds, primitives, vtxIdCount);
788 }
789
Tim Murray460a0492013-11-19 12:45:54 -0800790 native long rsnPathCreate(long con, int prim, boolean isStatic, long vtx, int loop, float q);
791 synchronized long nPathCreate(int prim, boolean isStatic, long vtx, int loop, float q) {
Jason Samsf15ed012011-10-31 13:23:43 -0700792 validate();
793 return rsnPathCreate(mContext, prim, isStatic, vtx, loop, q);
794 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700795
Tim Murrayeff663f2013-11-15 13:08:30 -0800796 long mDev;
797 long mContext;
Romain Guy650a3eb2009-08-31 14:06:43 -0700798 @SuppressWarnings({"FieldCanBeLocal"})
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800799 MessageThread mMessageThread;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700800
Jason Sams8cb39de2010-06-01 15:47:01 -0700801 Element mElement_U8;
802 Element mElement_I8;
803 Element mElement_U16;
804 Element mElement_I16;
805 Element mElement_U32;
806 Element mElement_I32;
Stephen Hines52d83632010-10-11 16:10:42 -0700807 Element mElement_U64;
Stephen Hinesef1dac22010-10-01 15:39:33 -0700808 Element mElement_I64;
Jason Sams8cb39de2010-06-01 15:47:01 -0700809 Element mElement_F32;
Stephen Hines02f417052010-09-30 15:19:22 -0700810 Element mElement_F64;
Jason Samsf110d4b2010-06-21 17:42:41 -0700811 Element mElement_BOOLEAN;
Jason Sams3c0dfba2009-09-27 17:50:38 -0700812
Jason Sams8cb39de2010-06-01 15:47:01 -0700813 Element mElement_ELEMENT;
814 Element mElement_TYPE;
815 Element mElement_ALLOCATION;
816 Element mElement_SAMPLER;
817 Element mElement_SCRIPT;
818 Element mElement_MESH;
819 Element mElement_PROGRAM_FRAGMENT;
820 Element mElement_PROGRAM_VERTEX;
821 Element mElement_PROGRAM_RASTER;
822 Element mElement_PROGRAM_STORE;
Stephen Hines3a291412012-04-11 17:27:29 -0700823 Element mElement_FONT;
Jason Samsa70f4162010-03-26 15:33:42 -0700824
Jason Sams3c0dfba2009-09-27 17:50:38 -0700825 Element mElement_A_8;
826 Element mElement_RGB_565;
827 Element mElement_RGB_888;
828 Element mElement_RGBA_5551;
829 Element mElement_RGBA_4444;
830 Element mElement_RGBA_8888;
831
Jason Sams8cb39de2010-06-01 15:47:01 -0700832 Element mElement_FLOAT_2;
833 Element mElement_FLOAT_3;
834 Element mElement_FLOAT_4;
Stephen Hines836c4a52011-06-01 14:38:10 -0700835
836 Element mElement_DOUBLE_2;
837 Element mElement_DOUBLE_3;
838 Element mElement_DOUBLE_4;
839
840 Element mElement_UCHAR_2;
841 Element mElement_UCHAR_3;
Jason Sams8cb39de2010-06-01 15:47:01 -0700842 Element mElement_UCHAR_4;
Jason Sams7d787b42009-11-15 12:14:26 -0800843
Stephen Hines836c4a52011-06-01 14:38:10 -0700844 Element mElement_CHAR_2;
845 Element mElement_CHAR_3;
846 Element mElement_CHAR_4;
847
848 Element mElement_USHORT_2;
849 Element mElement_USHORT_3;
850 Element mElement_USHORT_4;
851
852 Element mElement_SHORT_2;
853 Element mElement_SHORT_3;
854 Element mElement_SHORT_4;
855
856 Element mElement_UINT_2;
857 Element mElement_UINT_3;
858 Element mElement_UINT_4;
859
860 Element mElement_INT_2;
861 Element mElement_INT_3;
862 Element mElement_INT_4;
863
864 Element mElement_ULONG_2;
865 Element mElement_ULONG_3;
866 Element mElement_ULONG_4;
867
868 Element mElement_LONG_2;
869 Element mElement_LONG_3;
870 Element mElement_LONG_4;
871
Tim Murray932e78e2013-09-03 11:42:26 -0700872 Element mElement_YUV;
873
Jason Sams1d45c472010-08-25 14:31:48 -0700874 Element mElement_MATRIX_4X4;
875 Element mElement_MATRIX_3X3;
876 Element mElement_MATRIX_2X2;
877
Jason Sams4d339932010-05-11 14:03:58 -0700878 Sampler mSampler_CLAMP_NEAREST;
879 Sampler mSampler_CLAMP_LINEAR;
880 Sampler mSampler_CLAMP_LINEAR_MIP_LINEAR;
881 Sampler mSampler_WRAP_NEAREST;
882 Sampler mSampler_WRAP_LINEAR;
883 Sampler mSampler_WRAP_LINEAR_MIP_LINEAR;
Tim Murray6b9b2ca2013-02-15 13:25:55 -0800884 Sampler mSampler_MIRRORED_REPEAT_NEAREST;
885 Sampler mSampler_MIRRORED_REPEAT_LINEAR;
886 Sampler mSampler_MIRRORED_REPEAT_LINEAR_MIP_LINEAR;
Jason Sams4d339932010-05-11 14:03:58 -0700887
Alex Sakhartchoukd36f2482010-08-24 11:37:33 -0700888 ProgramStore mProgramStore_BLEND_NONE_DEPTH_TEST;
889 ProgramStore mProgramStore_BLEND_NONE_DEPTH_NO_DEPTH;
Alex Sakhartchoukd36f2482010-08-24 11:37:33 -0700890 ProgramStore mProgramStore_BLEND_ALPHA_DEPTH_TEST;
891 ProgramStore mProgramStore_BLEND_ALPHA_DEPTH_NO_DEPTH;
Alex Sakhartchouk32e09b52010-08-23 10:24:10 -0700892
Alex Sakhartchoukd36f2482010-08-24 11:37:33 -0700893 ProgramRaster mProgramRaster_CULL_BACK;
894 ProgramRaster mProgramRaster_CULL_FRONT;
895 ProgramRaster mProgramRaster_CULL_NONE;
Alex Sakhartchouk32e09b52010-08-23 10:24:10 -0700896
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700897 ///////////////////////////////////////////////////////////////////////////////////
Jack Palevich43702d82009-05-28 13:38:16 -0700898 //
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700899
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700900 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -0700901 * The base class from which an application should derive in order
902 * to receive RS messages from scripts. When a script calls {@code
903 * rsSendToClient}, the data fields will be filled, and the run
904 * method will be called on a separate thread. This will occur
905 * some time after {@code rsSendToClient} completes in the script,
906 * as {@code rsSendToClient} is asynchronous. Message handlers are
907 * not guaranteed to have completed when {@link
908 * android.renderscript.RenderScript#finish} returns.
Jason Sams27676fe2010-11-10 17:00:59 -0800909 *
910 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800911 public static class RSMessageHandler implements Runnable {
Jason Sams516c3192009-10-06 13:58:47 -0700912 protected int[] mData;
913 protected int mID;
Jason Sams1c415172010-11-08 17:06:46 -0800914 protected int mLength;
Jason Sams516c3192009-10-06 13:58:47 -0700915 public void run() {
916 }
917 }
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700918 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -0700919 * If an application is expecting messages, it should set this
920 * field to an instance of {@link RSMessageHandler}. This
921 * instance will receive all the user messages sent from {@code
922 * sendToClient} by scripts from this context.
Jason Sams27676fe2010-11-10 17:00:59 -0800923 *
924 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800925 RSMessageHandler mMessageCallback = null;
926
927 public void setMessageHandler(RSMessageHandler msg) {
928 mMessageCallback = msg;
929 }
930 public RSMessageHandler getMessageHandler() {
931 return mMessageCallback;
932 }
Jason Sams516c3192009-10-06 13:58:47 -0700933
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700934 /**
Jason Sams02d56d92013-04-12 16:40:50 -0700935 * Place a message into the message queue to be sent back to the message
936 * handler once all previous commands have been executed.
Jason Sams455d6442013-02-05 19:20:18 -0800937 *
938 * @param id
939 * @param data
940 */
941 public void sendMessage(int id, int[] data) {
942 nContextSendMessage(id, data);
943 }
944
945 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -0700946 * The runtime error handler base class. An application should derive from this class
947 * if it wishes to install an error handler. When errors occur at runtime,
948 * the fields in this class will be filled, and the run method will be called.
Jason Sams27676fe2010-11-10 17:00:59 -0800949 *
950 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800951 public static class RSErrorHandler implements Runnable {
Jason Sams1c415172010-11-08 17:06:46 -0800952 protected String mErrorMessage;
953 protected int mErrorNum;
954 public void run() {
955 }
956 }
Jason Sams27676fe2010-11-10 17:00:59 -0800957
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700958 /**
Jason Sams27676fe2010-11-10 17:00:59 -0800959 * Application Error handler. All runtime errors will be dispatched to the
960 * instance of RSAsyncError set here. If this field is null a
Tim Murrayc11e25c2013-04-09 11:01:01 -0700961 * {@link RSRuntimeException} will instead be thrown with details about the error.
Jason Sams27676fe2010-11-10 17:00:59 -0800962 * This will cause program termaination.
963 *
964 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800965 RSErrorHandler mErrorCallback = null;
966
967 public void setErrorHandler(RSErrorHandler msg) {
968 mErrorCallback = msg;
969 }
970 public RSErrorHandler getErrorHandler() {
971 return mErrorCallback;
972 }
Jason Sams1c415172010-11-08 17:06:46 -0800973
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700974 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -0700975 * RenderScript worker thread priority enumeration. The default value is
976 * NORMAL. Applications wishing to do background processing should set
977 * their priority to LOW to avoid starving forground processes.
Jason Sams27676fe2010-11-10 17:00:59 -0800978 */
Jason Sams7d787b42009-11-15 12:14:26 -0800979 public enum Priority {
Glenn Kasten260c77a2011-06-01 17:25:54 -0700980 LOW (Process.THREAD_PRIORITY_BACKGROUND + (5 * Process.THREAD_PRIORITY_LESS_FAVORABLE)),
981 NORMAL (Process.THREAD_PRIORITY_DISPLAY);
Jason Sams7d787b42009-11-15 12:14:26 -0800982
983 int mID;
984 Priority(int id) {
985 mID = id;
986 }
987 }
988
Jason Sams771bebb2009-12-07 12:40:12 -0800989 void validate() {
990 if (mContext == 0) {
Jason Samsc1d62102010-11-04 14:32:19 -0700991 throw new RSInvalidStateException("Calling RS with no Context active.");
Jason Sams771bebb2009-12-07 12:40:12 -0800992 }
993 }
994
Jason Sams27676fe2010-11-10 17:00:59 -0800995
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700996 /**
Jason Sams27676fe2010-11-10 17:00:59 -0800997 * Change the priority of the worker threads for this context.
998 *
999 * @param p New priority to be set.
1000 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001001 public void setPriority(Priority p) {
Jason Sams5dbfe932010-01-27 14:41:43 -08001002 validate();
Jason Sams7d787b42009-11-15 12:14:26 -08001003 nContextSetPriority(p.mID);
1004 }
1005
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001006 static class MessageThread extends Thread {
Jason Sams516c3192009-10-06 13:58:47 -07001007 RenderScript mRS;
1008 boolean mRun = true;
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001009 int[] mAuxData = new int[2];
Jason Sams1c415172010-11-08 17:06:46 -08001010
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001011 static final int RS_MESSAGE_TO_CLIENT_NONE = 0;
1012 static final int RS_MESSAGE_TO_CLIENT_EXCEPTION = 1;
1013 static final int RS_MESSAGE_TO_CLIENT_RESIZE = 2;
1014 static final int RS_MESSAGE_TO_CLIENT_ERROR = 3;
1015 static final int RS_MESSAGE_TO_CLIENT_USER = 4;
Jason Sams739c8262013-04-11 18:07:52 -07001016 static final int RS_MESSAGE_TO_CLIENT_NEW_BUFFER = 5;
Jason Sams516c3192009-10-06 13:58:47 -07001017
Stephen Hines42028a82013-04-17 19:22:01 -07001018 static final int RS_ERROR_FATAL_DEBUG = 0x0800;
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001019 static final int RS_ERROR_FATAL_UNKNOWN = 0x1000;
Jason Samsadd9d962010-11-22 16:20:16 -08001020
Jason Sams516c3192009-10-06 13:58:47 -07001021 MessageThread(RenderScript rs) {
1022 super("RSMessageThread");
1023 mRS = rs;
1024
1025 }
1026
1027 public void run() {
1028 // This function is a temporary solution. The final solution will
1029 // used typed allocations where the message id is the type indicator.
1030 int[] rbuf = new int[16];
Jason Sams2e1872f2010-08-17 16:25:41 -07001031 mRS.nContextInitToClient(mRS.mContext);
Jason Sams516c3192009-10-06 13:58:47 -07001032 while(mRun) {
Jason Sams1d45c472010-08-25 14:31:48 -07001033 rbuf[0] = 0;
Jason Samsedbfabd2011-05-17 15:01:29 -07001034 int msg = mRS.nContextPeekMessage(mRS.mContext, mAuxData);
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001035 int size = mAuxData[1];
1036 int subID = mAuxData[0];
Jason Sams1c415172010-11-08 17:06:46 -08001037
1038 if (msg == RS_MESSAGE_TO_CLIENT_USER) {
1039 if ((size>>2) >= rbuf.length) {
1040 rbuf = new int[(size + 3) >> 2];
1041 }
Jason Samsedbfabd2011-05-17 15:01:29 -07001042 if (mRS.nContextGetUserMessage(mRS.mContext, rbuf) !=
1043 RS_MESSAGE_TO_CLIENT_USER) {
Tim Murrayc11e25c2013-04-09 11:01:01 -07001044 throw new RSDriverException("Error processing message from RenderScript.");
Jason Samsedbfabd2011-05-17 15:01:29 -07001045 }
Jason Sams1c415172010-11-08 17:06:46 -08001046
1047 if(mRS.mMessageCallback != null) {
1048 mRS.mMessageCallback.mData = rbuf;
1049 mRS.mMessageCallback.mID = subID;
1050 mRS.mMessageCallback.mLength = size;
1051 mRS.mMessageCallback.run();
Jason Sams1d45c472010-08-25 14:31:48 -07001052 } else {
Jason Sams1c415172010-11-08 17:06:46 -08001053 throw new RSInvalidStateException("Received a message from the script with no message handler installed.");
Jason Sams516c3192009-10-06 13:58:47 -07001054 }
Stephen Hinesab98bb62010-09-24 14:38:30 -07001055 continue;
Jason Sams516c3192009-10-06 13:58:47 -07001056 }
Jason Sams1c415172010-11-08 17:06:46 -08001057
1058 if (msg == RS_MESSAGE_TO_CLIENT_ERROR) {
1059 String e = mRS.nContextGetErrorMessage(mRS.mContext);
1060
Stephen Hines42028a82013-04-17 19:22:01 -07001061 // Throw RSRuntimeException under the following conditions:
1062 //
1063 // 1) It is an unknown fatal error.
1064 // 2) It is a debug fatal error, and we are not in a
1065 // debug context.
1066 // 3) It is a debug fatal error, and we do not have an
1067 // error callback.
1068 if (subID >= RS_ERROR_FATAL_UNKNOWN ||
1069 (subID >= RS_ERROR_FATAL_DEBUG &&
1070 (mRS.mContextType != ContextType.DEBUG ||
1071 mRS.mErrorCallback == null))) {
Jason Samsadd9d962010-11-22 16:20:16 -08001072 throw new RSRuntimeException("Fatal error " + subID + ", details: " + e);
1073 }
1074
Jason Sams1c415172010-11-08 17:06:46 -08001075 if(mRS.mErrorCallback != null) {
1076 mRS.mErrorCallback.mErrorMessage = e;
1077 mRS.mErrorCallback.mErrorNum = subID;
1078 mRS.mErrorCallback.run();
1079 } else {
Jason Samsa4b7bc92013-02-05 15:05:39 -08001080 android.util.Log.e(LOG_TAG, "non fatal RS error, " + e);
Stephen Hinesbe74bdd2012-02-03 15:29:36 -08001081 // Do not throw here. In these cases, we do not have
1082 // a fatal error.
Jason Sams1c415172010-11-08 17:06:46 -08001083 }
1084 continue;
1085 }
1086
Jason Sams739c8262013-04-11 18:07:52 -07001087 if (msg == RS_MESSAGE_TO_CLIENT_NEW_BUFFER) {
1088 Allocation.sendBufferNotification(subID);
1089 continue;
1090 }
1091
Jason Sams1c415172010-11-08 17:06:46 -08001092 // 2: teardown.
1093 // But we want to avoid starving other threads during
1094 // teardown by yielding until the next line in the destructor
1095 // can execute to set mRun = false
1096 try {
1097 sleep(1, 0);
1098 } catch(InterruptedException e) {
Jason Sams516c3192009-10-06 13:58:47 -07001099 }
Jason Sams516c3192009-10-06 13:58:47 -07001100 }
Tim Murrayda67deb2013-05-09 12:02:50 -07001101 //Log.d(LOG_TAG, "MessageThread exiting.");
Jason Sams516c3192009-10-06 13:58:47 -07001102 }
1103 }
1104
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001105 RenderScript(Context ctx) {
Stephen Hines42028a82013-04-17 19:22:01 -07001106 mContextType = ContextType.NORMAL;
Jason Sams1a4e1f32012-02-24 17:51:24 -08001107 if (ctx != null) {
1108 mApplicationContext = ctx.getApplicationContext();
1109 }
Tim Murray06b45672014-01-07 11:13:56 -08001110 mRWLock = new ReentrantReadWriteLock();
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001111 }
1112
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001113 /**
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001114 * Gets the application context associated with the RenderScript context.
1115 *
1116 * @return The application context.
1117 */
1118 public final Context getApplicationContext() {
1119 return mApplicationContext;
Jack Palevich60aa3ea2009-05-26 13:45:08 -07001120 }
1121
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001122 /**
Jason Samsadd26dc2013-02-22 18:43:45 -08001123 * @hide
1124 */
1125 public static RenderScript create(Context ctx, int sdkVersion) {
1126 return create(ctx, sdkVersion, ContextType.NORMAL);
1127 }
1128
1129 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001130 * Create a RenderScript context.
Jason Sams27676fe2010-11-10 17:00:59 -08001131 *
Jason Sams1a4e1f32012-02-24 17:51:24 -08001132 * @hide
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001133 * @param ctx The context.
Jason Sams27676fe2010-11-10 17:00:59 -08001134 * @return RenderScript
1135 */
Jason Samsadd26dc2013-02-22 18:43:45 -08001136 public static RenderScript create(Context ctx, int sdkVersion, ContextType ct) {
Dan Morrille4d9a012013-03-28 18:10:43 -07001137 if (!sInitialized) {
1138 Log.e(LOG_TAG, "RenderScript.create() called when disabled; someone is likely to crash");
1139 return null;
1140 }
1141
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001142 RenderScript rs = new RenderScript(ctx);
Jason Sams704ff642010-02-09 16:05:07 -08001143
1144 rs.mDev = rs.nDeviceCreate();
Jason Samsadd26dc2013-02-22 18:43:45 -08001145 rs.mContext = rs.nContextCreate(rs.mDev, 0, sdkVersion, ct.mID);
Stephen Hines42028a82013-04-17 19:22:01 -07001146 rs.mContextType = ct;
Jason Sams26985362011-05-03 15:01:58 -07001147 if (rs.mContext == 0) {
1148 throw new RSDriverException("Failed to create RS context.");
1149 }
Jason Sams704ff642010-02-09 16:05:07 -08001150 rs.mMessageThread = new MessageThread(rs);
1151 rs.mMessageThread.start();
Jason Sams704ff642010-02-09 16:05:07 -08001152 return rs;
Jason Samsefd9b6fb2009-11-03 13:58:36 -08001153 }
1154
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001155 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001156 * Create a RenderScript context.
Jason Sams1a4e1f32012-02-24 17:51:24 -08001157 *
1158 * @param ctx The context.
1159 * @return RenderScript
1160 */
1161 public static RenderScript create(Context ctx) {
Jason Samsadd26dc2013-02-22 18:43:45 -08001162 return create(ctx, ContextType.NORMAL);
1163 }
1164
1165 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001166 * Create a RenderScript context.
Jason Samsadd26dc2013-02-22 18:43:45 -08001167 *
Jason Samsadd26dc2013-02-22 18:43:45 -08001168 *
1169 * @param ctx The context.
Jason Sams02d56d92013-04-12 16:40:50 -07001170 * @param ct The type of context to be created.
Jason Samsadd26dc2013-02-22 18:43:45 -08001171 * @return RenderScript
1172 */
1173 public static RenderScript create(Context ctx, ContextType ct) {
Jason Sams1a4e1f32012-02-24 17:51:24 -08001174 int v = ctx.getApplicationInfo().targetSdkVersion;
Jason Samsadd26dc2013-02-22 18:43:45 -08001175 return create(ctx, v, ct);
Jason Sams1a4e1f32012-02-24 17:51:24 -08001176 }
1177
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001178 /**
Jason Sams27676fe2010-11-10 17:00:59 -08001179 * Print the currently available debugging information about the state of
1180 * the RS context to the log.
1181 *
Jason Sams27676fe2010-11-10 17:00:59 -08001182 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001183 public void contextDump() {
Jason Sams5dbfe932010-01-27 14:41:43 -08001184 validate();
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001185 nContextDump(0);
Jason Sams715333b2009-11-17 17:26:46 -08001186 }
1187
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001188 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001189 * Wait for any pending asynchronous opeations (such as copies to a RS
1190 * allocation or RS script executions) to complete.
Jason Sams27676fe2010-11-10 17:00:59 -08001191 *
1192 */
Jason Sams96ed4cf2010-06-15 12:15:57 -07001193 public void finish() {
1194 nContextFinish();
1195 }
1196
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001197 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001198 * Destroys this RenderScript context. Once this function is called,
1199 * using this context or any objects belonging to this context is
1200 * illegal.
Jason Sams27676fe2010-11-10 17:00:59 -08001201 *
1202 */
Jason Samsf5b45962009-08-25 14:49:07 -07001203 public void destroy() {
Jason Sams5dbfe932010-01-27 14:41:43 -08001204 validate();
Tim Murray06b45672014-01-07 11:13:56 -08001205 nContextFinish();
1206
Jason Sams2e1872f2010-08-17 16:25:41 -07001207 nContextDeinitToClient(mContext);
Jason Sams516c3192009-10-06 13:58:47 -07001208 mMessageThread.mRun = false;
Jason Samsa8bf9422010-09-16 13:43:19 -07001209 try {
1210 mMessageThread.join();
1211 } catch(InterruptedException e) {
1212 }
Jason Sams516c3192009-10-06 13:58:47 -07001213
Jason Sams2e1872f2010-08-17 16:25:41 -07001214 nContextDestroy();
Jason Samsf5b45962009-08-25 14:49:07 -07001215
1216 nDeviceDestroy(mDev);
1217 mDev = 0;
1218 }
Jason Sams02fb2cb2009-05-28 15:37:57 -07001219
Jason Samsa9e7a052009-09-25 14:51:22 -07001220 boolean isAlive() {
1221 return mContext != 0;
1222 }
1223
Tim Murray460a0492013-11-19 12:45:54 -08001224 long safeID(BaseObj o) {
Jason Sams6b9dec02009-09-23 16:38:37 -07001225 if(o != null) {
Jason Samse07694b2012-04-03 15:36:36 -07001226 return o.getID(this);
Jason Samsd8e41612009-08-20 17:22:40 -07001227 }
Jason Sams6b9dec02009-09-23 16:38:37 -07001228 return 0;
Jack Palevich60aa3ea2009-05-26 13:45:08 -07001229 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -07001230}