blob: eda849e40c9b986ee2c45e2a05a666e0cd66a604 [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);
Jack Palevich60aa3ea2009-05-26 13:45:08 -070071
Jason Sams36e612a2009-07-31 16:26:13 -070072 native void nContextBindRootScript(int script);
73 native void nContextBindSampler(int sampler, int slot);
Jason Sams54db59c2010-05-13 18:30:11 -070074 native void nContextBindProgramStore(int pfs);
Jason Sams36e612a2009-07-31 16:26:13 -070075 native void nContextBindProgramFragment(int pf);
76 native void nContextBindProgramVertex(int pf);
Jason Samsebfb4362009-09-23 13:57:02 -070077 native void nContextBindProgramRaster(int pr);
Jason Sams65e7aa52009-09-24 17:38:20 -070078 native void nContextPause();
79 native void nContextResume();
Jason Sams516c3192009-10-06 13:58:47 -070080 native int nContextGetMessage(int[] data, boolean wait);
81 native void nContextInitToClient();
82 native void nContextDeinitToClient();
Jack Palevich60aa3ea2009-05-26 13:45:08 -070083
Jason Sams36e612a2009-07-31 16:26:13 -070084 native void nAssignName(int obj, byte[] name);
Jason Sams7ce033d2009-08-18 14:14:24 -070085 native void nObjDestroy(int id);
Jason Sams730ee652009-08-18 17:07:09 -070086 native void nObjDestroyOOB(int id);
Jason Sams36e612a2009-07-31 16:26:13 -070087 native int nFileOpen(byte[] name);
Jason Sams3eaa3382009-06-10 15:04:38 -070088
Jason Sams718cd1f2009-12-23 14:35:29 -080089
90 native int nElementCreate(int type, int kind, boolean norm, int vecSize);
91 native int nElementCreate2(int[] elements, String[] names);
Jack Palevich60aa3ea2009-05-26 13:45:08 -070092
Jason Sams36e612a2009-07-31 16:26:13 -070093 native void nTypeBegin(int elementID);
94 native void nTypeAdd(int dim, int val);
95 native int nTypeCreate();
Jason Sams43ee06852009-08-12 17:54:11 -070096 native void nTypeFinalDestroy(Type t);
97 native void nTypeSetupFields(Type t, int[] types, int[] bits, Field[] IDs);
Jack Palevich60aa3ea2009-05-26 13:45:08 -070098
Jason Sams36e612a2009-07-31 16:26:13 -070099 native int nAllocationCreateTyped(int type);
Jason Sams36e612a2009-07-31 16:26:13 -0700100 native int nAllocationCreateFromBitmap(int dstFmt, boolean genMips, Bitmap bmp);
Jason Sams8a647432010-03-01 15:31:04 -0800101 native int nAllocationCreateBitmapRef(int type, Bitmap bmp);
Jason Sams36e612a2009-07-31 16:26:13 -0700102 native int nAllocationCreateFromBitmapBoxed(int dstFmt, boolean genMips, Bitmap bmp);
Romain Guy650a3eb2009-08-31 14:06:43 -0700103 native int nAllocationCreateFromAssetStream(int dstFmt, boolean genMips, int assetStream);
Jason Samsfe08d992009-05-27 14:45:32 -0700104
Jason Samsc2908e62010-02-23 17:44:28 -0800105 native void nAllocationUploadToTexture(int alloc, boolean genMips, int baseMioLevel);
Jason Sams07ae4062009-08-27 20:23:34 -0700106 native void nAllocationUploadToBufferObject(int alloc);
Jason Sams768bc022009-09-21 19:41:04 -0700107
Jason Sams07ae4062009-08-27 20:23:34 -0700108 native void nAllocationSubData1D(int id, int off, int count, int[] d, int sizeBytes);
Jason Sams768bc022009-09-21 19:41:04 -0700109 native void nAllocationSubData1D(int id, int off, int count, short[] d, int sizeBytes);
110 native void nAllocationSubData1D(int id, int off, int count, byte[] d, int sizeBytes);
Jason Sams07ae4062009-08-27 20:23:34 -0700111 native void nAllocationSubData1D(int id, int off, int count, float[] d, int sizeBytes);
Jason Sams768bc022009-09-21 19:41:04 -0700112
Jason Sams07ae4062009-08-27 20:23:34 -0700113 native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, int[] d, int sizeBytes);
114 native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, float[] d, int sizeBytes);
Jason Sams40a29e82009-08-10 14:55:26 -0700115 native void nAllocationRead(int id, int[] d);
116 native void nAllocationRead(int id, float[] d);
Jason Sams2525a812009-09-03 15:43:13 -0700117 native void nAllocationSubDataFromObject(int id, Type t, int offset, Object o);
Jason Sams5f43fd22009-09-15 12:39:22 -0700118 native void nAllocationSubReadFromObject(int id, Type t, int offset, Object o);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700119
Jason Sams36e612a2009-07-31 16:26:13 -0700120 native void nAdapter1DBindAllocation(int ad, int alloc);
121 native void nAdapter1DSetConstraint(int ad, int dim, int value);
122 native void nAdapter1DData(int ad, int[] d);
Jason Sams36e612a2009-07-31 16:26:13 -0700123 native void nAdapter1DData(int ad, float[] d);
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700124 native void nAdapter1DSubData(int ad, int off, int count, int[] d);
Jason Sams36e612a2009-07-31 16:26:13 -0700125 native void nAdapter1DSubData(int ad, int off, int count, float[] d);
126 native int nAdapter1DCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700127
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700128 native void nAdapter2DBindAllocation(int ad, int alloc);
129 native void nAdapter2DSetConstraint(int ad, int dim, int value);
130 native void nAdapter2DData(int ad, int[] d);
131 native void nAdapter2DData(int ad, float[] d);
132 native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, int[] d);
133 native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, float[] d);
134 native int nAdapter2DCreate();
135
Jason Sams22534172009-08-04 16:58:20 -0700136 native void nScriptBindAllocation(int script, int alloc, int slot);
Jason Sams22534172009-08-04 16:58:20 -0700137 native void nScriptSetTimeZone(int script, byte[] timeZone);
Jason Samsbe2e8412009-09-16 15:04:38 -0700138 native void nScriptInvoke(int id, int slot);
Jason Sams4d339932010-05-11 14:03:58 -0700139 native void nScriptInvokeData(int id, int slot);
140 native void nScriptInvokeV(int id, int slot, byte[] params);
141 native void nScriptSetVarI(int id, int slot, int val);
142 native void nScriptSetVarF(int id, int slot, float val);
143 native void nScriptSetVarV(int id, int slot, byte[] val);
Jason Sams22534172009-08-04 16:58:20 -0700144
Jason Sams36e612a2009-07-31 16:26:13 -0700145 native void nScriptCBegin();
Jason Sams36e612a2009-07-31 16:26:13 -0700146 native void nScriptCSetScript(byte[] script, int offset, int length);
147 native int nScriptCCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700148
Jason Sams36e612a2009-07-31 16:26:13 -0700149 native void nSamplerBegin();
150 native void nSamplerSet(int param, int value);
151 native int nSamplerCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700152
Jason Sams54db59c2010-05-13 18:30:11 -0700153 native void nProgramStoreBegin(int in, int out);
154 native void nProgramStoreDepthFunc(int func);
155 native void nProgramStoreDepthMask(boolean enable);
156 native void nProgramStoreColorMask(boolean r, boolean g, boolean b, boolean a);
157 native void nProgramStoreBlendFunc(int src, int dst);
158 native void nProgramStoreDither(boolean enable);
159 native int nProgramStoreCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700160
Jason Samsebfb4362009-09-23 13:57:02 -0700161 native int nProgramRasterCreate(int in, int out, boolean pointSmooth, boolean lineSmooth, boolean pointSprite);
162 native void nProgramRasterSetLineWidth(int pr, float v);
163 native void nProgramRasterSetPointSize(int pr, float v);
164
Jason Sams0011bcf2009-12-15 12:58:36 -0800165 native void nProgramBindConstants(int pv, int slot, int mID);
Jason Sams68afd012009-12-17 16:55:08 -0800166 native void nProgramBindTexture(int vpf, int slot, int a);
167 native void nProgramBindSampler(int vpf, int slot, int s);
Jason Sams0011bcf2009-12-15 12:58:36 -0800168
Jason Sams68afd012009-12-17 16:55:08 -0800169 native int nProgramFragmentCreate(int[] params);
Jason Sams7e5ab3b2009-12-15 13:27:04 -0800170 native int nProgramFragmentCreate2(String shader, int[] params);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700171
Jason Sams0011bcf2009-12-15 12:58:36 -0800172 native int nProgramVertexCreate(boolean texMat);
173 native int nProgramVertexCreate2(String shader, int[] params);
Jason Sams1fe9b8c2009-06-11 14:46:10 -0700174
Jason Sams36e612a2009-07-31 16:26:13 -0700175 native void nLightBegin();
176 native void nLightSetIsMono(boolean isMono);
177 native void nLightSetIsLocal(boolean isLocal);
178 native int nLightCreate();
Jason Sams36e612a2009-07-31 16:26:13 -0700179 native void nLightSetColor(int l, float r, float g, float b);
180 native void nLightSetPosition(int l, float x, float y, float z);
Jason Samsbba134c2009-06-22 15:49:21 -0700181
Jason Sams1bada8c2009-08-09 17:01:55 -0700182 native int nSimpleMeshCreate(int batchID, int idxID, int[] vtxID, int prim);
183 native void nSimpleMeshBindVertex(int id, int alloc, int slot);
184 native void nSimpleMeshBindIndex(int id, int alloc);
185
Jason Sams40a29e82009-08-10 14:55:26 -0700186 native void nAnimationBegin(int attribCount, int keyframeCount);
187 native void nAnimationAdd(float time, float[] attribs);
188 native int nAnimationCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700189
Jason Sams704ff642010-02-09 16:05:07 -0800190 protected int mDev;
191 protected int mContext;
Romain Guy650a3eb2009-08-31 14:06:43 -0700192 @SuppressWarnings({"FieldCanBeLocal"})
Jason Sams704ff642010-02-09 16:05:07 -0800193 protected MessageThread mMessageThread;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700194
Jason Sams8cb39de2010-06-01 15:47:01 -0700195 Element mElement_U8;
196 Element mElement_I8;
197 Element mElement_U16;
198 Element mElement_I16;
199 Element mElement_U32;
200 Element mElement_I32;
201 Element mElement_F32;
Jason Sams3c0dfba2009-09-27 17:50:38 -0700202
Jason Sams8cb39de2010-06-01 15:47:01 -0700203 Element mElement_ELEMENT;
204 Element mElement_TYPE;
205 Element mElement_ALLOCATION;
206 Element mElement_SAMPLER;
207 Element mElement_SCRIPT;
208 Element mElement_MESH;
209 Element mElement_PROGRAM_FRAGMENT;
210 Element mElement_PROGRAM_VERTEX;
211 Element mElement_PROGRAM_RASTER;
212 Element mElement_PROGRAM_STORE;
Jason Samsa70f4162010-03-26 15:33:42 -0700213
Jason Sams3c0dfba2009-09-27 17:50:38 -0700214 Element mElement_A_8;
215 Element mElement_RGB_565;
216 Element mElement_RGB_888;
217 Element mElement_RGBA_5551;
218 Element mElement_RGBA_4444;
219 Element mElement_RGBA_8888;
220
221 Element mElement_INDEX_16;
Jason Sams8cb39de2010-06-01 15:47:01 -0700222 Element mElement_FLOAT_2;
223 Element mElement_FLOAT_3;
224 Element mElement_FLOAT_4;
225 Element mElement_UCHAR_4;
Jason Sams7d787b42009-11-15 12:14:26 -0800226
Jason Sams4d339932010-05-11 14:03:58 -0700227 Sampler mSampler_CLAMP_NEAREST;
228 Sampler mSampler_CLAMP_LINEAR;
229 Sampler mSampler_CLAMP_LINEAR_MIP_LINEAR;
230 Sampler mSampler_WRAP_NEAREST;
231 Sampler mSampler_WRAP_LINEAR;
232 Sampler mSampler_WRAP_LINEAR_MIP_LINEAR;
233
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700234 ///////////////////////////////////////////////////////////////////////////////////
Jack Palevich43702d82009-05-28 13:38:16 -0700235 //
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700236
Jason Sams516c3192009-10-06 13:58:47 -0700237 public static class RSMessage implements Runnable {
238 protected int[] mData;
239 protected int mID;
240 public void run() {
241 }
242 }
243 public RSMessage mMessageCallback = null;
244
Jason Sams7d787b42009-11-15 12:14:26 -0800245 public enum Priority {
246 LOW (5), //ANDROID_PRIORITY_BACKGROUND + 5
247 NORMAL (-4); //ANDROID_PRIORITY_DISPLAY
248
249 int mID;
250 Priority(int id) {
251 mID = id;
252 }
253 }
254
Jason Sams771bebb2009-12-07 12:40:12 -0800255 void validate() {
256 if (mContext == 0) {
257 throw new IllegalStateException("Calling RS with no Context active.");
258 }
259 }
260
Jason Sams7d787b42009-11-15 12:14:26 -0800261 public void contextSetPriority(Priority p) {
Jason Sams5dbfe932010-01-27 14:41:43 -0800262 validate();
Jason Sams7d787b42009-11-15 12:14:26 -0800263 nContextSetPriority(p.mID);
264 }
265
Jason Sams704ff642010-02-09 16:05:07 -0800266 protected static class MessageThread extends Thread {
Jason Sams516c3192009-10-06 13:58:47 -0700267 RenderScript mRS;
268 boolean mRun = true;
269
270 MessageThread(RenderScript rs) {
271 super("RSMessageThread");
272 mRS = rs;
273
274 }
275
276 public void run() {
277 // This function is a temporary solution. The final solution will
278 // used typed allocations where the message id is the type indicator.
279 int[] rbuf = new int[16];
280 mRS.nContextInitToClient();
281 while(mRun) {
282 int msg = mRS.nContextGetMessage(rbuf, true);
283 if (msg == 0) {
284 // Should only happen during teardown.
285 // But we want to avoid starving other threads during
286 // teardown by yielding until the next line in the destructor
287 // can execute to set mRun = false
288 try {
289 sleep(1, 0);
290 } catch(InterruptedException e) {
291 }
292 }
293 if(mRS.mMessageCallback != null) {
294 mRS.mMessageCallback.mData = rbuf;
295 mRS.mMessageCallback.mID = msg;
296 mRS.mMessageCallback.run();
297 }
Jason Sams516c3192009-10-06 13:58:47 -0700298 }
Jason Sams3bc47d42009-11-12 15:10:25 -0800299 Log.d(LOG_TAG, "MessageThread exiting.");
Jason Sams516c3192009-10-06 13:58:47 -0700300 }
301 }
302
Jason Sams704ff642010-02-09 16:05:07 -0800303 protected RenderScript() {
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700304 }
305
Jason Sams704ff642010-02-09 16:05:07 -0800306 public static RenderScript create() {
307 RenderScript rs = new RenderScript();
308
309 rs.mDev = rs.nDeviceCreate();
310 rs.mContext = rs.nContextCreate(rs.mDev, 0);
311 rs.mMessageThread = new MessageThread(rs);
312 rs.mMessageThread.start();
313 Element.initPredefined(rs);
314 return rs;
Jason Samsefd9b6fb2009-11-03 13:58:36 -0800315 }
316
Jason Sams715333b2009-11-17 17:26:46 -0800317 public void contextDump(int bits) {
Jason Sams5dbfe932010-01-27 14:41:43 -0800318 validate();
Jason Sams715333b2009-11-17 17:26:46 -0800319 nContextDump(bits);
320 }
321
Jason Samsf5b45962009-08-25 14:49:07 -0700322 public void destroy() {
Jason Sams5dbfe932010-01-27 14:41:43 -0800323 validate();
Jason Sams516c3192009-10-06 13:58:47 -0700324 nContextDeinitToClient();
325 mMessageThread.mRun = false;
326
Jason Samsf5b45962009-08-25 14:49:07 -0700327 nContextDestroy(mContext);
328 mContext = 0;
329
330 nDeviceDestroy(mDev);
331 mDev = 0;
332 }
Jason Sams02fb2cb2009-05-28 15:37:57 -0700333
Jason Samsa9e7a052009-09-25 14:51:22 -0700334 boolean isAlive() {
335 return mContext != 0;
336 }
337
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700338 ///////////////////////////////////////////////////////////////////////////////////
339 // Root state
340
Jason Sams704ff642010-02-09 16:05:07 -0800341 protected int safeID(BaseObj o) {
Jason Sams6b9dec02009-09-23 16:38:37 -0700342 if(o != null) {
343 return o.mID;
Jason Samsd8e41612009-08-20 17:22:40 -0700344 }
Jason Sams6b9dec02009-09-23 16:38:37 -0700345 return 0;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700346 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700347}
348
Jason Sams36e612a2009-07-31 16:26:13 -0700349