blob: e9f8fe6c86dbaccdb5ed5a387a83b99cd46e9ff9 [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);
74 native void nContextBindProgramFragmentStore(int pfs);
75 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 Sams3eaa338e2009-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);
137 native void nScriptSetClearColor(int script, float r, float g, float b, float a);
138 native void nScriptSetClearDepth(int script, float depth);
139 native void nScriptSetClearStencil(int script, int stencil);
140 native void nScriptSetTimeZone(int script, byte[] timeZone);
Jason Samsfbf0b9e2009-08-13 12:59:04 -0700141 native void nScriptSetRoot(boolean isRoot);
Jason Samsbe2e8412009-09-16 15:04:38 -0700142 native void nScriptInvoke(int id, int slot);
Jason Sams4d339932010-05-11 14:03:58 -0700143 native void nScriptInvokeData(int id, int slot);
144 native void nScriptInvokeV(int id, int slot, byte[] params);
145 native void nScriptSetVarI(int id, int slot, int val);
146 native void nScriptSetVarF(int id, int slot, float val);
147 native void nScriptSetVarV(int id, int slot, byte[] val);
Jason Sams22534172009-08-04 16:58:20 -0700148
Jason Sams36e612a2009-07-31 16:26:13 -0700149 native void nScriptCBegin();
Jason Sams36e612a2009-07-31 16:26:13 -0700150 native void nScriptCSetScript(byte[] script, int offset, int length);
151 native int nScriptCCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700152
Jason Sams36e612a2009-07-31 16:26:13 -0700153 native void nSamplerBegin();
154 native void nSamplerSet(int param, int value);
155 native int nSamplerCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700156
Jason Sams36e612a2009-07-31 16:26:13 -0700157 native void nProgramFragmentStoreBegin(int in, int out);
158 native void nProgramFragmentStoreDepthFunc(int func);
159 native void nProgramFragmentStoreDepthMask(boolean enable);
160 native void nProgramFragmentStoreColorMask(boolean r, boolean g, boolean b, boolean a);
161 native void nProgramFragmentStoreBlendFunc(int src, int dst);
162 native void nProgramFragmentStoreDither(boolean enable);
163 native int nProgramFragmentStoreCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700164
Jason Samsebfb4362009-09-23 13:57:02 -0700165 native int nProgramRasterCreate(int in, int out, boolean pointSmooth, boolean lineSmooth, boolean pointSprite);
166 native void nProgramRasterSetLineWidth(int pr, float v);
167 native void nProgramRasterSetPointSize(int pr, float v);
168
Jason Sams0011bcf2009-12-15 12:58:36 -0800169 native void nProgramBindConstants(int pv, int slot, int mID);
Jason Sams68afd012009-12-17 16:55:08 -0800170 native void nProgramBindTexture(int vpf, int slot, int a);
171 native void nProgramBindSampler(int vpf, int slot, int s);
Jason Sams0011bcf2009-12-15 12:58:36 -0800172
Jason Sams68afd012009-12-17 16:55:08 -0800173 native int nProgramFragmentCreate(int[] params);
Jason Sams7e5ab3b2009-12-15 13:27:04 -0800174 native int nProgramFragmentCreate2(String shader, int[] params);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700175
Jason Sams0011bcf2009-12-15 12:58:36 -0800176 native int nProgramVertexCreate(boolean texMat);
177 native int nProgramVertexCreate2(String shader, int[] params);
Jason Sams1fe9b8c2009-06-11 14:46:10 -0700178
Jason Sams36e612a2009-07-31 16:26:13 -0700179 native void nLightBegin();
180 native void nLightSetIsMono(boolean isMono);
181 native void nLightSetIsLocal(boolean isLocal);
182 native int nLightCreate();
Jason Sams36e612a2009-07-31 16:26:13 -0700183 native void nLightSetColor(int l, float r, float g, float b);
184 native void nLightSetPosition(int l, float x, float y, float z);
Jason Samsbba134c2009-06-22 15:49:21 -0700185
Jason Sams1bada8c2009-08-09 17:01:55 -0700186 native int nSimpleMeshCreate(int batchID, int idxID, int[] vtxID, int prim);
187 native void nSimpleMeshBindVertex(int id, int alloc, int slot);
188 native void nSimpleMeshBindIndex(int id, int alloc);
189
Jason Sams40a29e82009-08-10 14:55:26 -0700190 native void nAnimationBegin(int attribCount, int keyframeCount);
191 native void nAnimationAdd(float time, float[] attribs);
192 native int nAnimationCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700193
Jason Sams704ff642010-02-09 16:05:07 -0800194 protected int mDev;
195 protected int mContext;
Romain Guy650a3eb2009-08-31 14:06:43 -0700196 @SuppressWarnings({"FieldCanBeLocal"})
Jason Sams704ff642010-02-09 16:05:07 -0800197 protected MessageThread mMessageThread;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700198
Jason Sams3c0dfba2009-09-27 17:50:38 -0700199 Element mElement_USER_U8;
200 Element mElement_USER_I8;
201 Element mElement_USER_U16;
202 Element mElement_USER_I16;
203 Element mElement_USER_U32;
204 Element mElement_USER_I32;
Jason Sams718cd1f2009-12-23 14:35:29 -0800205 Element mElement_USER_F32;
Jason Sams3c0dfba2009-09-27 17:50:38 -0700206
Jason Samsa70f4162010-03-26 15:33:42 -0700207 Element mElement_USER_ELEMENT;
208 Element mElement_USER_TYPE;
209 Element mElement_USER_ALLOCATION;
210 Element mElement_USER_SAMPLER;
211 Element mElement_USER_SCRIPT;
212 Element mElement_USER_MESH;
213 Element mElement_USER_PROGRAM_FRAGMENT;
214 Element mElement_USER_PROGRAM_VERTEX;
215 Element mElement_USER_PROGRAM_RASTER;
216 Element mElement_USER_PROGRAM_STORE;
217
Jason Sams3c0dfba2009-09-27 17:50:38 -0700218 Element mElement_A_8;
219 Element mElement_RGB_565;
220 Element mElement_RGB_888;
221 Element mElement_RGBA_5551;
222 Element mElement_RGBA_4444;
223 Element mElement_RGBA_8888;
224
225 Element mElement_INDEX_16;
Jason Sams718cd1f2009-12-23 14:35:29 -0800226 Element mElement_POSITION_2;
227 Element mElement_POSITION_3;
228 Element mElement_TEXTURE_2;
229 Element mElement_NORMAL_3;
230 Element mElement_COLOR_U8_4;
231 Element mElement_COLOR_F32_4;
Jason Sams7d787b42009-11-15 12:14:26 -0800232
Jason Sams4d339932010-05-11 14:03:58 -0700233 Sampler mSampler_CLAMP_NEAREST;
234 Sampler mSampler_CLAMP_LINEAR;
235 Sampler mSampler_CLAMP_LINEAR_MIP_LINEAR;
236 Sampler mSampler_WRAP_NEAREST;
237 Sampler mSampler_WRAP_LINEAR;
238 Sampler mSampler_WRAP_LINEAR_MIP_LINEAR;
239
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700240 ///////////////////////////////////////////////////////////////////////////////////
Jack Palevich43702d82009-05-28 13:38:16 -0700241 //
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700242
Jason Sams516c3192009-10-06 13:58:47 -0700243 public static class RSMessage implements Runnable {
244 protected int[] mData;
245 protected int mID;
246 public void run() {
247 }
248 }
249 public RSMessage mMessageCallback = null;
250
Jason Sams7d787b42009-11-15 12:14:26 -0800251 public enum Priority {
252 LOW (5), //ANDROID_PRIORITY_BACKGROUND + 5
253 NORMAL (-4); //ANDROID_PRIORITY_DISPLAY
254
255 int mID;
256 Priority(int id) {
257 mID = id;
258 }
259 }
260
Jason Sams771bebb2009-12-07 12:40:12 -0800261 void validate() {
262 if (mContext == 0) {
263 throw new IllegalStateException("Calling RS with no Context active.");
264 }
265 }
266
Jason Sams7d787b42009-11-15 12:14:26 -0800267 public void contextSetPriority(Priority p) {
Jason Sams5dbfe932010-01-27 14:41:43 -0800268 validate();
Jason Sams7d787b42009-11-15 12:14:26 -0800269 nContextSetPriority(p.mID);
270 }
271
Jason Sams704ff642010-02-09 16:05:07 -0800272 protected static class MessageThread extends Thread {
Jason Sams516c3192009-10-06 13:58:47 -0700273 RenderScript mRS;
274 boolean mRun = true;
275
276 MessageThread(RenderScript rs) {
277 super("RSMessageThread");
278 mRS = rs;
279
280 }
281
282 public void run() {
283 // This function is a temporary solution. The final solution will
284 // used typed allocations where the message id is the type indicator.
285 int[] rbuf = new int[16];
286 mRS.nContextInitToClient();
287 while(mRun) {
288 int msg = mRS.nContextGetMessage(rbuf, true);
289 if (msg == 0) {
290 // Should only happen during teardown.
291 // But we want to avoid starving other threads during
292 // teardown by yielding until the next line in the destructor
293 // can execute to set mRun = false
294 try {
295 sleep(1, 0);
296 } catch(InterruptedException e) {
297 }
298 }
299 if(mRS.mMessageCallback != null) {
300 mRS.mMessageCallback.mData = rbuf;
301 mRS.mMessageCallback.mID = msg;
302 mRS.mMessageCallback.run();
303 }
Jason Sams516c3192009-10-06 13:58:47 -0700304 }
Jason Sams3bc47d42009-11-12 15:10:25 -0800305 Log.d(LOG_TAG, "MessageThread exiting.");
Jason Sams516c3192009-10-06 13:58:47 -0700306 }
307 }
308
Jason Sams704ff642010-02-09 16:05:07 -0800309 protected RenderScript() {
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700310 }
311
Jason Sams704ff642010-02-09 16:05:07 -0800312 public static RenderScript create() {
313 RenderScript rs = new RenderScript();
314
315 rs.mDev = rs.nDeviceCreate();
316 rs.mContext = rs.nContextCreate(rs.mDev, 0);
317 rs.mMessageThread = new MessageThread(rs);
318 rs.mMessageThread.start();
319 Element.initPredefined(rs);
320 return rs;
Jason Samsefd9b6fb2009-11-03 13:58:36 -0800321 }
322
Jason Sams715333b2009-11-17 17:26:46 -0800323 public void contextDump(int bits) {
Jason Sams5dbfe932010-01-27 14:41:43 -0800324 validate();
Jason Sams715333b2009-11-17 17:26:46 -0800325 nContextDump(bits);
326 }
327
Jason Samsf5b45962009-08-25 14:49:07 -0700328 public void destroy() {
Jason Sams5dbfe932010-01-27 14:41:43 -0800329 validate();
Jason Sams516c3192009-10-06 13:58:47 -0700330 nContextDeinitToClient();
331 mMessageThread.mRun = false;
332
Jason Samsf5b45962009-08-25 14:49:07 -0700333 nContextDestroy(mContext);
334 mContext = 0;
335
336 nDeviceDestroy(mDev);
337 mDev = 0;
338 }
Jason Sams02fb2cb2009-05-28 15:37:57 -0700339
Jason Samsa9e7a052009-09-25 14:51:22 -0700340 boolean isAlive() {
341 return mContext != 0;
342 }
343
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700344 ///////////////////////////////////////////////////////////////////////////////////
345 // Root state
346
Jason Sams704ff642010-02-09 16:05:07 -0800347 protected int safeID(BaseObj o) {
Jason Sams6b9dec02009-09-23 16:38:37 -0700348 if(o != null) {
349 return o.mID;
Jason Samsd8e41612009-08-20 17:22:40 -0700350 }
Jason Sams6b9dec02009-09-23 16:38:37 -0700351 return 0;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700352 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700353}
354
Jason Sams36e612a2009-07-31 16:26:13 -0700355