blob: da0cfeb5357c36bec4bf6597b5c98453cfb0fce8 [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;
Jason Sams36e612a2009-07-31 16:26:13 -070022
Shih-wei Liao6b32fab2010-12-10 01:03:59 -080023import android.content.Context;
Stephen Hines4382467a2011-08-01 15:02:34 -070024import android.content.pm.ApplicationInfo;
25import android.content.pm.PackageManager;
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -080026import android.content.res.AssetManager;
Jason Samsb8c5a842009-07-31 20:40:47 -070027import android.graphics.Bitmap;
Romain Guy650a3eb2009-08-31 14:06:43 -070028import android.graphics.BitmapFactory;
Jason Samsfaa32b32011-06-20 16:58:04 -070029import android.graphics.SurfaceTexture;
Glenn Kasten260c77a2011-06-01 17:25:54 -070030import android.os.Process;
Jason Sams36e612a2009-07-31 16:26:13 -070031import android.util.Log;
32import android.view.Surface;
Dan Morrille4d9a012013-03-28 18:10:43 -070033import android.os.SystemProperties;
Tim Murray6d7a53c2013-05-23 16:59:23 -070034import android.os.Trace;
Stephen Hines4382467a2011-08-01 15:02:34 -070035
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -070036/**
Tim Murrayc11e25c2013-04-09 11:01:01 -070037 * This class provides access to a RenderScript context, which controls RenderScript
38 * initialization, resource management, and teardown. An instance of the RenderScript
39 * class must be created before any other RS objects can be created.
Jason Sams27676fe2010-11-10 17:00:59 -080040 *
Joe Fernandez3aef8e1d2011-12-20 10:38:34 -080041 * <div class="special reference">
42 * <h3>Developer Guides</h3>
Tim Murrayc11e25c2013-04-09 11:01:01 -070043 * <p>For more information about creating an application that uses RenderScript, read the
44 * <a href="{@docRoot}guide/topics/renderscript/index.html">RenderScript</a> developer guide.</p>
Joe Fernandez3aef8e1d2011-12-20 10:38:34 -080045 * </div>
Jason Samse29d4712009-07-23 15:19:03 -070046 **/
Jack Palevich60aa3ea2009-05-26 13:45:08 -070047public class RenderScript {
Tim Murray6d7a53c2013-05-23 16:59:23 -070048 static final long TRACE_TAG = Trace.TRACE_TAG_RS;
49
Jason Sams3bc47d42009-11-12 15:10:25 -080050 static final String LOG_TAG = "RenderScript_jni";
Jason Samsbf6ef8d2010-12-06 15:59:59 -080051 static final boolean DEBUG = false;
Romain Guy650a3eb2009-08-31 14:06:43 -070052 @SuppressWarnings({"UnusedDeclaration", "deprecation"})
Joe Onorato43a17652011-04-06 19:22:23 -070053 static final boolean LOG_ENABLED = false;
Jack Palevich60aa3ea2009-05-26 13:45:08 -070054
Shih-wei Liao6b32fab2010-12-10 01:03:59 -080055 private Context mApplicationContext;
Jack Palevich60aa3ea2009-05-26 13:45:08 -070056
Shih-wei Liao6b32fab2010-12-10 01:03:59 -080057 /*
Jack Palevich60aa3ea2009-05-26 13:45:08 -070058 * We use a class initializer to allow the native code to cache some
59 * field offsets.
60 */
Dan Morrille4d9a012013-03-28 18:10:43 -070061 @SuppressWarnings({"FieldCanBeLocal", "UnusedDeclaration"}) // TODO: now used locally; remove?
Jason Samsbf6ef8d2010-12-06 15:59:59 -080062 static boolean sInitialized;
63 native static void _nInit();
Jack Palevich60aa3ea2009-05-26 13:45:08 -070064
Tim Murray2f2472c2013-08-22 14:55:26 -070065 static Object sRuntime;
66 static Method registerNativeAllocation;
67 static Method registerNativeFree;
Jason Samsdba3ba52009-07-30 14:56:12 -070068
Jack Palevich60aa3ea2009-05-26 13:45:08 -070069 static {
70 sInitialized = false;
Dan Morrille4d9a012013-03-28 18:10:43 -070071 if (!SystemProperties.getBoolean("config.disable_renderscript", false)) {
72 try {
Tim Murray2f2472c2013-08-22 14:55:26 -070073 Class<?> vm_runtime = Class.forName("dalvik.system.VMRuntime");
74 Method get_runtime = vm_runtime.getDeclaredMethod("getRuntime");
75 sRuntime = get_runtime.invoke(null);
76 registerNativeAllocation = vm_runtime.getDeclaredMethod("registerNativeAllocation", Integer.TYPE);
77 registerNativeFree = vm_runtime.getDeclaredMethod("registerNativeFree", Integer.TYPE);
78 } catch (Exception e) {
79 Log.e(LOG_TAG, "Error loading GC methods: " + e);
80 throw new RSRuntimeException("Error loading GC methods: " + e);
81 }
82 try {
Dan Morrille4d9a012013-03-28 18:10:43 -070083 System.loadLibrary("rs_jni");
84 _nInit();
85 sInitialized = true;
86 } catch (UnsatisfiedLinkError e) {
87 Log.e(LOG_TAG, "Error loading RS jni library: " + e);
88 throw new RSRuntimeException("Error loading RS jni library: " + e);
89 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -070090 }
91 }
92
Jason Sams2e1872f2010-08-17 16:25:41 -070093 // Non-threadsafe functions.
Jason Sams36e612a2009-07-31 16:26:13 -070094 native int nDeviceCreate();
95 native void nDeviceDestroy(int dev);
Jason Samsebfb4362009-09-23 13:57:02 -070096 native void nDeviceSetConfig(int dev, int param, int value);
Jason Samsedbfabd2011-05-17 15:01:29 -070097 native int nContextGetUserMessage(int con, int[] data);
Jason Sams1c415172010-11-08 17:06:46 -080098 native String nContextGetErrorMessage(int con);
Jason Samsedbfabd2011-05-17 15:01:29 -070099 native int nContextPeekMessage(int con, int[] subID);
Jason Sams2e1872f2010-08-17 16:25:41 -0700100 native void nContextInitToClient(int con);
101 native void nContextDeinitToClient(int con);
Jason Sams3eaa3382009-06-10 15:04:38 -0700102
Stephen Hines7d25a822013-04-09 23:51:56 -0700103 static File mCacheDir;
Jason Samsa6f338c2012-02-24 16:22:16 -0800104
105 /**
106 * Sets the directory to use as a persistent storage for the
107 * renderscript object file cache.
108 *
109 * @hide
110 * @param cacheDir A directory the current process can write to
111 */
Jason Samsa6f338c2012-02-24 16:22:16 -0800112 public static void setupDiskCache(File cacheDir) {
Dan Morrille4d9a012013-03-28 18:10:43 -0700113 if (!sInitialized) {
114 Log.e(LOG_TAG, "RenderScript.setupDiskCache() called when disabled");
115 return;
116 }
117
Stephen Hines7d25a822013-04-09 23:51:56 -0700118 // Defer creation of cache path to nScriptCCreate().
119 mCacheDir = cacheDir;
Jason Samsa6f338c2012-02-24 16:22:16 -0800120 }
121
Jason Sams02d56d92013-04-12 16:40:50 -0700122 /**
123 * ContextType specifies the specific type of context to be created.
124 *
125 */
Jason Samsadd26dc2013-02-22 18:43:45 -0800126 public enum ContextType {
Jason Sams02d56d92013-04-12 16:40:50 -0700127 /**
128 * NORMAL context, this is the default and what shipping apps should
129 * use.
130 */
Jason Samsadd26dc2013-02-22 18:43:45 -0800131 NORMAL (0),
Jason Sams02d56d92013-04-12 16:40:50 -0700132
133 /**
134 * DEBUG context, perform extra runtime checks to validate the
135 * kernels and APIs are being used as intended. Get and SetElementAt
136 * will be bounds checked in this mode.
137 */
Jason Samsadd26dc2013-02-22 18:43:45 -0800138 DEBUG (1),
Jason Sams02d56d92013-04-12 16:40:50 -0700139
140 /**
141 * PROFILE context, Intended to be used once the first time an
142 * application is run on a new device. This mode allows the runtime to
143 * do additional testing and performance tuning.
144 */
Jason Samsadd26dc2013-02-22 18:43:45 -0800145 PROFILE (2);
146
147 int mID;
148 ContextType(int id) {
149 mID = id;
150 }
151 }
Jason Sams718cd1f2009-12-23 14:35:29 -0800152
Stephen Hines42028a82013-04-17 19:22:01 -0700153 ContextType mContextType;
154
Jason Sams2e1872f2010-08-17 16:25:41 -0700155 // Methods below are wrapped to protect the non-threadsafe
156 // lockless fifo.
Stephen Hines4382467a2011-08-01 15:02:34 -0700157 native int rsnContextCreateGL(int dev, int ver, int sdkVer,
Jason Sams11c8af92010-10-13 15:31:10 -0700158 int colorMin, int colorPref,
159 int alphaMin, int alphaPref,
160 int depthMin, int depthPref,
161 int stencilMin, int stencilPref,
Alex Sakhartchouk2c74ad92011-03-16 19:28:25 -0700162 int samplesMin, int samplesPref, float samplesQ, int dpi);
Stephen Hines4382467a2011-08-01 15:02:34 -0700163 synchronized int nContextCreateGL(int dev, int ver, int sdkVer,
Jason Sams11c8af92010-10-13 15:31:10 -0700164 int colorMin, int colorPref,
165 int alphaMin, int alphaPref,
166 int depthMin, int depthPref,
167 int stencilMin, int stencilPref,
Alex Sakhartchouk2c74ad92011-03-16 19:28:25 -0700168 int samplesMin, int samplesPref, float samplesQ, int dpi) {
Stephen Hines4382467a2011-08-01 15:02:34 -0700169 return rsnContextCreateGL(dev, ver, sdkVer, colorMin, colorPref,
Jason Sams11c8af92010-10-13 15:31:10 -0700170 alphaMin, alphaPref, depthMin, depthPref,
171 stencilMin, stencilPref,
Alex Sakhartchouk2c74ad92011-03-16 19:28:25 -0700172 samplesMin, samplesPref, samplesQ, dpi);
Jason Sams2e1872f2010-08-17 16:25:41 -0700173 }
Jason Samsadd26dc2013-02-22 18:43:45 -0800174 native int rsnContextCreate(int dev, int ver, int sdkVer, int contextType);
175 synchronized int nContextCreate(int dev, int ver, int sdkVer, int contextType) {
176 return rsnContextCreate(dev, ver, sdkVer, contextType);
Jason Sams2e1872f2010-08-17 16:25:41 -0700177 }
178 native void rsnContextDestroy(int con);
179 synchronized void nContextDestroy() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800180 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700181 rsnContextDestroy(mContext);
182 }
183 native void rsnContextSetSurface(int con, int w, int h, Surface sur);
184 synchronized void nContextSetSurface(int w, int h, Surface sur) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800185 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700186 rsnContextSetSurface(mContext, w, h, sur);
187 }
Jason Samsfaa32b32011-06-20 16:58:04 -0700188 native void rsnContextSetSurfaceTexture(int con, int w, int h, SurfaceTexture sur);
189 synchronized void nContextSetSurfaceTexture(int w, int h, SurfaceTexture sur) {
190 validate();
191 rsnContextSetSurfaceTexture(mContext, w, h, sur);
192 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700193 native void rsnContextSetPriority(int con, int p);
194 synchronized void nContextSetPriority(int p) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800195 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700196 rsnContextSetPriority(mContext, p);
197 }
198 native void rsnContextDump(int con, int bits);
199 synchronized void nContextDump(int bits) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800200 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700201 rsnContextDump(mContext, bits);
202 }
203 native void rsnContextFinish(int con);
204 synchronized void nContextFinish() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800205 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700206 rsnContextFinish(mContext);
207 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700208
Jason Sams455d6442013-02-05 19:20:18 -0800209 native void rsnContextSendMessage(int con, int id, int[] data);
210 synchronized void nContextSendMessage(int id, int[] data) {
211 validate();
212 rsnContextSendMessage(mContext, id, data);
213 }
214
Jason Sams2e1872f2010-08-17 16:25:41 -0700215 native void rsnContextBindRootScript(int con, int script);
216 synchronized void nContextBindRootScript(int script) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800217 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700218 rsnContextBindRootScript(mContext, script);
219 }
220 native void rsnContextBindSampler(int con, int sampler, int slot);
221 synchronized void nContextBindSampler(int sampler, int slot) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800222 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700223 rsnContextBindSampler(mContext, sampler, slot);
224 }
225 native void rsnContextBindProgramStore(int con, int pfs);
226 synchronized void nContextBindProgramStore(int pfs) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800227 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700228 rsnContextBindProgramStore(mContext, pfs);
229 }
230 native void rsnContextBindProgramFragment(int con, int pf);
231 synchronized void nContextBindProgramFragment(int pf) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800232 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700233 rsnContextBindProgramFragment(mContext, pf);
234 }
235 native void rsnContextBindProgramVertex(int con, int pv);
236 synchronized void nContextBindProgramVertex(int pv) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800237 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700238 rsnContextBindProgramVertex(mContext, pv);
239 }
240 native void rsnContextBindProgramRaster(int con, int pr);
241 synchronized void nContextBindProgramRaster(int pr) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800242 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700243 rsnContextBindProgramRaster(mContext, pr);
244 }
245 native void rsnContextPause(int con);
246 synchronized void nContextPause() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800247 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700248 rsnContextPause(mContext);
249 }
250 native void rsnContextResume(int con);
251 synchronized void nContextResume() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800252 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700253 rsnContextResume(mContext);
254 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700255
Jason Sams2e1872f2010-08-17 16:25:41 -0700256 native void rsnAssignName(int con, int obj, byte[] name);
257 synchronized void nAssignName(int obj, byte[] name) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800258 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700259 rsnAssignName(mContext, obj, name);
260 }
261 native String rsnGetName(int con, int obj);
262 synchronized String nGetName(int obj) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800263 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700264 return rsnGetName(mContext, obj);
265 }
266 native void rsnObjDestroy(int con, int id);
267 synchronized void nObjDestroy(int id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800268 // There is a race condition here. The calling code may be run
269 // by the gc while teardown is occuring. This protects againts
270 // deleting dead objects.
271 if (mContext != 0) {
272 rsnObjDestroy(mContext, id);
273 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700274 }
Jason Samsfe08d992009-05-27 14:45:32 -0700275
Jason Sams2e1872f2010-08-17 16:25:41 -0700276 native int rsnElementCreate(int con, int type, int kind, boolean norm, int vecSize);
277 synchronized int nElementCreate(int type, int kind, boolean norm, int vecSize) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800278 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700279 return rsnElementCreate(mContext, type, kind, norm, vecSize);
280 }
Jason Sams70d4e502010-09-02 17:35:23 -0700281 native int rsnElementCreate2(int con, int[] elements, String[] names, int[] arraySizes);
282 synchronized int nElementCreate2(int[] elements, String[] names, int[] arraySizes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800283 validate();
Jason Sams70d4e502010-09-02 17:35:23 -0700284 return rsnElementCreate2(mContext, elements, names, arraySizes);
Jason Sams2e1872f2010-08-17 16:25:41 -0700285 }
286 native void rsnElementGetNativeData(int con, int id, int[] elementData);
287 synchronized void nElementGetNativeData(int id, int[] elementData) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800288 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700289 rsnElementGetNativeData(mContext, id, elementData);
290 }
Alex Sakhartchouk7d5f5e72011-10-18 11:08:31 -0700291 native void rsnElementGetSubElements(int con, int id,
292 int[] IDs, String[] names, int[] arraySizes);
293 synchronized void nElementGetSubElements(int id, int[] IDs, String[] names, int[] arraySizes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800294 validate();
Alex Sakhartchouk7d5f5e72011-10-18 11:08:31 -0700295 rsnElementGetSubElements(mContext, id, IDs, names, arraySizes);
Jason Sams2e1872f2010-08-17 16:25:41 -0700296 }
Jason Sams768bc022009-09-21 19:41:04 -0700297
Jason Samsb109cc72013-01-07 18:20:12 -0800298 native int rsnTypeCreate(int con, int eid, int x, int y, int z, boolean mips, boolean faces, int yuv);
299 synchronized int nTypeCreate(int eid, int x, int y, int z, boolean mips, boolean faces, int yuv) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800300 validate();
Jason Samsb109cc72013-01-07 18:20:12 -0800301 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv);
Jason Sams2e1872f2010-08-17 16:25:41 -0700302 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700303 native void rsnTypeGetNativeData(int con, int id, int[] typeData);
304 synchronized void nTypeGetNativeData(int id, int[] typeData) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800305 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700306 rsnTypeGetNativeData(mContext, id, typeData);
307 }
Jason Sams768bc022009-09-21 19:41:04 -0700308
Jason Sams857d0c72011-11-23 15:02:15 -0800309 native int rsnAllocationCreateTyped(int con, int type, int mip, int usage, int pointer);
310 synchronized int nAllocationCreateTyped(int type, int mip, int usage, int pointer) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800311 validate();
Jason Sams857d0c72011-11-23 15:02:15 -0800312 return rsnAllocationCreateTyped(mContext, type, mip, usage, pointer);
Jason Sams2e1872f2010-08-17 16:25:41 -0700313 }
Jason Sams5476b452010-12-08 16:14:36 -0800314 native int rsnAllocationCreateFromBitmap(int con, int type, int mip, Bitmap bmp, int usage);
315 synchronized int nAllocationCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800316 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800317 return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage);
Alex Sakhartchouk26ae3902010-10-11 12:35:15 -0700318 }
Tim Murraya3145512012-12-04 17:59:29 -0800319
320 native int rsnAllocationCreateBitmapBackedAllocation(int con, int type, int mip, Bitmap bmp, int usage);
321 synchronized int nAllocationCreateBitmapBackedAllocation(int type, int mip, Bitmap bmp, int usage) {
322 validate();
323 return rsnAllocationCreateBitmapBackedAllocation(mContext, type, mip, bmp, usage);
324 }
325
326
Jason Sams5476b452010-12-08 16:14:36 -0800327 native int rsnAllocationCubeCreateFromBitmap(int con, int type, int mip, Bitmap bmp, int usage);
328 synchronized int nAllocationCubeCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800329 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800330 return rsnAllocationCubeCreateFromBitmap(mContext, type, mip, bmp, usage);
Alex Sakhartchouk67f2e442010-11-18 15:22:43 -0800331 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700332 native int rsnAllocationCreateBitmapRef(int con, int type, Bitmap bmp);
333 synchronized int nAllocationCreateBitmapRef(int type, Bitmap bmp) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800334 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700335 return rsnAllocationCreateBitmapRef(mContext, type, bmp);
336 }
Jason Sams5476b452010-12-08 16:14:36 -0800337 native int rsnAllocationCreateFromAssetStream(int con, int mips, int assetStream, int usage);
338 synchronized int nAllocationCreateFromAssetStream(int mips, int assetStream, int usage) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800339 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800340 return rsnAllocationCreateFromAssetStream(mContext, mips, assetStream, usage);
341 }
342
Jason Sams4ef66502010-12-10 16:03:15 -0800343 native void rsnAllocationCopyToBitmap(int con, int alloc, Bitmap bmp);
344 synchronized void nAllocationCopyToBitmap(int alloc, Bitmap bmp) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800345 validate();
Jason Sams4ef66502010-12-10 16:03:15 -0800346 rsnAllocationCopyToBitmap(mContext, alloc, bmp);
347 }
348
349
Jason Sams5476b452010-12-08 16:14:36 -0800350 native void rsnAllocationSyncAll(int con, int alloc, int src);
351 synchronized void nAllocationSyncAll(int alloc, int src) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800352 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800353 rsnAllocationSyncAll(mContext, alloc, src);
354 }
Jason Sams72226e02013-02-22 12:45:54 -0800355 native Surface rsnAllocationGetSurface(int con, int alloc);
356 synchronized Surface nAllocationGetSurface(int alloc) {
Jason Sams615e7ce2012-01-13 14:01:20 -0800357 validate();
Jason Sams72226e02013-02-22 12:45:54 -0800358 return rsnAllocationGetSurface(mContext, alloc);
Jason Samsfe1d5ff2012-03-23 11:47:26 -0700359 }
Jason Samsfb9aa9f2012-03-28 15:30:07 -0700360 native void rsnAllocationSetSurface(int con, int alloc, Surface sur);
361 synchronized void nAllocationSetSurface(int alloc, Surface sur) {
Jason Sams163766c2012-02-15 12:04:24 -0800362 validate();
Jason Samsfb9aa9f2012-03-28 15:30:07 -0700363 rsnAllocationSetSurface(mContext, alloc, sur);
Jason Sams163766c2012-02-15 12:04:24 -0800364 }
365 native void rsnAllocationIoSend(int con, int alloc);
366 synchronized void nAllocationIoSend(int alloc) {
367 validate();
368 rsnAllocationIoSend(mContext, alloc);
369 }
370 native void rsnAllocationIoReceive(int con, int alloc);
371 synchronized void nAllocationIoReceive(int alloc) {
372 validate();
373 rsnAllocationIoReceive(mContext, alloc);
374 }
375
Jason Sams615e7ce2012-01-13 14:01:20 -0800376
Jason Samsf7086092011-01-12 13:28:37 -0800377 native void rsnAllocationGenerateMipmaps(int con, int alloc);
378 synchronized void nAllocationGenerateMipmaps(int alloc) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800379 validate();
Jason Samsf7086092011-01-12 13:28:37 -0800380 rsnAllocationGenerateMipmaps(mContext, alloc);
381 }
Jason Sams4ef66502010-12-10 16:03:15 -0800382 native void rsnAllocationCopyFromBitmap(int con, int alloc, Bitmap bmp);
383 synchronized void nAllocationCopyFromBitmap(int alloc, Bitmap bmp) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800384 validate();
Jason Sams4ef66502010-12-10 16:03:15 -0800385 rsnAllocationCopyFromBitmap(mContext, alloc, bmp);
Jason Sams2e1872f2010-08-17 16:25:41 -0700386 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700387
Jason Sams49a05d72010-12-29 14:31:29 -0800388
Jason Samse729a942013-11-06 11:22:02 -0800389 native void rsnAllocationData1D(int con, int id, int off, int mip, int count, Object d, int sizeBytes, int dt);
390 synchronized void nAllocationData1D(int id, int off, int mip, int count, Object d, int sizeBytes, Element.DataType dt) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800391 validate();
Jason Samse729a942013-11-06 11:22:02 -0800392 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes, dt.mID);
Jason Sams2e1872f2010-08-17 16:25:41 -0700393 }
Alex Sakhartchoukaae74ad2010-06-04 10:06:50 -0700394
Jason Sams49a05d72010-12-29 14:31:29 -0800395 native void rsnAllocationElementData1D(int con, int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes);
396 synchronized void nAllocationElementData1D(int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800397 validate();
Jason Sams49a05d72010-12-29 14:31:29 -0800398 rsnAllocationElementData1D(mContext, id, xoff, mip, compIdx, d, sizeBytes);
Jason Sams2e1872f2010-08-17 16:25:41 -0700399 }
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -0700400
Alex Sakhartchouk304b1f52011-06-14 11:13:19 -0700401 native void rsnAllocationData2D(int con,
402 int dstAlloc, int dstXoff, int dstYoff,
403 int dstMip, int dstFace,
404 int width, int height,
405 int srcAlloc, int srcXoff, int srcYoff,
406 int srcMip, int srcFace);
407 synchronized void nAllocationData2D(int dstAlloc, int dstXoff, int dstYoff,
408 int dstMip, int dstFace,
409 int width, int height,
410 int srcAlloc, int srcXoff, int srcYoff,
411 int srcMip, int srcFace) {
412 validate();
413 rsnAllocationData2D(mContext,
414 dstAlloc, dstXoff, dstYoff,
415 dstMip, dstFace,
416 width, height,
417 srcAlloc, srcXoff, srcYoff,
418 srcMip, srcFace);
419 }
420
Jason Samse729a942013-11-06 11:22:02 -0800421 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face,
422 int w, int h, Object d, int sizeBytes, int dt);
423 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face,
424 int w, int h, Object d, int sizeBytes, Element.DataType dt) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800425 validate();
Jason Samse729a942013-11-06 11:22:02 -0800426 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes, dt.mID);
Jason Sams2e1872f2010-08-17 16:25:41 -0700427 }
Jason Samsfa445b92011-01-07 17:00:07 -0800428 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, Bitmap b);
429 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, Bitmap b) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800430 validate();
Jason Samsfa445b92011-01-07 17:00:07 -0800431 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, b);
432 }
Jason Sams49a05d72010-12-29 14:31:29 -0800433
Jason Samsb05d6892013-04-09 15:59:24 -0700434 native void rsnAllocationData3D(int con,
435 int dstAlloc, int dstXoff, int dstYoff, int dstZoff,
436 int dstMip,
437 int width, int height, int depth,
438 int srcAlloc, int srcXoff, int srcYoff, int srcZoff,
439 int srcMip);
440 synchronized void nAllocationData3D(int dstAlloc, int dstXoff, int dstYoff, int dstZoff,
441 int dstMip,
442 int width, int height, int depth,
443 int srcAlloc, int srcXoff, int srcYoff, int srcZoff,
444 int srcMip) {
445 validate();
446 rsnAllocationData3D(mContext,
447 dstAlloc, dstXoff, dstYoff, dstZoff,
448 dstMip, width, height, depth,
449 srcAlloc, srcXoff, srcYoff, srcZoff, srcMip);
450 }
451
Jason Samse729a942013-11-06 11:22:02 -0800452 native void rsnAllocationData3D(int con, int id, int xoff, int yoff, int zoff, int mip,
453 int w, int h, int depth, Object d, int sizeBytes, int dt);
454 synchronized void nAllocationData3D(int id, int xoff, int yoff, int zoff, int mip,
455 int w, int h, int depth, Object d, int sizeBytes, Element.DataType dt) {
Jason Samsb05d6892013-04-09 15:59:24 -0700456 validate();
Jason Samse729a942013-11-06 11:22:02 -0800457 rsnAllocationData3D(mContext, id, xoff, yoff, zoff, mip, w, h, depth, d, sizeBytes, dt.mID);
Jason Samsb05d6892013-04-09 15:59:24 -0700458 }
Jason Samsb05d6892013-04-09 15:59:24 -0700459
Jason Samsfa445b92011-01-07 17:00:07 -0800460 native void rsnAllocationRead(int con, int id, byte[] d);
461 synchronized void nAllocationRead(int id, byte[] d) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800462 validate();
Jason Samsfa445b92011-01-07 17:00:07 -0800463 rsnAllocationRead(mContext, id, d);
464 }
465 native void rsnAllocationRead(int con, int id, short[] d);
466 synchronized void nAllocationRead(int id, short[] d) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800467 validate();
Jason Samsfa445b92011-01-07 17:00:07 -0800468 rsnAllocationRead(mContext, id, d);
469 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700470 native void rsnAllocationRead(int con, int id, int[] d);
471 synchronized void nAllocationRead(int id, int[] d) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800472 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700473 rsnAllocationRead(mContext, id, d);
474 }
475 native void rsnAllocationRead(int con, int id, float[] d);
476 synchronized void nAllocationRead(int id, float[] d) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800477 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700478 rsnAllocationRead(mContext, id, d);
479 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700480 native int rsnAllocationGetType(int con, int id);
481 synchronized int nAllocationGetType(int id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800482 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700483 return rsnAllocationGetType(mContext, id);
484 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700485
Jason Sams5edc6082010-10-05 13:32:49 -0700486 native void rsnAllocationResize1D(int con, int id, int dimX);
487 synchronized void nAllocationResize1D(int id, int dimX) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800488 validate();
Jason Sams5edc6082010-10-05 13:32:49 -0700489 rsnAllocationResize1D(mContext, id, dimX);
490 }
Jason Sams5edc6082010-10-05 13:32:49 -0700491
Jason Sams2e1872f2010-08-17 16:25:41 -0700492 native int rsnFileA3DCreateFromAssetStream(int con, int assetStream);
493 synchronized int nFileA3DCreateFromAssetStream(int assetStream) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800494 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700495 return rsnFileA3DCreateFromAssetStream(mContext, assetStream);
496 }
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800497 native int rsnFileA3DCreateFromFile(int con, String path);
498 synchronized int nFileA3DCreateFromFile(String path) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800499 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800500 return rsnFileA3DCreateFromFile(mContext, path);
501 }
502 native int rsnFileA3DCreateFromAsset(int con, AssetManager mgr, String path);
503 synchronized int nFileA3DCreateFromAsset(AssetManager mgr, String path) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800504 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800505 return rsnFileA3DCreateFromAsset(mContext, mgr, path);
506 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700507 native int rsnFileA3DGetNumIndexEntries(int con, int fileA3D);
508 synchronized int nFileA3DGetNumIndexEntries(int fileA3D) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800509 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700510 return rsnFileA3DGetNumIndexEntries(mContext, fileA3D);
511 }
512 native void rsnFileA3DGetIndexEntries(int con, int fileA3D, int numEntries, int[] IDs, String[] names);
513 synchronized void nFileA3DGetIndexEntries(int fileA3D, int numEntries, int[] IDs, String[] names) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800514 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700515 rsnFileA3DGetIndexEntries(mContext, fileA3D, numEntries, IDs, names);
516 }
517 native int rsnFileA3DGetEntryByIndex(int con, int fileA3D, int index);
518 synchronized int nFileA3DGetEntryByIndex(int fileA3D, int index) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800519 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700520 return rsnFileA3DGetEntryByIndex(mContext, fileA3D, index);
521 }
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700522
Alex Sakhartchouke27cdee2010-12-17 11:41:08 -0800523 native int rsnFontCreateFromFile(int con, String fileName, float size, int dpi);
524 synchronized int nFontCreateFromFile(String fileName, float size, int dpi) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800525 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700526 return rsnFontCreateFromFile(mContext, fileName, size, dpi);
527 }
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800528 native int rsnFontCreateFromAssetStream(int con, String name, float size, int dpi, int assetStream);
529 synchronized int nFontCreateFromAssetStream(String name, float size, int dpi, int assetStream) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800530 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800531 return rsnFontCreateFromAssetStream(mContext, name, size, dpi, assetStream);
532 }
533 native int rsnFontCreateFromAsset(int con, AssetManager mgr, String path, float size, int dpi);
534 synchronized int nFontCreateFromAsset(AssetManager mgr, String path, float size, int dpi) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800535 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800536 return rsnFontCreateFromAsset(mContext, mgr, path, size, dpi);
537 }
Jason Sams22534172009-08-04 16:58:20 -0700538
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700539
Jason Sams2e1872f2010-08-17 16:25:41 -0700540 native void rsnScriptBindAllocation(int con, int script, int alloc, int slot);
541 synchronized void nScriptBindAllocation(int script, int alloc, int slot) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800542 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700543 rsnScriptBindAllocation(mContext, script, alloc, slot);
544 }
545 native void rsnScriptSetTimeZone(int con, int script, byte[] timeZone);
546 synchronized void nScriptSetTimeZone(int script, byte[] timeZone) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800547 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700548 rsnScriptSetTimeZone(mContext, script, timeZone);
549 }
550 native void rsnScriptInvoke(int con, int id, int slot);
551 synchronized void nScriptInvoke(int id, int slot) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800552 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700553 rsnScriptInvoke(mContext, id, slot);
554 }
Jason Sams6e494d32011-04-27 16:33:11 -0700555 native void rsnScriptForEach(int con, int id, int slot, int ain, int aout, byte[] params);
556 native void rsnScriptForEach(int con, int id, int slot, int ain, int aout);
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800557 native void rsnScriptForEachClipped(int con, int id, int slot, int ain, int aout, byte[] params,
558 int xstart, int xend, int ystart, int yend, int zstart, int zend);
Stephen Hinesdac6ed02013-02-13 00:09:02 -0800559 native void rsnScriptForEachClipped(int con, int id, int slot, int ain, int aout,
560 int xstart, int xend, int ystart, int yend, int zstart, int zend);
Jason Sams6e494d32011-04-27 16:33:11 -0700561 synchronized void nScriptForEach(int id, int slot, int ain, int aout, byte[] params) {
562 validate();
563 if (params == null) {
564 rsnScriptForEach(mContext, id, slot, ain, aout);
565 } else {
566 rsnScriptForEach(mContext, id, slot, ain, aout, params);
567 }
568 }
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800569
570 synchronized void nScriptForEachClipped(int id, int slot, int ain, int aout, byte[] params,
571 int xstart, int xend, int ystart, int yend, int zstart, int zend) {
572 validate();
Stephen Hinesdac6ed02013-02-13 00:09:02 -0800573 if (params == null) {
574 rsnScriptForEachClipped(mContext, id, slot, ain, aout, xstart, xend, ystart, yend, zstart, zend);
575 } else {
576 rsnScriptForEachClipped(mContext, id, slot, ain, aout, params, xstart, xend, ystart, yend, zstart, zend);
577 }
Tim Murrayeb8c29c2013-02-07 12:16:41 -0800578 }
579
Jason Sams2e1872f2010-08-17 16:25:41 -0700580 native void rsnScriptInvokeV(int con, int id, int slot, byte[] params);
581 synchronized void nScriptInvokeV(int id, int slot, byte[] params) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800582 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700583 rsnScriptInvokeV(mContext, id, slot, params);
584 }
Tim Murray7c4caad2013-04-10 16:21:40 -0700585
Jason Sams2e1872f2010-08-17 16:25:41 -0700586 native void rsnScriptSetVarI(int con, int id, int slot, int val);
587 synchronized void nScriptSetVarI(int id, int slot, int val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800588 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700589 rsnScriptSetVarI(mContext, id, slot, val);
590 }
Tim Murray7c4caad2013-04-10 16:21:40 -0700591 native int rsnScriptGetVarI(int con, int id, int slot);
592 synchronized int nScriptGetVarI(int id, int slot) {
593 validate();
594 return rsnScriptGetVarI(mContext, id, slot);
595 }
596
Stephen Hines031ec58c2010-10-11 10:54:21 -0700597 native void rsnScriptSetVarJ(int con, int id, int slot, long val);
598 synchronized void nScriptSetVarJ(int id, int slot, long val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800599 validate();
Stephen Hines031ec58c2010-10-11 10:54:21 -0700600 rsnScriptSetVarJ(mContext, id, slot, val);
601 }
Tim Murray7c4caad2013-04-10 16:21:40 -0700602 native long rsnScriptGetVarJ(int con, int id, int slot);
603 synchronized long nScriptGetVarJ(int id, int slot) {
604 validate();
605 return rsnScriptGetVarJ(mContext, id, slot);
606 }
607
Jason Sams2e1872f2010-08-17 16:25:41 -0700608 native void rsnScriptSetVarF(int con, int id, int slot, float val);
609 synchronized void nScriptSetVarF(int id, int slot, float val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800610 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700611 rsnScriptSetVarF(mContext, id, slot, val);
612 }
Tim Murray7c4caad2013-04-10 16:21:40 -0700613 native float rsnScriptGetVarF(int con, int id, int slot);
614 synchronized float nScriptGetVarF(int id, int slot) {
615 validate();
616 return rsnScriptGetVarF(mContext, id, slot);
617 }
Stephen Hinesca54ec32010-09-20 17:20:30 -0700618 native void rsnScriptSetVarD(int con, int id, int slot, double val);
619 synchronized void nScriptSetVarD(int id, int slot, double val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800620 validate();
Stephen Hinesca54ec32010-09-20 17:20:30 -0700621 rsnScriptSetVarD(mContext, id, slot, val);
622 }
Tim Murray7c4caad2013-04-10 16:21:40 -0700623 native double rsnScriptGetVarD(int con, int id, int slot);
624 synchronized double nScriptGetVarD(int id, int slot) {
625 validate();
626 return rsnScriptGetVarD(mContext, id, slot);
627 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700628 native void rsnScriptSetVarV(int con, int id, int slot, byte[] val);
629 synchronized void nScriptSetVarV(int id, int slot, byte[] val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800630 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700631 rsnScriptSetVarV(mContext, id, slot, val);
632 }
Tim Murray7c4caad2013-04-10 16:21:40 -0700633 native void rsnScriptGetVarV(int con, int id, int slot, byte[] val);
634 synchronized void nScriptGetVarV(int id, int slot, byte[] val) {
635 validate();
636 rsnScriptGetVarV(mContext, id, slot, val);
637 }
Stephen Hinesadeb8092012-04-20 14:26:06 -0700638 native void rsnScriptSetVarVE(int con, int id, int slot, byte[] val,
639 int e, int[] dims);
640 synchronized void nScriptSetVarVE(int id, int slot, byte[] val,
641 int e, int[] dims) {
642 validate();
643 rsnScriptSetVarVE(mContext, id, slot, val, e, dims);
644 }
Jason Sams6f4cf0b2010-11-16 17:37:02 -0800645 native void rsnScriptSetVarObj(int con, int id, int slot, int val);
646 synchronized void nScriptSetVarObj(int id, int slot, int val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800647 validate();
Jason Sams6f4cf0b2010-11-16 17:37:02 -0800648 rsnScriptSetVarObj(mContext, id, slot, val);
649 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700650
Jason Samse4a06c52011-03-16 16:29:28 -0700651 native int rsnScriptCCreate(int con, String resName, String cacheDir,
652 byte[] script, int length);
653 synchronized int nScriptCCreate(String resName, String cacheDir, byte[] script, int length) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800654 validate();
Jason Samse4a06c52011-03-16 16:29:28 -0700655 return rsnScriptCCreate(mContext, resName, cacheDir, script, length);
Jason Sams2e1872f2010-08-17 16:25:41 -0700656 }
Jason Samsebfb4362009-09-23 13:57:02 -0700657
Jason Sams6ab97682012-08-10 12:09:43 -0700658 native int rsnScriptIntrinsicCreate(int con, int id, int eid);
659 synchronized int nScriptIntrinsicCreate(int id, int eid) {
660 validate();
661 return rsnScriptIntrinsicCreate(mContext, id, eid);
662 }
663
Jason Sams08a81582012-09-18 12:32:10 -0700664 native int rsnScriptKernelIDCreate(int con, int sid, int slot, int sig);
665 synchronized int nScriptKernelIDCreate(int sid, int slot, int sig) {
666 validate();
667 return rsnScriptKernelIDCreate(mContext, sid, slot, sig);
668 }
669
670 native int rsnScriptFieldIDCreate(int con, int sid, int slot);
671 synchronized int nScriptFieldIDCreate(int sid, int slot) {
672 validate();
673 return rsnScriptFieldIDCreate(mContext, sid, slot);
674 }
675
676 native int rsnScriptGroupCreate(int con, int[] kernels, int[] src, int[] dstk, int[] dstf, int[] types);
677 synchronized int nScriptGroupCreate(int[] kernels, int[] src, int[] dstk, int[] dstf, int[] types) {
678 validate();
679 return rsnScriptGroupCreate(mContext, kernels, src, dstk, dstf, types);
680 }
681
682 native void rsnScriptGroupSetInput(int con, int group, int kernel, int alloc);
683 synchronized void nScriptGroupSetInput(int group, int kernel, int alloc) {
684 validate();
685 rsnScriptGroupSetInput(mContext, group, kernel, alloc);
686 }
687
688 native void rsnScriptGroupSetOutput(int con, int group, int kernel, int alloc);
689 synchronized void nScriptGroupSetOutput(int group, int kernel, int alloc) {
690 validate();
691 rsnScriptGroupSetOutput(mContext, group, kernel, alloc);
692 }
693
694 native void rsnScriptGroupExecute(int con, int group);
695 synchronized void nScriptGroupExecute(int group) {
696 validate();
697 rsnScriptGroupExecute(mContext, group);
698 }
699
Alex Sakhartchouka89094a2011-05-04 17:45:36 -0700700 native int rsnSamplerCreate(int con, int magFilter, int minFilter,
701 int wrapS, int wrapT, int wrapR, float aniso);
702 synchronized int nSamplerCreate(int magFilter, int minFilter,
703 int wrapS, int wrapT, int wrapR, float aniso) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800704 validate();
Alex Sakhartchouka89094a2011-05-04 17:45:36 -0700705 return rsnSamplerCreate(mContext, magFilter, minFilter, wrapS, wrapT, wrapR, aniso);
Jason Sams2e1872f2010-08-17 16:25:41 -0700706 }
Jason Sams0011bcf2009-12-15 12:58:36 -0800707
Jason Sams331bf9b2011-04-06 11:23:54 -0700708 native int rsnProgramStoreCreate(int con, boolean r, boolean g, boolean b, boolean a,
709 boolean depthMask, boolean dither,
710 int srcMode, int dstMode, int depthFunc);
711 synchronized int nProgramStoreCreate(boolean r, boolean g, boolean b, boolean a,
712 boolean depthMask, boolean dither,
713 int srcMode, int dstMode, int depthFunc) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800714 validate();
Jason Samsbd184c52011-04-06 11:44:47 -0700715 return rsnProgramStoreCreate(mContext, r, g, b, a, depthMask, dither, srcMode,
716 dstMode, depthFunc);
Jason Sams2e1872f2010-08-17 16:25:41 -0700717 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700718
Jason Sams94aaed32011-09-23 14:18:53 -0700719 native int rsnProgramRasterCreate(int con, boolean pointSprite, int cullMode);
720 synchronized int nProgramRasterCreate(boolean pointSprite, int cullMode) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800721 validate();
Jason Sams94aaed32011-09-23 14:18:53 -0700722 return rsnProgramRasterCreate(mContext, pointSprite, cullMode);
Jason Sams2e1872f2010-08-17 16:25:41 -0700723 }
Jason Sams1fe9b8c2009-06-11 14:46:10 -0700724
Jason Sams2e1872f2010-08-17 16:25:41 -0700725 native void rsnProgramBindConstants(int con, int pv, int slot, int mID);
726 synchronized void nProgramBindConstants(int pv, int slot, int mID) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800727 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700728 rsnProgramBindConstants(mContext, pv, slot, mID);
729 }
730 native void rsnProgramBindTexture(int con, int vpf, int slot, int a);
731 synchronized void nProgramBindTexture(int vpf, int slot, int a) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800732 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700733 rsnProgramBindTexture(mContext, vpf, slot, a);
734 }
735 native void rsnProgramBindSampler(int con, int vpf, int slot, int s);
736 synchronized void nProgramBindSampler(int vpf, int slot, int s) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800737 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700738 rsnProgramBindSampler(mContext, vpf, slot, s);
739 }
Alex Sakhartchouk2123b462012-02-15 16:21:46 -0800740 native int rsnProgramFragmentCreate(int con, String shader, String[] texNames, int[] params);
741 synchronized int nProgramFragmentCreate(String shader, String[] texNames, int[] params) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800742 validate();
Alex Sakhartchouk2123b462012-02-15 16:21:46 -0800743 return rsnProgramFragmentCreate(mContext, shader, texNames, params);
Jason Sams2e1872f2010-08-17 16:25:41 -0700744 }
Alex Sakhartchouk2123b462012-02-15 16:21:46 -0800745 native int rsnProgramVertexCreate(int con, String shader, String[] texNames, int[] params);
746 synchronized int nProgramVertexCreate(String shader, String[] texNames, int[] params) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800747 validate();
Alex Sakhartchouk2123b462012-02-15 16:21:46 -0800748 return rsnProgramVertexCreate(mContext, shader, texNames, params);
Jason Sams2e1872f2010-08-17 16:25:41 -0700749 }
Alex Sakhartchouk164aaed2010-07-01 16:14:06 -0700750
Alex Sakhartchouk25999a02011-05-12 10:38:03 -0700751 native int rsnMeshCreate(int con, int[] vtx, int[] idx, int[] prim);
752 synchronized int nMeshCreate(int[] vtx, int[] idx, int[] prim) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800753 validate();
Alex Sakhartchouk25999a02011-05-12 10:38:03 -0700754 return rsnMeshCreate(mContext, vtx, idx, prim);
Alex Sakhartchouk9d71e212010-11-08 15:10:52 -0800755 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700756 native int rsnMeshGetVertexBufferCount(int con, int id);
757 synchronized int nMeshGetVertexBufferCount(int id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800758 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700759 return rsnMeshGetVertexBufferCount(mContext, id);
760 }
761 native int rsnMeshGetIndexCount(int con, int id);
762 synchronized int nMeshGetIndexCount(int id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800763 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700764 return rsnMeshGetIndexCount(mContext, id);
765 }
766 native void rsnMeshGetVertices(int con, int id, int[] vtxIds, int vtxIdCount);
767 synchronized void nMeshGetVertices(int id, int[] vtxIds, int vtxIdCount) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800768 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700769 rsnMeshGetVertices(mContext, id, vtxIds, vtxIdCount);
770 }
771 native void rsnMeshGetIndices(int con, int id, int[] idxIds, int[] primitives, int vtxIdCount);
772 synchronized void nMeshGetIndices(int id, int[] idxIds, int[] primitives, int vtxIdCount) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800773 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700774 rsnMeshGetIndices(mContext, id, idxIds, primitives, vtxIdCount);
775 }
776
Jason Samsf15ed012011-10-31 13:23:43 -0700777 native int rsnPathCreate(int con, int prim, boolean isStatic, int vtx, int loop, float q);
778 synchronized int nPathCreate(int prim, boolean isStatic, int vtx, int loop, float q) {
779 validate();
780 return rsnPathCreate(mContext, prim, isStatic, vtx, loop, q);
781 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700782
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800783 int mDev;
784 int mContext;
Romain Guy650a3eb2009-08-31 14:06:43 -0700785 @SuppressWarnings({"FieldCanBeLocal"})
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800786 MessageThread mMessageThread;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700787
Jason Sams8cb39de2010-06-01 15:47:01 -0700788 Element mElement_U8;
789 Element mElement_I8;
790 Element mElement_U16;
791 Element mElement_I16;
792 Element mElement_U32;
793 Element mElement_I32;
Stephen Hines52d83632010-10-11 16:10:42 -0700794 Element mElement_U64;
Stephen Hinesef1dac22010-10-01 15:39:33 -0700795 Element mElement_I64;
Jason Sams8cb39de2010-06-01 15:47:01 -0700796 Element mElement_F32;
Stephen Hines02f417052010-09-30 15:19:22 -0700797 Element mElement_F64;
Jason Samsf110d4b2010-06-21 17:42:41 -0700798 Element mElement_BOOLEAN;
Jason Sams3c0dfba2009-09-27 17:50:38 -0700799
Jason Sams8cb39de2010-06-01 15:47:01 -0700800 Element mElement_ELEMENT;
801 Element mElement_TYPE;
802 Element mElement_ALLOCATION;
803 Element mElement_SAMPLER;
804 Element mElement_SCRIPT;
805 Element mElement_MESH;
806 Element mElement_PROGRAM_FRAGMENT;
807 Element mElement_PROGRAM_VERTEX;
808 Element mElement_PROGRAM_RASTER;
809 Element mElement_PROGRAM_STORE;
Stephen Hines3a291412012-04-11 17:27:29 -0700810 Element mElement_FONT;
Jason Samsa70f4162010-03-26 15:33:42 -0700811
Jason Sams3c0dfba2009-09-27 17:50:38 -0700812 Element mElement_A_8;
813 Element mElement_RGB_565;
814 Element mElement_RGB_888;
815 Element mElement_RGBA_5551;
816 Element mElement_RGBA_4444;
817 Element mElement_RGBA_8888;
818
Jason Sams8cb39de2010-06-01 15:47:01 -0700819 Element mElement_FLOAT_2;
820 Element mElement_FLOAT_3;
821 Element mElement_FLOAT_4;
Stephen Hines836c4a52011-06-01 14:38:10 -0700822
823 Element mElement_DOUBLE_2;
824 Element mElement_DOUBLE_3;
825 Element mElement_DOUBLE_4;
826
827 Element mElement_UCHAR_2;
828 Element mElement_UCHAR_3;
Jason Sams8cb39de2010-06-01 15:47:01 -0700829 Element mElement_UCHAR_4;
Jason Sams7d787b42009-11-15 12:14:26 -0800830
Stephen Hines836c4a52011-06-01 14:38:10 -0700831 Element mElement_CHAR_2;
832 Element mElement_CHAR_3;
833 Element mElement_CHAR_4;
834
835 Element mElement_USHORT_2;
836 Element mElement_USHORT_3;
837 Element mElement_USHORT_4;
838
839 Element mElement_SHORT_2;
840 Element mElement_SHORT_3;
841 Element mElement_SHORT_4;
842
843 Element mElement_UINT_2;
844 Element mElement_UINT_3;
845 Element mElement_UINT_4;
846
847 Element mElement_INT_2;
848 Element mElement_INT_3;
849 Element mElement_INT_4;
850
851 Element mElement_ULONG_2;
852 Element mElement_ULONG_3;
853 Element mElement_ULONG_4;
854
855 Element mElement_LONG_2;
856 Element mElement_LONG_3;
857 Element mElement_LONG_4;
858
Tim Murray932e78e2013-09-03 11:42:26 -0700859 Element mElement_YUV;
860
Jason Sams1d45c472010-08-25 14:31:48 -0700861 Element mElement_MATRIX_4X4;
862 Element mElement_MATRIX_3X3;
863 Element mElement_MATRIX_2X2;
864
Jason Sams4d339932010-05-11 14:03:58 -0700865 Sampler mSampler_CLAMP_NEAREST;
866 Sampler mSampler_CLAMP_LINEAR;
867 Sampler mSampler_CLAMP_LINEAR_MIP_LINEAR;
868 Sampler mSampler_WRAP_NEAREST;
869 Sampler mSampler_WRAP_LINEAR;
870 Sampler mSampler_WRAP_LINEAR_MIP_LINEAR;
Tim Murray6b9b2ca2013-02-15 13:25:55 -0800871 Sampler mSampler_MIRRORED_REPEAT_NEAREST;
872 Sampler mSampler_MIRRORED_REPEAT_LINEAR;
873 Sampler mSampler_MIRRORED_REPEAT_LINEAR_MIP_LINEAR;
Jason Sams4d339932010-05-11 14:03:58 -0700874
Alex Sakhartchoukd36f2482010-08-24 11:37:33 -0700875 ProgramStore mProgramStore_BLEND_NONE_DEPTH_TEST;
876 ProgramStore mProgramStore_BLEND_NONE_DEPTH_NO_DEPTH;
Alex Sakhartchoukd36f2482010-08-24 11:37:33 -0700877 ProgramStore mProgramStore_BLEND_ALPHA_DEPTH_TEST;
878 ProgramStore mProgramStore_BLEND_ALPHA_DEPTH_NO_DEPTH;
Alex Sakhartchouk32e09b52010-08-23 10:24:10 -0700879
Alex Sakhartchoukd36f2482010-08-24 11:37:33 -0700880 ProgramRaster mProgramRaster_CULL_BACK;
881 ProgramRaster mProgramRaster_CULL_FRONT;
882 ProgramRaster mProgramRaster_CULL_NONE;
Alex Sakhartchouk32e09b52010-08-23 10:24:10 -0700883
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700884 ///////////////////////////////////////////////////////////////////////////////////
Jack Palevich43702d82009-05-28 13:38:16 -0700885 //
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700886
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700887 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -0700888 * The base class from which an application should derive in order
889 * to receive RS messages from scripts. When a script calls {@code
890 * rsSendToClient}, the data fields will be filled, and the run
891 * method will be called on a separate thread. This will occur
892 * some time after {@code rsSendToClient} completes in the script,
893 * as {@code rsSendToClient} is asynchronous. Message handlers are
894 * not guaranteed to have completed when {@link
895 * android.renderscript.RenderScript#finish} returns.
Jason Sams27676fe2010-11-10 17:00:59 -0800896 *
897 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800898 public static class RSMessageHandler implements Runnable {
Jason Sams516c3192009-10-06 13:58:47 -0700899 protected int[] mData;
900 protected int mID;
Jason Sams1c415172010-11-08 17:06:46 -0800901 protected int mLength;
Jason Sams516c3192009-10-06 13:58:47 -0700902 public void run() {
903 }
904 }
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700905 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -0700906 * If an application is expecting messages, it should set this
907 * field to an instance of {@link RSMessageHandler}. This
908 * instance will receive all the user messages sent from {@code
909 * sendToClient} by scripts from this context.
Jason Sams27676fe2010-11-10 17:00:59 -0800910 *
911 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800912 RSMessageHandler mMessageCallback = null;
913
914 public void setMessageHandler(RSMessageHandler msg) {
915 mMessageCallback = msg;
916 }
917 public RSMessageHandler getMessageHandler() {
918 return mMessageCallback;
919 }
Jason Sams516c3192009-10-06 13:58:47 -0700920
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700921 /**
Jason Sams02d56d92013-04-12 16:40:50 -0700922 * Place a message into the message queue to be sent back to the message
923 * handler once all previous commands have been executed.
Jason Sams455d6442013-02-05 19:20:18 -0800924 *
925 * @param id
926 * @param data
927 */
928 public void sendMessage(int id, int[] data) {
929 nContextSendMessage(id, data);
930 }
931
932 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -0700933 * The runtime error handler base class. An application should derive from this class
934 * if it wishes to install an error handler. When errors occur at runtime,
935 * the fields in this class will be filled, and the run method will be called.
Jason Sams27676fe2010-11-10 17:00:59 -0800936 *
937 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800938 public static class RSErrorHandler implements Runnable {
Jason Sams1c415172010-11-08 17:06:46 -0800939 protected String mErrorMessage;
940 protected int mErrorNum;
941 public void run() {
942 }
943 }
Jason Sams27676fe2010-11-10 17:00:59 -0800944
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700945 /**
Jason Sams27676fe2010-11-10 17:00:59 -0800946 * Application Error handler. All runtime errors will be dispatched to the
947 * instance of RSAsyncError set here. If this field is null a
Tim Murrayc11e25c2013-04-09 11:01:01 -0700948 * {@link RSRuntimeException} will instead be thrown with details about the error.
Jason Sams27676fe2010-11-10 17:00:59 -0800949 * This will cause program termaination.
950 *
951 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800952 RSErrorHandler mErrorCallback = null;
953
954 public void setErrorHandler(RSErrorHandler msg) {
955 mErrorCallback = msg;
956 }
957 public RSErrorHandler getErrorHandler() {
958 return mErrorCallback;
959 }
Jason Sams1c415172010-11-08 17:06:46 -0800960
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700961 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -0700962 * RenderScript worker thread priority enumeration. The default value is
963 * NORMAL. Applications wishing to do background processing should set
964 * their priority to LOW to avoid starving forground processes.
Jason Sams27676fe2010-11-10 17:00:59 -0800965 */
Jason Sams7d787b42009-11-15 12:14:26 -0800966 public enum Priority {
Glenn Kasten260c77a2011-06-01 17:25:54 -0700967 LOW (Process.THREAD_PRIORITY_BACKGROUND + (5 * Process.THREAD_PRIORITY_LESS_FAVORABLE)),
968 NORMAL (Process.THREAD_PRIORITY_DISPLAY);
Jason Sams7d787b42009-11-15 12:14:26 -0800969
970 int mID;
971 Priority(int id) {
972 mID = id;
973 }
974 }
975
Jason Sams771bebb2009-12-07 12:40:12 -0800976 void validate() {
977 if (mContext == 0) {
Jason Samsc1d62102010-11-04 14:32:19 -0700978 throw new RSInvalidStateException("Calling RS with no Context active.");
Jason Sams771bebb2009-12-07 12:40:12 -0800979 }
980 }
981
Jason Sams27676fe2010-11-10 17:00:59 -0800982
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700983 /**
Jason Sams27676fe2010-11-10 17:00:59 -0800984 * Change the priority of the worker threads for this context.
985 *
986 * @param p New priority to be set.
987 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800988 public void setPriority(Priority p) {
Jason Sams5dbfe932010-01-27 14:41:43 -0800989 validate();
Jason Sams7d787b42009-11-15 12:14:26 -0800990 nContextSetPriority(p.mID);
991 }
992
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800993 static class MessageThread extends Thread {
Jason Sams516c3192009-10-06 13:58:47 -0700994 RenderScript mRS;
995 boolean mRun = true;
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800996 int[] mAuxData = new int[2];
Jason Sams1c415172010-11-08 17:06:46 -0800997
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800998 static final int RS_MESSAGE_TO_CLIENT_NONE = 0;
999 static final int RS_MESSAGE_TO_CLIENT_EXCEPTION = 1;
1000 static final int RS_MESSAGE_TO_CLIENT_RESIZE = 2;
1001 static final int RS_MESSAGE_TO_CLIENT_ERROR = 3;
1002 static final int RS_MESSAGE_TO_CLIENT_USER = 4;
Jason Sams739c8262013-04-11 18:07:52 -07001003 static final int RS_MESSAGE_TO_CLIENT_NEW_BUFFER = 5;
Jason Sams516c3192009-10-06 13:58:47 -07001004
Stephen Hines42028a82013-04-17 19:22:01 -07001005 static final int RS_ERROR_FATAL_DEBUG = 0x0800;
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001006 static final int RS_ERROR_FATAL_UNKNOWN = 0x1000;
Jason Samsadd9d962010-11-22 16:20:16 -08001007
Jason Sams516c3192009-10-06 13:58:47 -07001008 MessageThread(RenderScript rs) {
1009 super("RSMessageThread");
1010 mRS = rs;
1011
1012 }
1013
1014 public void run() {
1015 // This function is a temporary solution. The final solution will
1016 // used typed allocations where the message id is the type indicator.
1017 int[] rbuf = new int[16];
Jason Sams2e1872f2010-08-17 16:25:41 -07001018 mRS.nContextInitToClient(mRS.mContext);
Jason Sams516c3192009-10-06 13:58:47 -07001019 while(mRun) {
Jason Sams1d45c472010-08-25 14:31:48 -07001020 rbuf[0] = 0;
Jason Samsedbfabd2011-05-17 15:01:29 -07001021 int msg = mRS.nContextPeekMessage(mRS.mContext, mAuxData);
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001022 int size = mAuxData[1];
1023 int subID = mAuxData[0];
Jason Sams1c415172010-11-08 17:06:46 -08001024
1025 if (msg == RS_MESSAGE_TO_CLIENT_USER) {
1026 if ((size>>2) >= rbuf.length) {
1027 rbuf = new int[(size + 3) >> 2];
1028 }
Jason Samsedbfabd2011-05-17 15:01:29 -07001029 if (mRS.nContextGetUserMessage(mRS.mContext, rbuf) !=
1030 RS_MESSAGE_TO_CLIENT_USER) {
Tim Murrayc11e25c2013-04-09 11:01:01 -07001031 throw new RSDriverException("Error processing message from RenderScript.");
Jason Samsedbfabd2011-05-17 15:01:29 -07001032 }
Jason Sams1c415172010-11-08 17:06:46 -08001033
1034 if(mRS.mMessageCallback != null) {
1035 mRS.mMessageCallback.mData = rbuf;
1036 mRS.mMessageCallback.mID = subID;
1037 mRS.mMessageCallback.mLength = size;
1038 mRS.mMessageCallback.run();
Jason Sams1d45c472010-08-25 14:31:48 -07001039 } else {
Jason Sams1c415172010-11-08 17:06:46 -08001040 throw new RSInvalidStateException("Received a message from the script with no message handler installed.");
Jason Sams516c3192009-10-06 13:58:47 -07001041 }
Stephen Hinesab98bb62010-09-24 14:38:30 -07001042 continue;
Jason Sams516c3192009-10-06 13:58:47 -07001043 }
Jason Sams1c415172010-11-08 17:06:46 -08001044
1045 if (msg == RS_MESSAGE_TO_CLIENT_ERROR) {
1046 String e = mRS.nContextGetErrorMessage(mRS.mContext);
1047
Stephen Hines42028a82013-04-17 19:22:01 -07001048 // Throw RSRuntimeException under the following conditions:
1049 //
1050 // 1) It is an unknown fatal error.
1051 // 2) It is a debug fatal error, and we are not in a
1052 // debug context.
1053 // 3) It is a debug fatal error, and we do not have an
1054 // error callback.
1055 if (subID >= RS_ERROR_FATAL_UNKNOWN ||
1056 (subID >= RS_ERROR_FATAL_DEBUG &&
1057 (mRS.mContextType != ContextType.DEBUG ||
1058 mRS.mErrorCallback == null))) {
Jason Samsadd9d962010-11-22 16:20:16 -08001059 throw new RSRuntimeException("Fatal error " + subID + ", details: " + e);
1060 }
1061
Jason Sams1c415172010-11-08 17:06:46 -08001062 if(mRS.mErrorCallback != null) {
1063 mRS.mErrorCallback.mErrorMessage = e;
1064 mRS.mErrorCallback.mErrorNum = subID;
1065 mRS.mErrorCallback.run();
1066 } else {
Jason Samsa4b7bc92013-02-05 15:05:39 -08001067 android.util.Log.e(LOG_TAG, "non fatal RS error, " + e);
Stephen Hinesbe74bdd2012-02-03 15:29:36 -08001068 // Do not throw here. In these cases, we do not have
1069 // a fatal error.
Jason Sams1c415172010-11-08 17:06:46 -08001070 }
1071 continue;
1072 }
1073
Jason Sams739c8262013-04-11 18:07:52 -07001074 if (msg == RS_MESSAGE_TO_CLIENT_NEW_BUFFER) {
1075 Allocation.sendBufferNotification(subID);
1076 continue;
1077 }
1078
Jason Sams1c415172010-11-08 17:06:46 -08001079 // 2: teardown.
1080 // But we want to avoid starving other threads during
1081 // teardown by yielding until the next line in the destructor
1082 // can execute to set mRun = false
1083 try {
1084 sleep(1, 0);
1085 } catch(InterruptedException e) {
Jason Sams516c3192009-10-06 13:58:47 -07001086 }
Jason Sams516c3192009-10-06 13:58:47 -07001087 }
Tim Murrayda67deb2013-05-09 12:02:50 -07001088 //Log.d(LOG_TAG, "MessageThread exiting.");
Jason Sams516c3192009-10-06 13:58:47 -07001089 }
1090 }
1091
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001092 RenderScript(Context ctx) {
Stephen Hines42028a82013-04-17 19:22:01 -07001093 mContextType = ContextType.NORMAL;
Jason Sams1a4e1f32012-02-24 17:51:24 -08001094 if (ctx != null) {
1095 mApplicationContext = ctx.getApplicationContext();
1096 }
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001097 }
1098
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001099 /**
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001100 * Gets the application context associated with the RenderScript context.
1101 *
1102 * @return The application context.
1103 */
1104 public final Context getApplicationContext() {
1105 return mApplicationContext;
Jack Palevich60aa3ea2009-05-26 13:45:08 -07001106 }
1107
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001108 /**
Jason Samsadd26dc2013-02-22 18:43:45 -08001109 * @hide
1110 */
1111 public static RenderScript create(Context ctx, int sdkVersion) {
1112 return create(ctx, sdkVersion, ContextType.NORMAL);
1113 }
1114
1115 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001116 * Create a RenderScript context.
Jason Sams27676fe2010-11-10 17:00:59 -08001117 *
Jason Sams1a4e1f32012-02-24 17:51:24 -08001118 * @hide
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001119 * @param ctx The context.
Jason Sams27676fe2010-11-10 17:00:59 -08001120 * @return RenderScript
1121 */
Jason Samsadd26dc2013-02-22 18:43:45 -08001122 public static RenderScript create(Context ctx, int sdkVersion, ContextType ct) {
Dan Morrille4d9a012013-03-28 18:10:43 -07001123 if (!sInitialized) {
1124 Log.e(LOG_TAG, "RenderScript.create() called when disabled; someone is likely to crash");
1125 return null;
1126 }
1127
Shih-wei Liao6b32fab2010-12-10 01:03:59 -08001128 RenderScript rs = new RenderScript(ctx);
Jason Sams704ff642010-02-09 16:05:07 -08001129
1130 rs.mDev = rs.nDeviceCreate();
Jason Samsadd26dc2013-02-22 18:43:45 -08001131 rs.mContext = rs.nContextCreate(rs.mDev, 0, sdkVersion, ct.mID);
Stephen Hines42028a82013-04-17 19:22:01 -07001132 rs.mContextType = ct;
Jason Sams26985362011-05-03 15:01:58 -07001133 if (rs.mContext == 0) {
1134 throw new RSDriverException("Failed to create RS context.");
1135 }
Jason Sams704ff642010-02-09 16:05:07 -08001136 rs.mMessageThread = new MessageThread(rs);
1137 rs.mMessageThread.start();
Jason Sams704ff642010-02-09 16:05:07 -08001138 return rs;
Jason Samsefd9b6fb2009-11-03 13:58:36 -08001139 }
1140
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001141 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001142 * Create a RenderScript context.
Jason Sams1a4e1f32012-02-24 17:51:24 -08001143 *
1144 * @param ctx The context.
1145 * @return RenderScript
1146 */
1147 public static RenderScript create(Context ctx) {
Jason Samsadd26dc2013-02-22 18:43:45 -08001148 return create(ctx, ContextType.NORMAL);
1149 }
1150
1151 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001152 * Create a RenderScript context.
Jason Samsadd26dc2013-02-22 18:43:45 -08001153 *
Jason Samsadd26dc2013-02-22 18:43:45 -08001154 *
1155 * @param ctx The context.
Jason Sams02d56d92013-04-12 16:40:50 -07001156 * @param ct The type of context to be created.
Jason Samsadd26dc2013-02-22 18:43:45 -08001157 * @return RenderScript
1158 */
1159 public static RenderScript create(Context ctx, ContextType ct) {
Jason Sams1a4e1f32012-02-24 17:51:24 -08001160 int v = ctx.getApplicationInfo().targetSdkVersion;
Jason Samsadd26dc2013-02-22 18:43:45 -08001161 return create(ctx, v, ct);
Jason Sams1a4e1f32012-02-24 17:51:24 -08001162 }
1163
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001164 /**
Jason Sams27676fe2010-11-10 17:00:59 -08001165 * Print the currently available debugging information about the state of
1166 * the RS context to the log.
1167 *
Jason Sams27676fe2010-11-10 17:00:59 -08001168 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001169 public void contextDump() {
Jason Sams5dbfe932010-01-27 14:41:43 -08001170 validate();
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001171 nContextDump(0);
Jason Sams715333b2009-11-17 17:26:46 -08001172 }
1173
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001174 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001175 * Wait for any pending asynchronous opeations (such as copies to a RS
1176 * allocation or RS script executions) to complete.
Jason Sams27676fe2010-11-10 17:00:59 -08001177 *
1178 */
Jason Sams96ed4cf2010-06-15 12:15:57 -07001179 public void finish() {
1180 nContextFinish();
1181 }
1182
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -07001183 /**
Tim Murrayc11e25c2013-04-09 11:01:01 -07001184 * Destroys this RenderScript context. Once this function is called,
1185 * using this context or any objects belonging to this context is
1186 * illegal.
Jason Sams27676fe2010-11-10 17:00:59 -08001187 *
1188 */
Jason Samsf5b45962009-08-25 14:49:07 -07001189 public void destroy() {
Jason Sams5dbfe932010-01-27 14:41:43 -08001190 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -07001191 nContextDeinitToClient(mContext);
Jason Sams516c3192009-10-06 13:58:47 -07001192 mMessageThread.mRun = false;
Jason Samsa8bf9422010-09-16 13:43:19 -07001193 try {
1194 mMessageThread.join();
1195 } catch(InterruptedException e) {
1196 }
Jason Sams516c3192009-10-06 13:58:47 -07001197
Jason Sams2e1872f2010-08-17 16:25:41 -07001198 nContextDestroy();
Jason Samsf5b45962009-08-25 14:49:07 -07001199 mContext = 0;
1200
1201 nDeviceDestroy(mDev);
1202 mDev = 0;
1203 }
Jason Sams02fb2cb2009-05-28 15:37:57 -07001204
Jason Samsa9e7a052009-09-25 14:51:22 -07001205 boolean isAlive() {
1206 return mContext != 0;
1207 }
1208
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001209 int safeID(BaseObj o) {
Jason Sams6b9dec02009-09-23 16:38:37 -07001210 if(o != null) {
Jason Samse07694b2012-04-03 15:36:36 -07001211 return o.getID(this);
Jason Samsd8e41612009-08-20 17:22:40 -07001212 }
Jason Sams6b9dec02009-09-23 16:38:37 -07001213 return 0;
Jack Palevich60aa3ea2009-05-26 13:45:08 -07001214 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -07001215}