blob: 03294b5567e90f7169a25c30c574fa03f7807505 [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;
Jason Sams36e612a2009-07-31 16:26:13 -070021
Shih-wei Liao6b32fab2010-12-10 01:03:59 -080022import android.content.Context;
Stephen Hines4382467a2011-08-01 15:02:34 -070023import android.content.pm.ApplicationInfo;
24import android.content.pm.PackageManager;
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -080025import android.content.res.AssetManager;
Jason Samsb8c5a842009-07-31 20:40:47 -070026import android.graphics.Bitmap;
Romain Guy650a3eb2009-08-31 14:06:43 -070027import android.graphics.BitmapFactory;
Jason Samsfaa32b32011-06-20 16:58:04 -070028import android.graphics.SurfaceTexture;
Glenn Kasten260c77a2011-06-01 17:25:54 -070029import android.os.Process;
Jason Sams36e612a2009-07-31 16:26:13 -070030import android.util.Log;
31import android.view.Surface;
Jack Palevich43702d82009-05-28 13:38:16 -070032
Jack Palevich60aa3ea2009-05-26 13:45:08 -070033
Stephen Hines4382467a2011-08-01 15:02:34 -070034
Jason Samse29d4712009-07-23 15:19:03 -070035/**
Joe Fernandez3aef8e1d2011-12-20 10:38:34 -080036 * Renderscript base master class. An instance of this class creates native
Jason Sams27676fe2010-11-10 17:00:59 -080037 * worker threads for processing commands from this object. This base class
38 * does not provide any extended capabilities beyond simple data processing.
39 * For extended capabilities use derived classes such as RenderScriptGL.
40 *
Joe Fernandez3aef8e1d2011-12-20 10:38:34 -080041 * <div class="special reference">
42 * <h3>Developer Guides</h3>
43 * <p>For more information about creating an application that uses Renderscript, read the
44 * <a href="{@docRoot}guide/topics/graphics/renderscript.html">Renderscript</a> developer guide.</p>
45 * </div>
Jason Samse29d4712009-07-23 15:19:03 -070046 **/
Jack Palevich60aa3ea2009-05-26 13:45:08 -070047public class RenderScript {
Jason Sams3bc47d42009-11-12 15:10:25 -080048 static final String LOG_TAG = "RenderScript_jni";
Jason Samsbf6ef8d2010-12-06 15:59:59 -080049 static final boolean DEBUG = false;
Romain Guy650a3eb2009-08-31 14:06:43 -070050 @SuppressWarnings({"UnusedDeclaration", "deprecation"})
Joe Onorato43a17652011-04-06 19:22:23 -070051 static final boolean LOG_ENABLED = false;
Jack Palevich60aa3ea2009-05-26 13:45:08 -070052
Shih-wei Liao6b32fab2010-12-10 01:03:59 -080053 private Context mApplicationContext;
Jack Palevich60aa3ea2009-05-26 13:45:08 -070054
Shih-wei Liao6b32fab2010-12-10 01:03:59 -080055 /*
Jack Palevich60aa3ea2009-05-26 13:45:08 -070056 * We use a class initializer to allow the native code to cache some
57 * field offsets.
58 */
Romain Guy650a3eb2009-08-31 14:06:43 -070059 @SuppressWarnings({"FieldCanBeLocal", "UnusedDeclaration"})
Jason Samsbf6ef8d2010-12-06 15:59:59 -080060 static boolean sInitialized;
61 native static void _nInit();
Jack Palevich60aa3ea2009-05-26 13:45:08 -070062
Jason Samsdba3ba52009-07-30 14:56:12 -070063
Jack Palevich60aa3ea2009-05-26 13:45:08 -070064 static {
65 sInitialized = false;
66 try {
Jason Samse29d4712009-07-23 15:19:03 -070067 System.loadLibrary("rs_jni");
Jack Palevich60aa3ea2009-05-26 13:45:08 -070068 _nInit();
Jack Palevich60aa3ea2009-05-26 13:45:08 -070069 sInitialized = true;
70 } catch (UnsatisfiedLinkError e) {
Jason Samsfa445b92011-01-07 17:00:07 -080071 Log.e(LOG_TAG, "Error loading RS jni library: " + e);
72 throw new RSRuntimeException("Error loading RS jni library: " + e);
Jack Palevich60aa3ea2009-05-26 13:45:08 -070073 }
74 }
75
Jason Sams2e1872f2010-08-17 16:25:41 -070076 // Non-threadsafe functions.
Jason Sams36e612a2009-07-31 16:26:13 -070077 native int nDeviceCreate();
78 native void nDeviceDestroy(int dev);
Jason Samsebfb4362009-09-23 13:57:02 -070079 native void nDeviceSetConfig(int dev, int param, int value);
Jason Samsedbfabd2011-05-17 15:01:29 -070080 native int nContextGetUserMessage(int con, int[] data);
Jason Sams1c415172010-11-08 17:06:46 -080081 native String nContextGetErrorMessage(int con);
Jason Samsedbfabd2011-05-17 15:01:29 -070082 native int nContextPeekMessage(int con, int[] subID);
Jason Sams2e1872f2010-08-17 16:25:41 -070083 native void nContextInitToClient(int con);
84 native void nContextDeinitToClient(int con);
Jason Sams3eaa3382009-06-10 15:04:38 -070085
Jason Samsa6f338c2012-02-24 16:22:16 -080086 /**
87 * Name of the file that holds the object cache.
88 */
89 private static final String CACHE_PATH = "com.android.renderscript.cache";
Jason Sams1a4e1f32012-02-24 17:51:24 -080090 static String mCachePath;
Jason Samsa6f338c2012-02-24 16:22:16 -080091
92 /**
93 * Sets the directory to use as a persistent storage for the
94 * renderscript object file cache.
95 *
96 * @hide
97 * @param cacheDir A directory the current process can write to
98 */
Jason Samsa6f338c2012-02-24 16:22:16 -080099 public static void setupDiskCache(File cacheDir) {
100 File f = new File(cacheDir, CACHE_PATH);
101 mCachePath = f.getAbsolutePath();
102 f.mkdirs();
103 }
104
Jason Sams718cd1f2009-12-23 14:35:29 -0800105
Jason Sams2e1872f2010-08-17 16:25:41 -0700106 // Methods below are wrapped to protect the non-threadsafe
107 // lockless fifo.
Stephen Hines4382467a2011-08-01 15:02:34 -0700108 native int rsnContextCreateGL(int dev, int ver, int sdkVer,
Jason Sams11c8af92010-10-13 15:31:10 -0700109 int colorMin, int colorPref,
110 int alphaMin, int alphaPref,
111 int depthMin, int depthPref,
112 int stencilMin, int stencilPref,
Alex Sakhartchouk2c74ad92011-03-16 19:28:25 -0700113 int samplesMin, int samplesPref, float samplesQ, int dpi);
Stephen Hines4382467a2011-08-01 15:02:34 -0700114 synchronized int nContextCreateGL(int dev, int ver, int sdkVer,
Jason Sams11c8af92010-10-13 15:31:10 -0700115 int colorMin, int colorPref,
116 int alphaMin, int alphaPref,
117 int depthMin, int depthPref,
118 int stencilMin, int stencilPref,
Alex Sakhartchouk2c74ad92011-03-16 19:28:25 -0700119 int samplesMin, int samplesPref, float samplesQ, int dpi) {
Stephen Hines4382467a2011-08-01 15:02:34 -0700120 return rsnContextCreateGL(dev, ver, sdkVer, colorMin, colorPref,
Jason Sams11c8af92010-10-13 15:31:10 -0700121 alphaMin, alphaPref, depthMin, depthPref,
122 stencilMin, stencilPref,
Alex Sakhartchouk2c74ad92011-03-16 19:28:25 -0700123 samplesMin, samplesPref, samplesQ, dpi);
Jason Sams2e1872f2010-08-17 16:25:41 -0700124 }
Stephen Hines4382467a2011-08-01 15:02:34 -0700125 native int rsnContextCreate(int dev, int ver, int sdkVer);
126 synchronized int nContextCreate(int dev, int ver, int sdkVer) {
127 return rsnContextCreate(dev, ver, sdkVer);
Jason Sams2e1872f2010-08-17 16:25:41 -0700128 }
129 native void rsnContextDestroy(int con);
130 synchronized void nContextDestroy() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800131 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700132 rsnContextDestroy(mContext);
133 }
134 native void rsnContextSetSurface(int con, int w, int h, Surface sur);
135 synchronized void nContextSetSurface(int w, int h, Surface sur) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800136 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700137 rsnContextSetSurface(mContext, w, h, sur);
138 }
Jason Samsfaa32b32011-06-20 16:58:04 -0700139 native void rsnContextSetSurfaceTexture(int con, int w, int h, SurfaceTexture sur);
140 synchronized void nContextSetSurfaceTexture(int w, int h, SurfaceTexture sur) {
141 validate();
142 rsnContextSetSurfaceTexture(mContext, w, h, sur);
143 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700144 native void rsnContextSetPriority(int con, int p);
145 synchronized void nContextSetPriority(int p) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800146 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700147 rsnContextSetPriority(mContext, p);
148 }
149 native void rsnContextDump(int con, int bits);
150 synchronized void nContextDump(int bits) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800151 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700152 rsnContextDump(mContext, bits);
153 }
154 native void rsnContextFinish(int con);
155 synchronized void nContextFinish() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800156 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700157 rsnContextFinish(mContext);
158 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700159
Jason Sams2e1872f2010-08-17 16:25:41 -0700160 native void rsnContextBindRootScript(int con, int script);
161 synchronized void nContextBindRootScript(int script) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800162 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700163 rsnContextBindRootScript(mContext, script);
164 }
165 native void rsnContextBindSampler(int con, int sampler, int slot);
166 synchronized void nContextBindSampler(int sampler, int slot) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800167 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700168 rsnContextBindSampler(mContext, sampler, slot);
169 }
170 native void rsnContextBindProgramStore(int con, int pfs);
171 synchronized void nContextBindProgramStore(int pfs) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800172 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700173 rsnContextBindProgramStore(mContext, pfs);
174 }
175 native void rsnContextBindProgramFragment(int con, int pf);
176 synchronized void nContextBindProgramFragment(int pf) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800177 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700178 rsnContextBindProgramFragment(mContext, pf);
179 }
180 native void rsnContextBindProgramVertex(int con, int pv);
181 synchronized void nContextBindProgramVertex(int pv) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800182 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700183 rsnContextBindProgramVertex(mContext, pv);
184 }
185 native void rsnContextBindProgramRaster(int con, int pr);
186 synchronized void nContextBindProgramRaster(int pr) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800187 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700188 rsnContextBindProgramRaster(mContext, pr);
189 }
190 native void rsnContextPause(int con);
191 synchronized void nContextPause() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800192 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700193 rsnContextPause(mContext);
194 }
195 native void rsnContextResume(int con);
196 synchronized void nContextResume() {
Jason Samsd1ac9812011-01-18 18:12:26 -0800197 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700198 rsnContextResume(mContext);
199 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700200
Jason Sams2e1872f2010-08-17 16:25:41 -0700201 native void rsnAssignName(int con, int obj, byte[] name);
202 synchronized void nAssignName(int obj, byte[] name) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800203 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700204 rsnAssignName(mContext, obj, name);
205 }
206 native String rsnGetName(int con, int obj);
207 synchronized String nGetName(int obj) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800208 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700209 return rsnGetName(mContext, obj);
210 }
211 native void rsnObjDestroy(int con, int id);
212 synchronized void nObjDestroy(int id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800213 // There is a race condition here. The calling code may be run
214 // by the gc while teardown is occuring. This protects againts
215 // deleting dead objects.
216 if (mContext != 0) {
217 rsnObjDestroy(mContext, id);
218 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700219 }
Jason Samsfe08d992009-05-27 14:45:32 -0700220
Jason Sams2e1872f2010-08-17 16:25:41 -0700221 native int rsnElementCreate(int con, int type, int kind, boolean norm, int vecSize);
222 synchronized int nElementCreate(int type, int kind, boolean norm, int vecSize) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800223 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700224 return rsnElementCreate(mContext, type, kind, norm, vecSize);
225 }
Jason Sams70d4e502010-09-02 17:35:23 -0700226 native int rsnElementCreate2(int con, int[] elements, String[] names, int[] arraySizes);
227 synchronized int nElementCreate2(int[] elements, String[] names, int[] arraySizes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800228 validate();
Jason Sams70d4e502010-09-02 17:35:23 -0700229 return rsnElementCreate2(mContext, elements, names, arraySizes);
Jason Sams2e1872f2010-08-17 16:25:41 -0700230 }
231 native void rsnElementGetNativeData(int con, int id, int[] elementData);
232 synchronized void nElementGetNativeData(int id, int[] elementData) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800233 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700234 rsnElementGetNativeData(mContext, id, elementData);
235 }
Alex Sakhartchouk7d5f5e72011-10-18 11:08:31 -0700236 native void rsnElementGetSubElements(int con, int id,
237 int[] IDs, String[] names, int[] arraySizes);
238 synchronized void nElementGetSubElements(int id, int[] IDs, String[] names, int[] arraySizes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800239 validate();
Alex Sakhartchouk7d5f5e72011-10-18 11:08:31 -0700240 rsnElementGetSubElements(mContext, id, IDs, names, arraySizes);
Jason Sams2e1872f2010-08-17 16:25:41 -0700241 }
Jason Sams768bc022009-09-21 19:41:04 -0700242
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800243 native int rsnTypeCreate(int con, int eid, int x, int y, int z, boolean mips, boolean faces);
244 synchronized int nTypeCreate(int eid, int x, int y, int z, boolean mips, boolean faces) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800245 validate();
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800246 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces);
Jason Sams2e1872f2010-08-17 16:25:41 -0700247 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700248 native void rsnTypeGetNativeData(int con, int id, int[] typeData);
249 synchronized void nTypeGetNativeData(int id, int[] typeData) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800250 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700251 rsnTypeGetNativeData(mContext, id, typeData);
252 }
Jason Sams768bc022009-09-21 19:41:04 -0700253
Jason Sams857d0c72011-11-23 15:02:15 -0800254 native int rsnAllocationCreateTyped(int con, int type, int mip, int usage, int pointer);
255 synchronized int nAllocationCreateTyped(int type, int mip, int usage, int pointer) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800256 validate();
Jason Sams857d0c72011-11-23 15:02:15 -0800257 return rsnAllocationCreateTyped(mContext, type, mip, usage, pointer);
Jason Sams2e1872f2010-08-17 16:25:41 -0700258 }
Jason Sams5476b452010-12-08 16:14:36 -0800259 native int rsnAllocationCreateFromBitmap(int con, int type, int mip, Bitmap bmp, int usage);
260 synchronized int nAllocationCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800261 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800262 return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage);
Alex Sakhartchouk26ae3902010-10-11 12:35:15 -0700263 }
Jason Sams5476b452010-12-08 16:14:36 -0800264 native int rsnAllocationCubeCreateFromBitmap(int con, int type, int mip, Bitmap bmp, int usage);
265 synchronized int nAllocationCubeCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800266 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800267 return rsnAllocationCubeCreateFromBitmap(mContext, type, mip, bmp, usage);
Alex Sakhartchouk67f2e442010-11-18 15:22:43 -0800268 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700269 native int rsnAllocationCreateBitmapRef(int con, int type, Bitmap bmp);
270 synchronized int nAllocationCreateBitmapRef(int type, Bitmap bmp) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800271 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700272 return rsnAllocationCreateBitmapRef(mContext, type, bmp);
273 }
Jason Sams5476b452010-12-08 16:14:36 -0800274 native int rsnAllocationCreateFromAssetStream(int con, int mips, int assetStream, int usage);
275 synchronized int nAllocationCreateFromAssetStream(int mips, int assetStream, int usage) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800276 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800277 return rsnAllocationCreateFromAssetStream(mContext, mips, assetStream, usage);
278 }
279
Jason Sams4ef66502010-12-10 16:03:15 -0800280 native void rsnAllocationCopyToBitmap(int con, int alloc, Bitmap bmp);
281 synchronized void nAllocationCopyToBitmap(int alloc, Bitmap bmp) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800282 validate();
Jason Sams4ef66502010-12-10 16:03:15 -0800283 rsnAllocationCopyToBitmap(mContext, alloc, bmp);
284 }
285
286
Jason Sams5476b452010-12-08 16:14:36 -0800287 native void rsnAllocationSyncAll(int con, int alloc, int src);
288 synchronized void nAllocationSyncAll(int alloc, int src) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800289 validate();
Jason Sams5476b452010-12-08 16:14:36 -0800290 rsnAllocationSyncAll(mContext, alloc, src);
291 }
Jason Sams615e7ce2012-01-13 14:01:20 -0800292 native int rsnAllocationGetSurfaceTextureID(int con, int alloc);
293 synchronized int nAllocationGetSurfaceTextureID(int alloc) {
294 validate();
295 return rsnAllocationGetSurfaceTextureID(mContext, alloc);
296 }
Jason Samsfe1d5ff2012-03-23 11:47:26 -0700297 native void rsnAllocationGetSurfaceTextureID2(int con, int alloc, SurfaceTexture st);
298 synchronized void nAllocationGetSurfaceTextureID2(int alloc, SurfaceTexture st) {
299 validate();
300 rsnAllocationGetSurfaceTextureID2(mContext, alloc, st);
301 }
Jason Samsfb9aa9f2012-03-28 15:30:07 -0700302 native void rsnAllocationSetSurface(int con, int alloc, Surface sur);
303 synchronized void nAllocationSetSurface(int alloc, Surface sur) {
Jason Sams163766c2012-02-15 12:04:24 -0800304 validate();
Jason Samsfb9aa9f2012-03-28 15:30:07 -0700305 rsnAllocationSetSurface(mContext, alloc, sur);
Jason Sams163766c2012-02-15 12:04:24 -0800306 }
307 native void rsnAllocationIoSend(int con, int alloc);
308 synchronized void nAllocationIoSend(int alloc) {
309 validate();
310 rsnAllocationIoSend(mContext, alloc);
311 }
312 native void rsnAllocationIoReceive(int con, int alloc);
313 synchronized void nAllocationIoReceive(int alloc) {
314 validate();
315 rsnAllocationIoReceive(mContext, alloc);
316 }
317
Jason Sams615e7ce2012-01-13 14:01:20 -0800318
Jason Samsf7086092011-01-12 13:28:37 -0800319 native void rsnAllocationGenerateMipmaps(int con, int alloc);
320 synchronized void nAllocationGenerateMipmaps(int alloc) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800321 validate();
Jason Samsf7086092011-01-12 13:28:37 -0800322 rsnAllocationGenerateMipmaps(mContext, alloc);
323 }
Jason Sams4ef66502010-12-10 16:03:15 -0800324 native void rsnAllocationCopyFromBitmap(int con, int alloc, Bitmap bmp);
325 synchronized void nAllocationCopyFromBitmap(int alloc, Bitmap bmp) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800326 validate();
Jason Sams4ef66502010-12-10 16:03:15 -0800327 rsnAllocationCopyFromBitmap(mContext, alloc, bmp);
Jason Sams2e1872f2010-08-17 16:25:41 -0700328 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700329
Jason Sams49a05d72010-12-29 14:31:29 -0800330
331 native void rsnAllocationData1D(int con, int id, int off, int mip, int count, int[] d, int sizeBytes);
332 synchronized void nAllocationData1D(int id, int off, int mip, int count, int[] d, int sizeBytes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800333 validate();
Jason Sams49a05d72010-12-29 14:31:29 -0800334 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes);
Jason Sams2e1872f2010-08-17 16:25:41 -0700335 }
Jason Sams49a05d72010-12-29 14:31:29 -0800336 native void rsnAllocationData1D(int con, int id, int off, int mip, int count, short[] d, int sizeBytes);
337 synchronized void nAllocationData1D(int id, int off, int mip, int count, short[] d, int sizeBytes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800338 validate();
Jason Sams49a05d72010-12-29 14:31:29 -0800339 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes);
340 }
341 native void rsnAllocationData1D(int con, int id, int off, int mip, int count, byte[] d, int sizeBytes);
342 synchronized void nAllocationData1D(int id, int off, int mip, int count, byte[] d, int sizeBytes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800343 validate();
Jason Sams49a05d72010-12-29 14:31:29 -0800344 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes);
345 }
346 native void rsnAllocationData1D(int con, int id, int off, int mip, int count, float[] d, int sizeBytes);
347 synchronized void nAllocationData1D(int id, int off, int mip, int count, float[] d, int sizeBytes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800348 validate();
Jason Sams49a05d72010-12-29 14:31:29 -0800349 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes);
Jason Sams2e1872f2010-08-17 16:25:41 -0700350 }
Alex Sakhartchoukaae74ad2010-06-04 10:06:50 -0700351
Jason Sams49a05d72010-12-29 14:31:29 -0800352 native void rsnAllocationElementData1D(int con, int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes);
353 synchronized void nAllocationElementData1D(int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800354 validate();
Jason Sams49a05d72010-12-29 14:31:29 -0800355 rsnAllocationElementData1D(mContext, id, xoff, mip, compIdx, d, sizeBytes);
Jason Sams2e1872f2010-08-17 16:25:41 -0700356 }
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -0700357
Alex Sakhartchouk304b1f52011-06-14 11:13:19 -0700358 native void rsnAllocationData2D(int con,
359 int dstAlloc, int dstXoff, int dstYoff,
360 int dstMip, int dstFace,
361 int width, int height,
362 int srcAlloc, int srcXoff, int srcYoff,
363 int srcMip, int srcFace);
364 synchronized void nAllocationData2D(int dstAlloc, int dstXoff, int dstYoff,
365 int dstMip, int dstFace,
366 int width, int height,
367 int srcAlloc, int srcXoff, int srcYoff,
368 int srcMip, int srcFace) {
369 validate();
370 rsnAllocationData2D(mContext,
371 dstAlloc, dstXoff, dstYoff,
372 dstMip, dstFace,
373 width, height,
374 srcAlloc, srcXoff, srcYoff,
375 srcMip, srcFace);
376 }
377
Jason Samsfa445b92011-01-07 17:00:07 -0800378 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes);
379 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800380 validate();
Jason Samsfa445b92011-01-07 17:00:07 -0800381 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
382 }
383 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes);
384 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800385 validate();
Jason Samsfa445b92011-01-07 17:00:07 -0800386 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
387 }
Jason Sams49a05d72010-12-29 14:31:29 -0800388 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes);
389 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800390 validate();
Jason Sams49a05d72010-12-29 14:31:29 -0800391 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
Jason Sams2e1872f2010-08-17 16:25:41 -0700392 }
Jason Sams49a05d72010-12-29 14:31:29 -0800393 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes);
394 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800395 validate();
Jason Sams49a05d72010-12-29 14:31:29 -0800396 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
Jason Sams2e1872f2010-08-17 16:25:41 -0700397 }
Jason Samsfa445b92011-01-07 17:00:07 -0800398 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, Bitmap b);
399 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, Bitmap b) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800400 validate();
Jason Samsfa445b92011-01-07 17:00:07 -0800401 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, b);
402 }
Jason Sams49a05d72010-12-29 14:31:29 -0800403
Jason Samsfa445b92011-01-07 17:00:07 -0800404 native void rsnAllocationRead(int con, int id, byte[] d);
405 synchronized void nAllocationRead(int id, byte[] d) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800406 validate();
Jason Samsfa445b92011-01-07 17:00:07 -0800407 rsnAllocationRead(mContext, id, d);
408 }
409 native void rsnAllocationRead(int con, int id, short[] d);
410 synchronized void nAllocationRead(int id, short[] d) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800411 validate();
Jason Samsfa445b92011-01-07 17:00:07 -0800412 rsnAllocationRead(mContext, id, d);
413 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700414 native void rsnAllocationRead(int con, int id, int[] d);
415 synchronized void nAllocationRead(int id, int[] d) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800416 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700417 rsnAllocationRead(mContext, id, d);
418 }
419 native void rsnAllocationRead(int con, int id, float[] d);
420 synchronized void nAllocationRead(int id, float[] d) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800421 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700422 rsnAllocationRead(mContext, id, d);
423 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700424 native int rsnAllocationGetType(int con, int id);
425 synchronized int nAllocationGetType(int id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800426 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700427 return rsnAllocationGetType(mContext, id);
428 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700429
Jason Sams5edc6082010-10-05 13:32:49 -0700430 native void rsnAllocationResize1D(int con, int id, int dimX);
431 synchronized void nAllocationResize1D(int id, int dimX) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800432 validate();
Jason Sams5edc6082010-10-05 13:32:49 -0700433 rsnAllocationResize1D(mContext, id, dimX);
434 }
435 native void rsnAllocationResize2D(int con, int id, int dimX, int dimY);
436 synchronized void nAllocationResize2D(int id, int dimX, int dimY) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800437 validate();
Jason Sams5edc6082010-10-05 13:32:49 -0700438 rsnAllocationResize2D(mContext, id, dimX, dimY);
439 }
440
Jason Sams2e1872f2010-08-17 16:25:41 -0700441 native int rsnFileA3DCreateFromAssetStream(int con, int assetStream);
442 synchronized int nFileA3DCreateFromAssetStream(int assetStream) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800443 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700444 return rsnFileA3DCreateFromAssetStream(mContext, assetStream);
445 }
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800446 native int rsnFileA3DCreateFromFile(int con, String path);
447 synchronized int nFileA3DCreateFromFile(String path) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800448 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800449 return rsnFileA3DCreateFromFile(mContext, path);
450 }
451 native int rsnFileA3DCreateFromAsset(int con, AssetManager mgr, String path);
452 synchronized int nFileA3DCreateFromAsset(AssetManager mgr, String path) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800453 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800454 return rsnFileA3DCreateFromAsset(mContext, mgr, path);
455 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700456 native int rsnFileA3DGetNumIndexEntries(int con, int fileA3D);
457 synchronized int nFileA3DGetNumIndexEntries(int fileA3D) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800458 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700459 return rsnFileA3DGetNumIndexEntries(mContext, fileA3D);
460 }
461 native void rsnFileA3DGetIndexEntries(int con, int fileA3D, int numEntries, int[] IDs, String[] names);
462 synchronized void nFileA3DGetIndexEntries(int fileA3D, int numEntries, int[] IDs, String[] names) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800463 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700464 rsnFileA3DGetIndexEntries(mContext, fileA3D, numEntries, IDs, names);
465 }
466 native int rsnFileA3DGetEntryByIndex(int con, int fileA3D, int index);
467 synchronized int nFileA3DGetEntryByIndex(int fileA3D, int index) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800468 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700469 return rsnFileA3DGetEntryByIndex(mContext, fileA3D, index);
470 }
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700471
Alex Sakhartchouke27cdee2010-12-17 11:41:08 -0800472 native int rsnFontCreateFromFile(int con, String fileName, float size, int dpi);
473 synchronized int nFontCreateFromFile(String fileName, float size, int dpi) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800474 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700475 return rsnFontCreateFromFile(mContext, fileName, size, dpi);
476 }
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800477 native int rsnFontCreateFromAssetStream(int con, String name, float size, int dpi, int assetStream);
478 synchronized int nFontCreateFromAssetStream(String name, float size, int dpi, int assetStream) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800479 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800480 return rsnFontCreateFromAssetStream(mContext, name, size, dpi, assetStream);
481 }
482 native int rsnFontCreateFromAsset(int con, AssetManager mgr, String path, float size, int dpi);
483 synchronized int nFontCreateFromAsset(AssetManager mgr, String path, float size, int dpi) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800484 validate();
Alex Sakhartchoukb0253ea2011-01-07 11:12:08 -0800485 return rsnFontCreateFromAsset(mContext, mgr, path, size, dpi);
486 }
Jason Sams22534172009-08-04 16:58:20 -0700487
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700488
Jason Sams2e1872f2010-08-17 16:25:41 -0700489 native void rsnScriptBindAllocation(int con, int script, int alloc, int slot);
490 synchronized void nScriptBindAllocation(int script, int alloc, int slot) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800491 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700492 rsnScriptBindAllocation(mContext, script, alloc, slot);
493 }
494 native void rsnScriptSetTimeZone(int con, int script, byte[] timeZone);
495 synchronized void nScriptSetTimeZone(int script, byte[] timeZone) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800496 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700497 rsnScriptSetTimeZone(mContext, script, timeZone);
498 }
499 native void rsnScriptInvoke(int con, int id, int slot);
500 synchronized void nScriptInvoke(int id, int slot) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800501 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700502 rsnScriptInvoke(mContext, id, slot);
503 }
Jason Sams6e494d32011-04-27 16:33:11 -0700504 native void rsnScriptForEach(int con, int id, int slot, int ain, int aout, byte[] params);
505 native void rsnScriptForEach(int con, int id, int slot, int ain, int aout);
506 synchronized void nScriptForEach(int id, int slot, int ain, int aout, byte[] params) {
507 validate();
508 if (params == null) {
509 rsnScriptForEach(mContext, id, slot, ain, aout);
510 } else {
511 rsnScriptForEach(mContext, id, slot, ain, aout, params);
512 }
513 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700514 native void rsnScriptInvokeV(int con, int id, int slot, byte[] params);
515 synchronized void nScriptInvokeV(int id, int slot, byte[] params) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800516 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700517 rsnScriptInvokeV(mContext, id, slot, params);
518 }
519 native void rsnScriptSetVarI(int con, int id, int slot, int val);
520 synchronized void nScriptSetVarI(int id, int slot, int val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800521 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700522 rsnScriptSetVarI(mContext, id, slot, val);
523 }
Stephen Hines031ec58c2010-10-11 10:54:21 -0700524 native void rsnScriptSetVarJ(int con, int id, int slot, long val);
525 synchronized void nScriptSetVarJ(int id, int slot, long val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800526 validate();
Stephen Hines031ec58c2010-10-11 10:54:21 -0700527 rsnScriptSetVarJ(mContext, id, slot, val);
528 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700529 native void rsnScriptSetVarF(int con, int id, int slot, float val);
530 synchronized void nScriptSetVarF(int id, int slot, float val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800531 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700532 rsnScriptSetVarF(mContext, id, slot, val);
533 }
Stephen Hinesca54ec32010-09-20 17:20:30 -0700534 native void rsnScriptSetVarD(int con, int id, int slot, double val);
535 synchronized void nScriptSetVarD(int id, int slot, double val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800536 validate();
Stephen Hinesca54ec32010-09-20 17:20:30 -0700537 rsnScriptSetVarD(mContext, id, slot, val);
538 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700539 native void rsnScriptSetVarV(int con, int id, int slot, byte[] val);
540 synchronized void nScriptSetVarV(int id, int slot, byte[] val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800541 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700542 rsnScriptSetVarV(mContext, id, slot, val);
543 }
Jason Sams6f4cf0b2010-11-16 17:37:02 -0800544 native void rsnScriptSetVarObj(int con, int id, int slot, int val);
545 synchronized void nScriptSetVarObj(int id, int slot, int val) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800546 validate();
Jason Sams6f4cf0b2010-11-16 17:37:02 -0800547 rsnScriptSetVarObj(mContext, id, slot, val);
548 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700549
Jason Samse4a06c52011-03-16 16:29:28 -0700550 native int rsnScriptCCreate(int con, String resName, String cacheDir,
551 byte[] script, int length);
552 synchronized int nScriptCCreate(String resName, String cacheDir, byte[] script, int length) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800553 validate();
Jason Samse4a06c52011-03-16 16:29:28 -0700554 return rsnScriptCCreate(mContext, resName, cacheDir, script, length);
Jason Sams2e1872f2010-08-17 16:25:41 -0700555 }
Jason Samsebfb4362009-09-23 13:57:02 -0700556
Alex Sakhartchouka89094a2011-05-04 17:45:36 -0700557 native int rsnSamplerCreate(int con, int magFilter, int minFilter,
558 int wrapS, int wrapT, int wrapR, float aniso);
559 synchronized int nSamplerCreate(int magFilter, int minFilter,
560 int wrapS, int wrapT, int wrapR, float aniso) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800561 validate();
Alex Sakhartchouka89094a2011-05-04 17:45:36 -0700562 return rsnSamplerCreate(mContext, magFilter, minFilter, wrapS, wrapT, wrapR, aniso);
Jason Sams2e1872f2010-08-17 16:25:41 -0700563 }
Jason Sams0011bcf2009-12-15 12:58:36 -0800564
Jason Sams331bf9b2011-04-06 11:23:54 -0700565 native int rsnProgramStoreCreate(int con, boolean r, boolean g, boolean b, boolean a,
566 boolean depthMask, boolean dither,
567 int srcMode, int dstMode, int depthFunc);
568 synchronized int nProgramStoreCreate(boolean r, boolean g, boolean b, boolean a,
569 boolean depthMask, boolean dither,
570 int srcMode, int dstMode, int depthFunc) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800571 validate();
Jason Samsbd184c52011-04-06 11:44:47 -0700572 return rsnProgramStoreCreate(mContext, r, g, b, a, depthMask, dither, srcMode,
573 dstMode, depthFunc);
Jason Sams2e1872f2010-08-17 16:25:41 -0700574 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700575
Jason Sams94aaed32011-09-23 14:18:53 -0700576 native int rsnProgramRasterCreate(int con, boolean pointSprite, int cullMode);
577 synchronized int nProgramRasterCreate(boolean pointSprite, int cullMode) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800578 validate();
Jason Sams94aaed32011-09-23 14:18:53 -0700579 return rsnProgramRasterCreate(mContext, pointSprite, cullMode);
Jason Sams2e1872f2010-08-17 16:25:41 -0700580 }
Jason Sams1fe9b8c2009-06-11 14:46:10 -0700581
Jason Sams2e1872f2010-08-17 16:25:41 -0700582 native void rsnProgramBindConstants(int con, int pv, int slot, int mID);
583 synchronized void nProgramBindConstants(int pv, int slot, int mID) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800584 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700585 rsnProgramBindConstants(mContext, pv, slot, mID);
586 }
587 native void rsnProgramBindTexture(int con, int vpf, int slot, int a);
588 synchronized void nProgramBindTexture(int vpf, int slot, int a) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800589 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700590 rsnProgramBindTexture(mContext, vpf, slot, a);
591 }
592 native void rsnProgramBindSampler(int con, int vpf, int slot, int s);
593 synchronized void nProgramBindSampler(int vpf, int slot, int s) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800594 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700595 rsnProgramBindSampler(mContext, vpf, slot, s);
596 }
Alex Sakhartchouk2123b462012-02-15 16:21:46 -0800597 native int rsnProgramFragmentCreate(int con, String shader, String[] texNames, int[] params);
598 synchronized int nProgramFragmentCreate(String shader, String[] texNames, int[] params) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800599 validate();
Alex Sakhartchouk2123b462012-02-15 16:21:46 -0800600 return rsnProgramFragmentCreate(mContext, shader, texNames, params);
Jason Sams2e1872f2010-08-17 16:25:41 -0700601 }
Alex Sakhartchouk2123b462012-02-15 16:21:46 -0800602 native int rsnProgramVertexCreate(int con, String shader, String[] texNames, int[] params);
603 synchronized int nProgramVertexCreate(String shader, String[] texNames, int[] params) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800604 validate();
Alex Sakhartchouk2123b462012-02-15 16:21:46 -0800605 return rsnProgramVertexCreate(mContext, shader, texNames, params);
Jason Sams2e1872f2010-08-17 16:25:41 -0700606 }
Alex Sakhartchouk164aaed2010-07-01 16:14:06 -0700607
Alex Sakhartchouk25999a02011-05-12 10:38:03 -0700608 native int rsnMeshCreate(int con, int[] vtx, int[] idx, int[] prim);
609 synchronized int nMeshCreate(int[] vtx, int[] idx, int[] prim) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800610 validate();
Alex Sakhartchouk25999a02011-05-12 10:38:03 -0700611 return rsnMeshCreate(mContext, vtx, idx, prim);
Alex Sakhartchouk9d71e212010-11-08 15:10:52 -0800612 }
Jason Sams2e1872f2010-08-17 16:25:41 -0700613 native int rsnMeshGetVertexBufferCount(int con, int id);
614 synchronized int nMeshGetVertexBufferCount(int id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800615 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700616 return rsnMeshGetVertexBufferCount(mContext, id);
617 }
618 native int rsnMeshGetIndexCount(int con, int id);
619 synchronized int nMeshGetIndexCount(int id) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800620 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700621 return rsnMeshGetIndexCount(mContext, id);
622 }
623 native void rsnMeshGetVertices(int con, int id, int[] vtxIds, int vtxIdCount);
624 synchronized void nMeshGetVertices(int id, int[] vtxIds, int vtxIdCount) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800625 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700626 rsnMeshGetVertices(mContext, id, vtxIds, vtxIdCount);
627 }
628 native void rsnMeshGetIndices(int con, int id, int[] idxIds, int[] primitives, int vtxIdCount);
629 synchronized void nMeshGetIndices(int id, int[] idxIds, int[] primitives, int vtxIdCount) {
Jason Samsd1ac9812011-01-18 18:12:26 -0800630 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700631 rsnMeshGetIndices(mContext, id, idxIds, primitives, vtxIdCount);
632 }
633
Jason Samsf15ed012011-10-31 13:23:43 -0700634 native int rsnPathCreate(int con, int prim, boolean isStatic, int vtx, int loop, float q);
635 synchronized int nPathCreate(int prim, boolean isStatic, int vtx, int loop, float q) {
636 validate();
637 return rsnPathCreate(mContext, prim, isStatic, vtx, loop, q);
638 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700639
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800640 int mDev;
641 int mContext;
Romain Guy650a3eb2009-08-31 14:06:43 -0700642 @SuppressWarnings({"FieldCanBeLocal"})
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800643 MessageThread mMessageThread;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700644
Jason Sams8cb39de2010-06-01 15:47:01 -0700645 Element mElement_U8;
646 Element mElement_I8;
647 Element mElement_U16;
648 Element mElement_I16;
649 Element mElement_U32;
650 Element mElement_I32;
Stephen Hines52d83632010-10-11 16:10:42 -0700651 Element mElement_U64;
Stephen Hinesef1dac22010-10-01 15:39:33 -0700652 Element mElement_I64;
Jason Sams8cb39de2010-06-01 15:47:01 -0700653 Element mElement_F32;
Stephen Hines02f417052010-09-30 15:19:22 -0700654 Element mElement_F64;
Jason Samsf110d4b2010-06-21 17:42:41 -0700655 Element mElement_BOOLEAN;
Jason Sams3c0dfba2009-09-27 17:50:38 -0700656
Jason Sams8cb39de2010-06-01 15:47:01 -0700657 Element mElement_ELEMENT;
658 Element mElement_TYPE;
659 Element mElement_ALLOCATION;
660 Element mElement_SAMPLER;
661 Element mElement_SCRIPT;
662 Element mElement_MESH;
663 Element mElement_PROGRAM_FRAGMENT;
664 Element mElement_PROGRAM_VERTEX;
665 Element mElement_PROGRAM_RASTER;
666 Element mElement_PROGRAM_STORE;
Jason Samsa70f4162010-03-26 15:33:42 -0700667
Jason Sams3c0dfba2009-09-27 17:50:38 -0700668 Element mElement_A_8;
669 Element mElement_RGB_565;
670 Element mElement_RGB_888;
671 Element mElement_RGBA_5551;
672 Element mElement_RGBA_4444;
673 Element mElement_RGBA_8888;
674
Jason Sams8cb39de2010-06-01 15:47:01 -0700675 Element mElement_FLOAT_2;
676 Element mElement_FLOAT_3;
677 Element mElement_FLOAT_4;
Stephen Hines836c4a52011-06-01 14:38:10 -0700678
679 Element mElement_DOUBLE_2;
680 Element mElement_DOUBLE_3;
681 Element mElement_DOUBLE_4;
682
683 Element mElement_UCHAR_2;
684 Element mElement_UCHAR_3;
Jason Sams8cb39de2010-06-01 15:47:01 -0700685 Element mElement_UCHAR_4;
Jason Sams7d787b42009-11-15 12:14:26 -0800686
Stephen Hines836c4a52011-06-01 14:38:10 -0700687 Element mElement_CHAR_2;
688 Element mElement_CHAR_3;
689 Element mElement_CHAR_4;
690
691 Element mElement_USHORT_2;
692 Element mElement_USHORT_3;
693 Element mElement_USHORT_4;
694
695 Element mElement_SHORT_2;
696 Element mElement_SHORT_3;
697 Element mElement_SHORT_4;
698
699 Element mElement_UINT_2;
700 Element mElement_UINT_3;
701 Element mElement_UINT_4;
702
703 Element mElement_INT_2;
704 Element mElement_INT_3;
705 Element mElement_INT_4;
706
707 Element mElement_ULONG_2;
708 Element mElement_ULONG_3;
709 Element mElement_ULONG_4;
710
711 Element mElement_LONG_2;
712 Element mElement_LONG_3;
713 Element mElement_LONG_4;
714
Jason Sams1d45c472010-08-25 14:31:48 -0700715 Element mElement_MATRIX_4X4;
716 Element mElement_MATRIX_3X3;
717 Element mElement_MATRIX_2X2;
718
Jason Sams4d339932010-05-11 14:03:58 -0700719 Sampler mSampler_CLAMP_NEAREST;
720 Sampler mSampler_CLAMP_LINEAR;
721 Sampler mSampler_CLAMP_LINEAR_MIP_LINEAR;
722 Sampler mSampler_WRAP_NEAREST;
723 Sampler mSampler_WRAP_LINEAR;
724 Sampler mSampler_WRAP_LINEAR_MIP_LINEAR;
725
Alex Sakhartchoukd36f2482010-08-24 11:37:33 -0700726 ProgramStore mProgramStore_BLEND_NONE_DEPTH_TEST;
727 ProgramStore mProgramStore_BLEND_NONE_DEPTH_NO_DEPTH;
Alex Sakhartchoukd36f2482010-08-24 11:37:33 -0700728 ProgramStore mProgramStore_BLEND_ALPHA_DEPTH_TEST;
729 ProgramStore mProgramStore_BLEND_ALPHA_DEPTH_NO_DEPTH;
Alex Sakhartchouk32e09b52010-08-23 10:24:10 -0700730
Alex Sakhartchoukd36f2482010-08-24 11:37:33 -0700731 ProgramRaster mProgramRaster_CULL_BACK;
732 ProgramRaster mProgramRaster_CULL_FRONT;
733 ProgramRaster mProgramRaster_CULL_NONE;
Alex Sakhartchouk32e09b52010-08-23 10:24:10 -0700734
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700735 ///////////////////////////////////////////////////////////////////////////////////
Jack Palevich43702d82009-05-28 13:38:16 -0700736 //
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700737
Jason Sams27676fe2010-11-10 17:00:59 -0800738 /**
739 * Base class application should derive from for handling RS messages
Stephen Hines8cecbb52011-02-28 18:20:34 -0800740 * coming from their scripts. When a script calls sendToClient the data
Jason Sams27676fe2010-11-10 17:00:59 -0800741 * fields will be filled in and then the run method called by a message
742 * handling thread. This will occur some time after sendToClient completes
743 * in the script.
744 *
745 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800746 public static class RSMessageHandler implements Runnable {
Jason Sams516c3192009-10-06 13:58:47 -0700747 protected int[] mData;
748 protected int mID;
Jason Sams1c415172010-11-08 17:06:46 -0800749 protected int mLength;
Jason Sams516c3192009-10-06 13:58:47 -0700750 public void run() {
751 }
752 }
Jason Sams27676fe2010-11-10 17:00:59 -0800753 /**
754 * If an application is expecting messages it should set this field to an
755 * instance of RSMessage. This instance will receive all the user messages
756 * sent from sendToClient by scripts from this context.
757 *
758 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800759 RSMessageHandler mMessageCallback = null;
760
761 public void setMessageHandler(RSMessageHandler msg) {
762 mMessageCallback = msg;
763 }
764 public RSMessageHandler getMessageHandler() {
765 return mMessageCallback;
766 }
Jason Sams516c3192009-10-06 13:58:47 -0700767
Jason Sams27676fe2010-11-10 17:00:59 -0800768 /**
769 * Runtime error base class. An application should derive from this class
770 * if it wishes to install an error handler. When errors occur at runtime
771 * the fields in this class will be filled and the run method called.
772 *
773 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800774 public static class RSErrorHandler implements Runnable {
Jason Sams1c415172010-11-08 17:06:46 -0800775 protected String mErrorMessage;
776 protected int mErrorNum;
777 public void run() {
778 }
779 }
Jason Sams27676fe2010-11-10 17:00:59 -0800780
781 /**
782 * Application Error handler. All runtime errors will be dispatched to the
783 * instance of RSAsyncError set here. If this field is null a
784 * RSRuntimeException will instead be thrown with details about the error.
785 * This will cause program termaination.
786 *
787 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800788 RSErrorHandler mErrorCallback = null;
789
790 public void setErrorHandler(RSErrorHandler msg) {
791 mErrorCallback = msg;
792 }
793 public RSErrorHandler getErrorHandler() {
794 return mErrorCallback;
795 }
Jason Sams1c415172010-11-08 17:06:46 -0800796
Jason Sams27676fe2010-11-10 17:00:59 -0800797 /**
798 * RenderScript worker threads priority enumeration. The default value is
799 * NORMAL. Applications wishing to do background processing such as
800 * wallpapers should set their priority to LOW to avoid starving forground
801 * processes.
802 */
Jason Sams7d787b42009-11-15 12:14:26 -0800803 public enum Priority {
Glenn Kasten260c77a2011-06-01 17:25:54 -0700804 LOW (Process.THREAD_PRIORITY_BACKGROUND + (5 * Process.THREAD_PRIORITY_LESS_FAVORABLE)),
805 NORMAL (Process.THREAD_PRIORITY_DISPLAY);
Jason Sams7d787b42009-11-15 12:14:26 -0800806
807 int mID;
808 Priority(int id) {
809 mID = id;
810 }
811 }
812
Jason Sams771bebb2009-12-07 12:40:12 -0800813 void validate() {
814 if (mContext == 0) {
Jason Samsc1d62102010-11-04 14:32:19 -0700815 throw new RSInvalidStateException("Calling RS with no Context active.");
Jason Sams771bebb2009-12-07 12:40:12 -0800816 }
817 }
818
Jason Sams27676fe2010-11-10 17:00:59 -0800819
820 /**
821 * Change the priority of the worker threads for this context.
822 *
823 * @param p New priority to be set.
824 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800825 public void setPriority(Priority p) {
Jason Sams5dbfe932010-01-27 14:41:43 -0800826 validate();
Jason Sams7d787b42009-11-15 12:14:26 -0800827 nContextSetPriority(p.mID);
828 }
829
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800830 static class MessageThread extends Thread {
Jason Sams516c3192009-10-06 13:58:47 -0700831 RenderScript mRS;
832 boolean mRun = true;
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800833 int[] mAuxData = new int[2];
Jason Sams1c415172010-11-08 17:06:46 -0800834
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800835 static final int RS_MESSAGE_TO_CLIENT_NONE = 0;
836 static final int RS_MESSAGE_TO_CLIENT_EXCEPTION = 1;
837 static final int RS_MESSAGE_TO_CLIENT_RESIZE = 2;
838 static final int RS_MESSAGE_TO_CLIENT_ERROR = 3;
839 static final int RS_MESSAGE_TO_CLIENT_USER = 4;
Jason Sams516c3192009-10-06 13:58:47 -0700840
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800841 static final int RS_ERROR_FATAL_UNKNOWN = 0x1000;
Jason Samsadd9d962010-11-22 16:20:16 -0800842
Jason Sams516c3192009-10-06 13:58:47 -0700843 MessageThread(RenderScript rs) {
844 super("RSMessageThread");
845 mRS = rs;
846
847 }
848
849 public void run() {
850 // This function is a temporary solution. The final solution will
851 // used typed allocations where the message id is the type indicator.
852 int[] rbuf = new int[16];
Jason Sams2e1872f2010-08-17 16:25:41 -0700853 mRS.nContextInitToClient(mRS.mContext);
Jason Sams516c3192009-10-06 13:58:47 -0700854 while(mRun) {
Jason Sams1d45c472010-08-25 14:31:48 -0700855 rbuf[0] = 0;
Jason Samsedbfabd2011-05-17 15:01:29 -0700856 int msg = mRS.nContextPeekMessage(mRS.mContext, mAuxData);
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800857 int size = mAuxData[1];
858 int subID = mAuxData[0];
Jason Sams1c415172010-11-08 17:06:46 -0800859
860 if (msg == RS_MESSAGE_TO_CLIENT_USER) {
861 if ((size>>2) >= rbuf.length) {
862 rbuf = new int[(size + 3) >> 2];
863 }
Jason Samsedbfabd2011-05-17 15:01:29 -0700864 if (mRS.nContextGetUserMessage(mRS.mContext, rbuf) !=
865 RS_MESSAGE_TO_CLIENT_USER) {
866 throw new RSDriverException("Error processing message from Renderscript.");
867 }
Jason Sams1c415172010-11-08 17:06:46 -0800868
869 if(mRS.mMessageCallback != null) {
870 mRS.mMessageCallback.mData = rbuf;
871 mRS.mMessageCallback.mID = subID;
872 mRS.mMessageCallback.mLength = size;
873 mRS.mMessageCallback.run();
Jason Sams1d45c472010-08-25 14:31:48 -0700874 } else {
Jason Sams1c415172010-11-08 17:06:46 -0800875 throw new RSInvalidStateException("Received a message from the script with no message handler installed.");
Jason Sams516c3192009-10-06 13:58:47 -0700876 }
Stephen Hinesab98bb62010-09-24 14:38:30 -0700877 continue;
Jason Sams516c3192009-10-06 13:58:47 -0700878 }
Jason Sams1c415172010-11-08 17:06:46 -0800879
880 if (msg == RS_MESSAGE_TO_CLIENT_ERROR) {
881 String e = mRS.nContextGetErrorMessage(mRS.mContext);
882
Jason Samsadd9d962010-11-22 16:20:16 -0800883 if (subID >= RS_ERROR_FATAL_UNKNOWN) {
884 throw new RSRuntimeException("Fatal error " + subID + ", details: " + e);
885 }
886
Jason Sams1c415172010-11-08 17:06:46 -0800887 if(mRS.mErrorCallback != null) {
888 mRS.mErrorCallback.mErrorMessage = e;
889 mRS.mErrorCallback.mErrorNum = subID;
890 mRS.mErrorCallback.run();
891 } else {
Stephen Hinesbe74bdd2012-02-03 15:29:36 -0800892 // Do not throw here. In these cases, we do not have
893 // a fatal error.
Jason Sams1c415172010-11-08 17:06:46 -0800894 }
895 continue;
896 }
897
898 // 2: teardown.
899 // But we want to avoid starving other threads during
900 // teardown by yielding until the next line in the destructor
901 // can execute to set mRun = false
902 try {
903 sleep(1, 0);
904 } catch(InterruptedException e) {
Jason Sams516c3192009-10-06 13:58:47 -0700905 }
Jason Sams516c3192009-10-06 13:58:47 -0700906 }
Jason Sams3bc47d42009-11-12 15:10:25 -0800907 Log.d(LOG_TAG, "MessageThread exiting.");
Jason Sams516c3192009-10-06 13:58:47 -0700908 }
909 }
910
Shih-wei Liao6b32fab2010-12-10 01:03:59 -0800911 RenderScript(Context ctx) {
Jason Sams1a4e1f32012-02-24 17:51:24 -0800912 if (ctx != null) {
913 mApplicationContext = ctx.getApplicationContext();
914 }
Shih-wei Liao6b32fab2010-12-10 01:03:59 -0800915 }
916
917 /**
918 * Gets the application context associated with the RenderScript context.
919 *
920 * @return The application context.
921 */
922 public final Context getApplicationContext() {
923 return mApplicationContext;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700924 }
925
Jason Sams27676fe2010-11-10 17:00:59 -0800926 /**
927 * Create a basic RenderScript context.
928 *
Jason Sams1a4e1f32012-02-24 17:51:24 -0800929 * @hide
Shih-wei Liao6b32fab2010-12-10 01:03:59 -0800930 * @param ctx The context.
Jason Sams27676fe2010-11-10 17:00:59 -0800931 * @return RenderScript
932 */
Jason Sams1a4e1f32012-02-24 17:51:24 -0800933 public static RenderScript create(Context ctx, int sdkVersion) {
Shih-wei Liao6b32fab2010-12-10 01:03:59 -0800934 RenderScript rs = new RenderScript(ctx);
Jason Sams704ff642010-02-09 16:05:07 -0800935
936 rs.mDev = rs.nDeviceCreate();
Stephen Hines4382467a2011-08-01 15:02:34 -0700937 rs.mContext = rs.nContextCreate(rs.mDev, 0, sdkVersion);
Jason Sams26985362011-05-03 15:01:58 -0700938 if (rs.mContext == 0) {
939 throw new RSDriverException("Failed to create RS context.");
940 }
Jason Sams704ff642010-02-09 16:05:07 -0800941 rs.mMessageThread = new MessageThread(rs);
942 rs.mMessageThread.start();
Jason Sams704ff642010-02-09 16:05:07 -0800943 return rs;
Jason Samsefd9b6fb2009-11-03 13:58:36 -0800944 }
945
Jason Sams27676fe2010-11-10 17:00:59 -0800946 /**
Jason Sams1a4e1f32012-02-24 17:51:24 -0800947 * Create a basic RenderScript context.
948 *
949 * @param ctx The context.
950 * @return RenderScript
951 */
952 public static RenderScript create(Context ctx) {
953 int v = ctx.getApplicationInfo().targetSdkVersion;
954 return create(ctx, v);
955 }
956
957 /**
Jason Sams27676fe2010-11-10 17:00:59 -0800958 * Print the currently available debugging information about the state of
959 * the RS context to the log.
960 *
Jason Sams27676fe2010-11-10 17:00:59 -0800961 */
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800962 public void contextDump() {
Jason Sams5dbfe932010-01-27 14:41:43 -0800963 validate();
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800964 nContextDump(0);
Jason Sams715333b2009-11-17 17:26:46 -0800965 }
966
Jason Sams27676fe2010-11-10 17:00:59 -0800967 /**
968 * Wait for any commands in the fifo between the java bindings and native to
969 * be processed.
970 *
971 */
Jason Sams96ed4cf2010-06-15 12:15:57 -0700972 public void finish() {
973 nContextFinish();
974 }
975
Jason Sams27676fe2010-11-10 17:00:59 -0800976 /**
977 * Destroy this renderscript context. Once this function is called its no
978 * longer legal to use this or any objects created by this context.
979 *
980 */
Jason Samsf5b45962009-08-25 14:49:07 -0700981 public void destroy() {
Jason Sams5dbfe932010-01-27 14:41:43 -0800982 validate();
Jason Sams2e1872f2010-08-17 16:25:41 -0700983 nContextDeinitToClient(mContext);
Jason Sams516c3192009-10-06 13:58:47 -0700984 mMessageThread.mRun = false;
Jason Samsa8bf9422010-09-16 13:43:19 -0700985 try {
986 mMessageThread.join();
987 } catch(InterruptedException e) {
988 }
Jason Sams516c3192009-10-06 13:58:47 -0700989
Jason Sams2e1872f2010-08-17 16:25:41 -0700990 nContextDestroy();
Jason Samsf5b45962009-08-25 14:49:07 -0700991 mContext = 0;
992
993 nDeviceDestroy(mDev);
994 mDev = 0;
995 }
Jason Sams02fb2cb2009-05-28 15:37:57 -0700996
Jason Samsa9e7a052009-09-25 14:51:22 -0700997 boolean isAlive() {
998 return mContext != 0;
999 }
1000
Jason Samsbf6ef8d2010-12-06 15:59:59 -08001001 int safeID(BaseObj o) {
Jason Sams6b9dec02009-09-23 16:38:37 -07001002 if(o != null) {
Jason Samse07694b2012-04-03 15:36:36 -07001003 return o.getID(this);
Jason Samsd8e41612009-08-20 17:22:40 -07001004 }
Jason Sams6b9dec02009-09-23 16:38:37 -07001005 return 0;
Jack Palevich60aa3ea2009-05-26 13:45:08 -07001006 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -07001007}