blob: 70f6bd7cd764ce55e6968e2e79ab4b130dbc1253 [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
Jason Sams36e612a2009-07-31 16:26:13 -0700126 native void nAdapter1DBindAllocation(int ad, int alloc);
127 native void nAdapter1DSetConstraint(int ad, int dim, int value);
128 native void nAdapter1DData(int ad, int[] d);
Jason Sams36e612a2009-07-31 16:26:13 -0700129 native void nAdapter1DData(int ad, float[] d);
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700130 native void nAdapter1DSubData(int ad, int off, int count, int[] d);
Jason Sams36e612a2009-07-31 16:26:13 -0700131 native void nAdapter1DSubData(int ad, int off, int count, float[] d);
132 native int nAdapter1DCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700133
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700134 native void nAdapter2DBindAllocation(int ad, int alloc);
135 native void nAdapter2DSetConstraint(int ad, int dim, int value);
136 native void nAdapter2DData(int ad, int[] d);
137 native void nAdapter2DData(int ad, float[] d);
138 native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, int[] d);
139 native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, float[] d);
140 native int nAdapter2DCreate();
141
Jason Sams22534172009-08-04 16:58:20 -0700142 native void nScriptBindAllocation(int script, int alloc, int slot);
Jason Sams22534172009-08-04 16:58:20 -0700143 native void nScriptSetTimeZone(int script, byte[] timeZone);
Jason Samsbe2e8412009-09-16 15:04:38 -0700144 native void nScriptInvoke(int id, int slot);
Jason Sams4d339932010-05-11 14:03:58 -0700145 native void nScriptInvokeV(int id, int slot, byte[] params);
146 native void nScriptSetVarI(int id, int slot, int val);
147 native void nScriptSetVarF(int id, int slot, float val);
148 native void nScriptSetVarV(int id, int slot, byte[] val);
Jason Sams22534172009-08-04 16:58:20 -0700149
Jason Sams36e612a2009-07-31 16:26:13 -0700150 native void nScriptCBegin();
Jason Sams36e612a2009-07-31 16:26:13 -0700151 native void nScriptCSetScript(byte[] script, int offset, int length);
152 native int nScriptCCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700153
Jason Sams36e612a2009-07-31 16:26:13 -0700154 native void nSamplerBegin();
155 native void nSamplerSet(int param, int value);
156 native int nSamplerCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700157
Jason Sams54db59c2010-05-13 18:30:11 -0700158 native void nProgramStoreBegin(int in, int out);
159 native void nProgramStoreDepthFunc(int func);
160 native void nProgramStoreDepthMask(boolean enable);
161 native void nProgramStoreColorMask(boolean r, boolean g, boolean b, boolean a);
162 native void nProgramStoreBlendFunc(int src, int dst);
163 native void nProgramStoreDither(boolean enable);
164 native int nProgramStoreCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700165
Jason Samsebfb4362009-09-23 13:57:02 -0700166 native int nProgramRasterCreate(int in, int out, boolean pointSmooth, boolean lineSmooth, boolean pointSprite);
167 native void nProgramRasterSetLineWidth(int pr, float v);
168 native void nProgramRasterSetPointSize(int pr, float v);
169
Jason Sams0011bcf2009-12-15 12:58:36 -0800170 native void nProgramBindConstants(int pv, int slot, int mID);
Jason Sams68afd012009-12-17 16:55:08 -0800171 native void nProgramBindTexture(int vpf, int slot, int a);
172 native void nProgramBindSampler(int vpf, int slot, int s);
Jason Sams0011bcf2009-12-15 12:58:36 -0800173
Jason Sams68afd012009-12-17 16:55:08 -0800174 native int nProgramFragmentCreate(int[] params);
Jason Sams7e5ab3b2009-12-15 13:27:04 -0800175 native int nProgramFragmentCreate2(String shader, int[] params);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700176
Jason Sams0011bcf2009-12-15 12:58:36 -0800177 native int nProgramVertexCreate(boolean texMat);
178 native int nProgramVertexCreate2(String shader, int[] params);
Jason Sams1fe9b8c2009-06-11 14:46:10 -0700179
Jason Sams36e612a2009-07-31 16:26:13 -0700180 native void nLightBegin();
181 native void nLightSetIsMono(boolean isMono);
182 native void nLightSetIsLocal(boolean isLocal);
183 native int nLightCreate();
Jason Sams36e612a2009-07-31 16:26:13 -0700184 native void nLightSetColor(int l, float r, float g, float b);
185 native void nLightSetPosition(int l, float x, float y, float z);
Jason Samsbba134c2009-06-22 15:49:21 -0700186
Jason Sams1bada8c2009-08-09 17:01:55 -0700187 native int nSimpleMeshCreate(int batchID, int idxID, int[] vtxID, int prim);
188 native void nSimpleMeshBindVertex(int id, int alloc, int slot);
189 native void nSimpleMeshBindIndex(int id, int alloc);
190
Jason Sams40a29e82009-08-10 14:55:26 -0700191 native void nAnimationBegin(int attribCount, int keyframeCount);
192 native void nAnimationAdd(float time, float[] attribs);
193 native int nAnimationCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700194
Jason Sams704ff642010-02-09 16:05:07 -0800195 protected int mDev;
196 protected int mContext;
Romain Guy650a3eb2009-08-31 14:06:43 -0700197 @SuppressWarnings({"FieldCanBeLocal"})
Jason Sams704ff642010-02-09 16:05:07 -0800198 protected MessageThread mMessageThread;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700199
Jason Sams8cb39de2010-06-01 15:47:01 -0700200 Element mElement_U8;
201 Element mElement_I8;
202 Element mElement_U16;
203 Element mElement_I16;
204 Element mElement_U32;
205 Element mElement_I32;
206 Element mElement_F32;
Jason Sams3c0dfba2009-09-27 17:50:38 -0700207
Jason Sams8cb39de2010-06-01 15:47:01 -0700208 Element mElement_ELEMENT;
209 Element mElement_TYPE;
210 Element mElement_ALLOCATION;
211 Element mElement_SAMPLER;
212 Element mElement_SCRIPT;
213 Element mElement_MESH;
214 Element mElement_PROGRAM_FRAGMENT;
215 Element mElement_PROGRAM_VERTEX;
216 Element mElement_PROGRAM_RASTER;
217 Element mElement_PROGRAM_STORE;
Jason Samsa70f4162010-03-26 15:33:42 -0700218
Jason Sams3c0dfba2009-09-27 17:50:38 -0700219 Element mElement_A_8;
220 Element mElement_RGB_565;
221 Element mElement_RGB_888;
222 Element mElement_RGBA_5551;
223 Element mElement_RGBA_4444;
224 Element mElement_RGBA_8888;
225
Jason Sams8cb39de2010-06-01 15:47:01 -0700226 Element mElement_FLOAT_2;
227 Element mElement_FLOAT_3;
228 Element mElement_FLOAT_4;
229 Element mElement_UCHAR_4;
Jason Sams7d787b42009-11-15 12:14:26 -0800230
Jason Sams4d339932010-05-11 14:03:58 -0700231 Sampler mSampler_CLAMP_NEAREST;
232 Sampler mSampler_CLAMP_LINEAR;
233 Sampler mSampler_CLAMP_LINEAR_MIP_LINEAR;
234 Sampler mSampler_WRAP_NEAREST;
235 Sampler mSampler_WRAP_LINEAR;
236 Sampler mSampler_WRAP_LINEAR_MIP_LINEAR;
237
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700238 ///////////////////////////////////////////////////////////////////////////////////
Jack Palevich43702d82009-05-28 13:38:16 -0700239 //
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700240
Jason Sams516c3192009-10-06 13:58:47 -0700241 public static class RSMessage implements Runnable {
242 protected int[] mData;
243 protected int mID;
244 public void run() {
245 }
246 }
247 public RSMessage mMessageCallback = null;
248
Jason Sams7d787b42009-11-15 12:14:26 -0800249 public enum Priority {
250 LOW (5), //ANDROID_PRIORITY_BACKGROUND + 5
251 NORMAL (-4); //ANDROID_PRIORITY_DISPLAY
252
253 int mID;
254 Priority(int id) {
255 mID = id;
256 }
257 }
258
Jason Sams771bebb2009-12-07 12:40:12 -0800259 void validate() {
260 if (mContext == 0) {
261 throw new IllegalStateException("Calling RS with no Context active.");
262 }
263 }
264
Jason Sams7d787b42009-11-15 12:14:26 -0800265 public void contextSetPriority(Priority p) {
Jason Sams5dbfe932010-01-27 14:41:43 -0800266 validate();
Jason Sams7d787b42009-11-15 12:14:26 -0800267 nContextSetPriority(p.mID);
268 }
269
Jason Sams704ff642010-02-09 16:05:07 -0800270 protected static class MessageThread extends Thread {
Jason Sams516c3192009-10-06 13:58:47 -0700271 RenderScript mRS;
272 boolean mRun = true;
273
274 MessageThread(RenderScript rs) {
275 super("RSMessageThread");
276 mRS = rs;
277
278 }
279
280 public void run() {
281 // This function is a temporary solution. The final solution will
282 // used typed allocations where the message id is the type indicator.
283 int[] rbuf = new int[16];
284 mRS.nContextInitToClient();
285 while(mRun) {
286 int msg = mRS.nContextGetMessage(rbuf, true);
287 if (msg == 0) {
288 // Should only happen during teardown.
289 // But we want to avoid starving other threads during
290 // teardown by yielding until the next line in the destructor
291 // can execute to set mRun = false
292 try {
293 sleep(1, 0);
294 } catch(InterruptedException e) {
295 }
296 }
297 if(mRS.mMessageCallback != null) {
298 mRS.mMessageCallback.mData = rbuf;
299 mRS.mMessageCallback.mID = msg;
300 mRS.mMessageCallback.run();
301 }
Jason Sams516c3192009-10-06 13:58:47 -0700302 }
Jason Sams3bc47d42009-11-12 15:10:25 -0800303 Log.d(LOG_TAG, "MessageThread exiting.");
Jason Sams516c3192009-10-06 13:58:47 -0700304 }
305 }
306
Jason Sams704ff642010-02-09 16:05:07 -0800307 protected RenderScript() {
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700308 }
309
Jason Sams704ff642010-02-09 16:05:07 -0800310 public static RenderScript create() {
311 RenderScript rs = new RenderScript();
312
313 rs.mDev = rs.nDeviceCreate();
314 rs.mContext = rs.nContextCreate(rs.mDev, 0);
315 rs.mMessageThread = new MessageThread(rs);
316 rs.mMessageThread.start();
317 Element.initPredefined(rs);
318 return rs;
Jason Samsefd9b6fb2009-11-03 13:58:36 -0800319 }
320
Jason Sams715333b2009-11-17 17:26:46 -0800321 public void contextDump(int bits) {
Jason Sams5dbfe932010-01-27 14:41:43 -0800322 validate();
Jason Sams715333b2009-11-17 17:26:46 -0800323 nContextDump(bits);
324 }
325
Jason Sams96ed4cf2010-06-15 12:15:57 -0700326 public void finish() {
327 nContextFinish();
328 }
329
Jason Samsf5b45962009-08-25 14:49:07 -0700330 public void destroy() {
Jason Sams5dbfe932010-01-27 14:41:43 -0800331 validate();
Jason Sams516c3192009-10-06 13:58:47 -0700332 nContextDeinitToClient();
333 mMessageThread.mRun = false;
334
Jason Samsf5b45962009-08-25 14:49:07 -0700335 nContextDestroy(mContext);
336 mContext = 0;
337
338 nDeviceDestroy(mDev);
339 mDev = 0;
340 }
Jason Sams02fb2cb2009-05-28 15:37:57 -0700341
Jason Samsa9e7a052009-09-25 14:51:22 -0700342 boolean isAlive() {
343 return mContext != 0;
344 }
345
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700346 ///////////////////////////////////////////////////////////////////////////////////
347 // Root state
348
Jason Sams704ff642010-02-09 16:05:07 -0800349 protected int safeID(BaseObj o) {
Jason Sams6b9dec02009-09-23 16:38:37 -0700350 if(o != null) {
351 return o.mID;
Jason Samsd8e41612009-08-20 17:22:40 -0700352 }
Jason Sams6b9dec02009-09-23 16:38:37 -0700353 return 0;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700354 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700355}
356
Jason Sams36e612a2009-07-31 16:26:13 -0700357