blob: b2e5b02cadec7b66797dc7c49238258eb0d742c7 [file] [log] [blame]
Jack Palevich60aa3ea2009-05-26 13:45:08 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
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 Sams43ee06852009-08-12 17:54:11 -070019import java.lang.reflect.Field;
Jason Sams36e612a2009-07-31 16:26:13 -070020
Jason Samsb8c5a842009-07-31 20:40:47 -070021import android.graphics.Bitmap;
Romain Guy650a3eb2009-08-31 14:06:43 -070022import android.graphics.BitmapFactory;
Jason Sams36e612a2009-07-31 16:26:13 -070023import android.util.Config;
24import android.util.Log;
25import android.view.Surface;
Jack Palevich43702d82009-05-28 13:38:16 -070026
Jack Palevich60aa3ea2009-05-26 13:45:08 -070027
Jason Samse29d4712009-07-23 15:19:03 -070028/**
29 * @hide
30 *
31 **/
Jack Palevich60aa3ea2009-05-26 13:45:08 -070032public class RenderScript {
Jason Sams3bc47d42009-11-12 15:10:25 -080033 static final String LOG_TAG = "RenderScript_jni";
Jason Sams704ff642010-02-09 16:05:07 -080034 protected static final boolean DEBUG = false;
Romain Guy650a3eb2009-08-31 14:06:43 -070035 @SuppressWarnings({"UnusedDeclaration", "deprecation"})
Jason Sams704ff642010-02-09 16:05:07 -080036 protected static final boolean LOG_ENABLED = DEBUG ? Config.LOGD : Config.LOGV;
Jack Palevich60aa3ea2009-05-26 13:45:08 -070037
38
39
Jason Sams02fb2cb2009-05-28 15:37:57 -070040 /*
Jack Palevich60aa3ea2009-05-26 13:45:08 -070041 * We use a class initializer to allow the native code to cache some
42 * field offsets.
43 */
Romain Guy650a3eb2009-08-31 14:06:43 -070044 @SuppressWarnings({"FieldCanBeLocal", "UnusedDeclaration"})
Jason Sams704ff642010-02-09 16:05:07 -080045 protected static boolean sInitialized;
46 native protected static void _nInit();
Jack Palevich60aa3ea2009-05-26 13:45:08 -070047
Jason Samsdba3ba52009-07-30 14:56:12 -070048
Jack Palevich60aa3ea2009-05-26 13:45:08 -070049 static {
50 sInitialized = false;
51 try {
Jason Samse29d4712009-07-23 15:19:03 -070052 System.loadLibrary("rs_jni");
Jack Palevich60aa3ea2009-05-26 13:45:08 -070053 _nInit();
Jack Palevich60aa3ea2009-05-26 13:45:08 -070054 sInitialized = true;
55 } catch (UnsatisfiedLinkError e) {
56 Log.d(LOG_TAG, "RenderScript JNI library not found!");
57 }
58 }
59
Jason Samsea84a7c2009-09-04 14:42:41 -070060 native void nInitElements(int a8, int rgba4444, int rgba8888, int rgb565);
61
Jason Sams36e612a2009-07-31 16:26:13 -070062 native int nDeviceCreate();
63 native void nDeviceDestroy(int dev);
Jason Samsebfb4362009-09-23 13:57:02 -070064 native void nDeviceSetConfig(int dev, int param, int value);
Jason Sams704ff642010-02-09 16:05:07 -080065 native int nContextCreateGL(int dev, int ver, boolean useDepth);
66 native int nContextCreate(int dev, int ver);
Jason Sams36e612a2009-07-31 16:26:13 -070067 native void nContextDestroy(int con);
Jason Sams3bc47d42009-11-12 15:10:25 -080068 native void nContextSetSurface(int w, int h, Surface sur);
Jason Sams7d787b42009-11-15 12:14:26 -080069 native void nContextSetPriority(int p);
Jason Sams715333b2009-11-17 17:26:46 -080070 native void nContextDump(int bits);
Jason Sams96ed4cf2010-06-15 12:15:57 -070071 native void nContextFinish();
Jack Palevich60aa3ea2009-05-26 13:45:08 -070072
Jason Sams36e612a2009-07-31 16:26:13 -070073 native void nContextBindRootScript(int script);
74 native void nContextBindSampler(int sampler, int slot);
Jason Sams54db59c2010-05-13 18:30:11 -070075 native void nContextBindProgramStore(int pfs);
Jason Sams36e612a2009-07-31 16:26:13 -070076 native void nContextBindProgramFragment(int pf);
77 native void nContextBindProgramVertex(int pf);
Jason Samsebfb4362009-09-23 13:57:02 -070078 native void nContextBindProgramRaster(int pr);
Jason Sams65e7aa52009-09-24 17:38:20 -070079 native void nContextPause();
80 native void nContextResume();
Jason Sams516c3192009-10-06 13:58:47 -070081 native int nContextGetMessage(int[] data, boolean wait);
82 native void nContextInitToClient();
83 native void nContextDeinitToClient();
Jack Palevich60aa3ea2009-05-26 13:45:08 -070084
Jason Sams36e612a2009-07-31 16:26:13 -070085 native void nAssignName(int obj, byte[] name);
Jason Sams7ce033d2009-08-18 14:14:24 -070086 native void nObjDestroy(int id);
Jason Sams730ee652009-08-18 17:07:09 -070087 native void nObjDestroyOOB(int id);
Jason Sams36e612a2009-07-31 16:26:13 -070088 native int nFileOpen(byte[] name);
Jason Sams3eaa3382009-06-10 15:04:38 -070089
Jason Sams718cd1f2009-12-23 14:35:29 -080090
91 native int nElementCreate(int type, int kind, boolean norm, int vecSize);
92 native int nElementCreate2(int[] elements, String[] names);
Jack Palevich60aa3ea2009-05-26 13:45:08 -070093
Jason Sams36e612a2009-07-31 16:26:13 -070094 native void nTypeBegin(int elementID);
95 native void nTypeAdd(int dim, int val);
96 native int nTypeCreate();
Jason Sams43ee06852009-08-12 17:54:11 -070097 native void nTypeFinalDestroy(Type t);
98 native void nTypeSetupFields(Type t, int[] types, int[] bits, Field[] IDs);
Jack Palevich60aa3ea2009-05-26 13:45:08 -070099
Jason Sams36e612a2009-07-31 16:26:13 -0700100 native int nAllocationCreateTyped(int type);
Jason Sams36e612a2009-07-31 16:26:13 -0700101 native int nAllocationCreateFromBitmap(int dstFmt, boolean genMips, Bitmap bmp);
Jason Sams8a647432010-03-01 15:31:04 -0800102 native int nAllocationCreateBitmapRef(int type, Bitmap bmp);
Jason Sams36e612a2009-07-31 16:26:13 -0700103 native int nAllocationCreateFromBitmapBoxed(int dstFmt, boolean genMips, Bitmap bmp);
Romain Guy650a3eb2009-08-31 14:06:43 -0700104 native int nAllocationCreateFromAssetStream(int dstFmt, boolean genMips, int assetStream);
Jason Samsfe08d992009-05-27 14:45:32 -0700105
Jason Samsc2908e62010-02-23 17:44:28 -0800106 native void nAllocationUploadToTexture(int alloc, boolean genMips, int baseMioLevel);
Jason Sams07ae4062009-08-27 20:23:34 -0700107 native void nAllocationUploadToBufferObject(int alloc);
Jason Sams768bc022009-09-21 19:41:04 -0700108
Jason Sams07ae4062009-08-27 20:23:34 -0700109 native void nAllocationSubData1D(int id, int off, int count, int[] d, int sizeBytes);
Jason Sams768bc022009-09-21 19:41:04 -0700110 native void nAllocationSubData1D(int id, int off, int count, short[] d, int sizeBytes);
111 native void nAllocationSubData1D(int id, int off, int count, byte[] d, int sizeBytes);
Jason Sams07ae4062009-08-27 20:23:34 -0700112 native void nAllocationSubData1D(int id, int off, int count, float[] d, int sizeBytes);
Jason Sams768bc022009-09-21 19:41:04 -0700113
Jason Sams07ae4062009-08-27 20:23:34 -0700114 native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, int[] d, int sizeBytes);
115 native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, float[] d, int sizeBytes);
Jason Sams40a29e82009-08-10 14:55:26 -0700116 native void nAllocationRead(int id, int[] d);
117 native void nAllocationRead(int id, float[] d);
Jason Sams2525a812009-09-03 15:43:13 -0700118 native void nAllocationSubDataFromObject(int id, Type t, int offset, Object o);
Jason Sams5f43fd22009-09-15 12:39:22 -0700119 native void nAllocationSubReadFromObject(int id, Type t, int offset, Object o);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700120
Alex Sakhartchoukaae74ad2010-06-04 10:06:50 -0700121 native int nFileA3DCreateFromAssetStream(int assetStream);
122 native int nFileA3DGetNumIndexEntries(int fileA3D);
123 native void nFileA3DGetIndexEntries(int fileA3D, int numEntries, int[] IDs, String[] names);
124 native int nFileA3DGetEntryByIndex(int fileA3D, int index);
125
Alex Sakhartchouk9b949fc2010-06-24 17:15:34 -0700126 native int nFontCreateFromFile(String fileName, int size, int dpi);
127
Jason Sams36e612a2009-07-31 16:26:13 -0700128 native void nAdapter1DBindAllocation(int ad, int alloc);
129 native void nAdapter1DSetConstraint(int ad, int dim, int value);
130 native void nAdapter1DData(int ad, int[] d);
Jason Sams36e612a2009-07-31 16:26:13 -0700131 native void nAdapter1DData(int ad, float[] d);
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700132 native void nAdapter1DSubData(int ad, int off, int count, int[] d);
Jason Sams36e612a2009-07-31 16:26:13 -0700133 native void nAdapter1DSubData(int ad, int off, int count, float[] d);
134 native int nAdapter1DCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700135
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700136 native void nAdapter2DBindAllocation(int ad, int alloc);
137 native void nAdapter2DSetConstraint(int ad, int dim, int value);
138 native void nAdapter2DData(int ad, int[] d);
139 native void nAdapter2DData(int ad, float[] d);
140 native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, int[] d);
141 native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, float[] d);
142 native int nAdapter2DCreate();
143
Jason Sams22534172009-08-04 16:58:20 -0700144 native void nScriptBindAllocation(int script, int alloc, int slot);
Jason Sams22534172009-08-04 16:58:20 -0700145 native void nScriptSetTimeZone(int script, byte[] timeZone);
Jason Samsbe2e8412009-09-16 15:04:38 -0700146 native void nScriptInvoke(int id, int slot);
Jason Sams4d339932010-05-11 14:03:58 -0700147 native void nScriptInvokeV(int id, int slot, byte[] params);
148 native void nScriptSetVarI(int id, int slot, int val);
149 native void nScriptSetVarF(int id, int slot, float val);
150 native void nScriptSetVarV(int id, int slot, byte[] val);
Jason Sams22534172009-08-04 16:58:20 -0700151
Jason Sams36e612a2009-07-31 16:26:13 -0700152 native void nScriptCBegin();
Jason Sams36e612a2009-07-31 16:26:13 -0700153 native void nScriptCSetScript(byte[] script, int offset, int length);
154 native int nScriptCCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700155
Jason Sams36e612a2009-07-31 16:26:13 -0700156 native void nSamplerBegin();
157 native void nSamplerSet(int param, int value);
158 native int nSamplerCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700159
Jason Sams54db59c2010-05-13 18:30:11 -0700160 native void nProgramStoreBegin(int in, int out);
161 native void nProgramStoreDepthFunc(int func);
162 native void nProgramStoreDepthMask(boolean enable);
163 native void nProgramStoreColorMask(boolean r, boolean g, boolean b, boolean a);
164 native void nProgramStoreBlendFunc(int src, int dst);
165 native void nProgramStoreDither(boolean enable);
166 native int nProgramStoreCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700167
Jason Samsebfb4362009-09-23 13:57:02 -0700168 native int nProgramRasterCreate(int in, int out, boolean pointSmooth, boolean lineSmooth, boolean pointSprite);
169 native void nProgramRasterSetLineWidth(int pr, float v);
170 native void nProgramRasterSetPointSize(int pr, float v);
171
Jason Sams0011bcf2009-12-15 12:58:36 -0800172 native void nProgramBindConstants(int pv, int slot, int mID);
Jason Sams68afd012009-12-17 16:55:08 -0800173 native void nProgramBindTexture(int vpf, int slot, int a);
174 native void nProgramBindSampler(int vpf, int slot, int s);
Jason Sams0011bcf2009-12-15 12:58:36 -0800175
Jason Sams68afd012009-12-17 16:55:08 -0800176 native int nProgramFragmentCreate(int[] params);
Jason Sams7e5ab3b2009-12-15 13:27:04 -0800177 native int nProgramFragmentCreate2(String shader, int[] params);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700178
Jason Sams0011bcf2009-12-15 12:58:36 -0800179 native int nProgramVertexCreate(boolean texMat);
180 native int nProgramVertexCreate2(String shader, int[] params);
Jason Sams1fe9b8c2009-06-11 14:46:10 -0700181
Jason Sams36e612a2009-07-31 16:26:13 -0700182 native void nLightBegin();
183 native void nLightSetIsMono(boolean isMono);
184 native void nLightSetIsLocal(boolean isLocal);
185 native int nLightCreate();
Jason Sams36e612a2009-07-31 16:26:13 -0700186 native void nLightSetColor(int l, float r, float g, float b);
187 native void nLightSetPosition(int l, float x, float y, float z);
Jason Samsbba134c2009-06-22 15:49:21 -0700188
Jason Sams1bada8c2009-08-09 17:01:55 -0700189 native int nSimpleMeshCreate(int batchID, int idxID, int[] vtxID, int prim);
190 native void nSimpleMeshBindVertex(int id, int alloc, int slot);
191 native void nSimpleMeshBindIndex(int id, int alloc);
192
Jason Sams40a29e82009-08-10 14:55:26 -0700193 native void nAnimationBegin(int attribCount, int keyframeCount);
194 native void nAnimationAdd(float time, float[] attribs);
195 native int nAnimationCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700196
Jason Sams704ff642010-02-09 16:05:07 -0800197 protected int mDev;
198 protected int mContext;
Romain Guy650a3eb2009-08-31 14:06:43 -0700199 @SuppressWarnings({"FieldCanBeLocal"})
Jason Sams704ff642010-02-09 16:05:07 -0800200 protected MessageThread mMessageThread;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700201
Jason Sams8cb39de2010-06-01 15:47:01 -0700202 Element mElement_U8;
203 Element mElement_I8;
204 Element mElement_U16;
205 Element mElement_I16;
206 Element mElement_U32;
207 Element mElement_I32;
208 Element mElement_F32;
Jason Samsf110d4b2010-06-21 17:42:41 -0700209 Element mElement_BOOLEAN;
Jason Sams3c0dfba2009-09-27 17:50:38 -0700210
Jason Sams8cb39de2010-06-01 15:47:01 -0700211 Element mElement_ELEMENT;
212 Element mElement_TYPE;
213 Element mElement_ALLOCATION;
214 Element mElement_SAMPLER;
215 Element mElement_SCRIPT;
216 Element mElement_MESH;
217 Element mElement_PROGRAM_FRAGMENT;
218 Element mElement_PROGRAM_VERTEX;
219 Element mElement_PROGRAM_RASTER;
220 Element mElement_PROGRAM_STORE;
Jason Samsa70f4162010-03-26 15:33:42 -0700221
Jason Sams3c0dfba2009-09-27 17:50:38 -0700222 Element mElement_A_8;
223 Element mElement_RGB_565;
224 Element mElement_RGB_888;
225 Element mElement_RGBA_5551;
226 Element mElement_RGBA_4444;
227 Element mElement_RGBA_8888;
228
Jason Sams8cb39de2010-06-01 15:47:01 -0700229 Element mElement_FLOAT_2;
230 Element mElement_FLOAT_3;
231 Element mElement_FLOAT_4;
232 Element mElement_UCHAR_4;
Jason Sams7d787b42009-11-15 12:14:26 -0800233
Jason Sams4d339932010-05-11 14:03:58 -0700234 Sampler mSampler_CLAMP_NEAREST;
235 Sampler mSampler_CLAMP_LINEAR;
236 Sampler mSampler_CLAMP_LINEAR_MIP_LINEAR;
237 Sampler mSampler_WRAP_NEAREST;
238 Sampler mSampler_WRAP_LINEAR;
239 Sampler mSampler_WRAP_LINEAR_MIP_LINEAR;
240
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700241 ///////////////////////////////////////////////////////////////////////////////////
Jack Palevich43702d82009-05-28 13:38:16 -0700242 //
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700243
Jason Sams516c3192009-10-06 13:58:47 -0700244 public static class RSMessage implements Runnable {
245 protected int[] mData;
246 protected int mID;
247 public void run() {
248 }
249 }
250 public RSMessage mMessageCallback = null;
251
Jason Sams7d787b42009-11-15 12:14:26 -0800252 public enum Priority {
253 LOW (5), //ANDROID_PRIORITY_BACKGROUND + 5
254 NORMAL (-4); //ANDROID_PRIORITY_DISPLAY
255
256 int mID;
257 Priority(int id) {
258 mID = id;
259 }
260 }
261
Jason Sams771bebb2009-12-07 12:40:12 -0800262 void validate() {
263 if (mContext == 0) {
264 throw new IllegalStateException("Calling RS with no Context active.");
265 }
266 }
267
Jason Sams7d787b42009-11-15 12:14:26 -0800268 public void contextSetPriority(Priority p) {
Jason Sams5dbfe932010-01-27 14:41:43 -0800269 validate();
Jason Sams7d787b42009-11-15 12:14:26 -0800270 nContextSetPriority(p.mID);
271 }
272
Jason Sams704ff642010-02-09 16:05:07 -0800273 protected static class MessageThread extends Thread {
Jason Sams516c3192009-10-06 13:58:47 -0700274 RenderScript mRS;
275 boolean mRun = true;
276
277 MessageThread(RenderScript rs) {
278 super("RSMessageThread");
279 mRS = rs;
280
281 }
282
283 public void run() {
284 // This function is a temporary solution. The final solution will
285 // used typed allocations where the message id is the type indicator.
286 int[] rbuf = new int[16];
287 mRS.nContextInitToClient();
288 while(mRun) {
289 int msg = mRS.nContextGetMessage(rbuf, true);
290 if (msg == 0) {
291 // Should only happen during teardown.
292 // But we want to avoid starving other threads during
293 // teardown by yielding until the next line in the destructor
294 // can execute to set mRun = false
295 try {
296 sleep(1, 0);
297 } catch(InterruptedException e) {
298 }
299 }
300 if(mRS.mMessageCallback != null) {
301 mRS.mMessageCallback.mData = rbuf;
302 mRS.mMessageCallback.mID = msg;
303 mRS.mMessageCallback.run();
304 }
Jason Sams516c3192009-10-06 13:58:47 -0700305 }
Jason Sams3bc47d42009-11-12 15:10:25 -0800306 Log.d(LOG_TAG, "MessageThread exiting.");
Jason Sams516c3192009-10-06 13:58:47 -0700307 }
308 }
309
Jason Sams704ff642010-02-09 16:05:07 -0800310 protected RenderScript() {
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700311 }
312
Jason Sams704ff642010-02-09 16:05:07 -0800313 public static RenderScript create() {
314 RenderScript rs = new RenderScript();
315
316 rs.mDev = rs.nDeviceCreate();
317 rs.mContext = rs.nContextCreate(rs.mDev, 0);
318 rs.mMessageThread = new MessageThread(rs);
319 rs.mMessageThread.start();
320 Element.initPredefined(rs);
321 return rs;
Jason Samsefd9b6fb2009-11-03 13:58:36 -0800322 }
323
Jason Sams715333b2009-11-17 17:26:46 -0800324 public void contextDump(int bits) {
Jason Sams5dbfe932010-01-27 14:41:43 -0800325 validate();
Jason Sams715333b2009-11-17 17:26:46 -0800326 nContextDump(bits);
327 }
328
Jason Sams96ed4cf2010-06-15 12:15:57 -0700329 public void finish() {
330 nContextFinish();
331 }
332
Jason Samsf5b45962009-08-25 14:49:07 -0700333 public void destroy() {
Jason Sams5dbfe932010-01-27 14:41:43 -0800334 validate();
Jason Sams516c3192009-10-06 13:58:47 -0700335 nContextDeinitToClient();
336 mMessageThread.mRun = false;
337
Jason Samsf5b45962009-08-25 14:49:07 -0700338 nContextDestroy(mContext);
339 mContext = 0;
340
341 nDeviceDestroy(mDev);
342 mDev = 0;
343 }
Jason Sams02fb2cb2009-05-28 15:37:57 -0700344
Jason Samsa9e7a052009-09-25 14:51:22 -0700345 boolean isAlive() {
346 return mContext != 0;
347 }
348
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700349 ///////////////////////////////////////////////////////////////////////////////////
350 // Root state
351
Jason Sams704ff642010-02-09 16:05:07 -0800352 protected int safeID(BaseObj o) {
Jason Sams6b9dec02009-09-23 16:38:37 -0700353 if(o != null) {
354 return o.mID;
Jason Samsd8e41612009-08-20 17:22:40 -0700355 }
Jason Sams6b9dec02009-09-23 16:38:37 -0700356 return 0;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700357 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700358}
359
Jason Sams36e612a2009-07-31 16:26:13 -0700360