blob: f1e5af1eb5405bcd11c9fe4061af5b4ce73c5555 [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 Samsf29ca502009-06-23 12:22:47 -070033 static final String LOG_TAG = "libRS_jni";
Jack Palevich60aa3ea2009-05-26 13:45:08 -070034 private static final boolean DEBUG = false;
Romain Guy650a3eb2009-08-31 14:06:43 -070035 @SuppressWarnings({"UnusedDeclaration", "deprecation"})
Jack Palevich60aa3ea2009-05-26 13:45:08 -070036 private static final boolean LOG_ENABLED = DEBUG ? Config.LOGD : Config.LOGV;
37
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"})
Jack Palevich60aa3ea2009-05-26 13:45:08 -070045 private static boolean sInitialized;
46 native private static void _nInit();
47
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 Samsb13ada52009-08-25 11:34:49 -070065 native int nContextCreate(int dev, Surface sur, int ver, boolean useDepth);
Jason Sams36e612a2009-07-31 16:26:13 -070066 native void nContextDestroy(int con);
Jason Samsefd9b6fb2009-11-03 13:58:36 -080067 native void nContextSetSurface(Surface sur);
Jack Palevich60aa3ea2009-05-26 13:45:08 -070068
Jason Sams36e612a2009-07-31 16:26:13 -070069 native void nContextBindRootScript(int script);
70 native void nContextBindSampler(int sampler, int slot);
71 native void nContextBindProgramFragmentStore(int pfs);
72 native void nContextBindProgramFragment(int pf);
73 native void nContextBindProgramVertex(int pf);
Jason Samsebfb4362009-09-23 13:57:02 -070074 native void nContextBindProgramRaster(int pr);
Joe Onoratod7b37742009-08-09 22:57:44 -070075 native void nContextAddDefineI32(String name, int value);
76 native void nContextAddDefineF(String name, float value);
Jason Sams65e7aa52009-09-24 17:38:20 -070077 native void nContextPause();
78 native void nContextResume();
Jason Sams516c3192009-10-06 13:58:47 -070079 native int nContextGetMessage(int[] data, boolean wait);
80 native void nContextInitToClient();
81 native void nContextDeinitToClient();
Jack Palevich60aa3ea2009-05-26 13:45:08 -070082
Jason Sams36e612a2009-07-31 16:26:13 -070083 native void nAssignName(int obj, byte[] name);
Jason Sams7ce033d2009-08-18 14:14:24 -070084 native void nObjDestroy(int id);
Jason Sams730ee652009-08-18 17:07:09 -070085 native void nObjDestroyOOB(int id);
Jason Sams36e612a2009-07-31 16:26:13 -070086 native int nFileOpen(byte[] name);
Jason Sams3eaa3382009-06-10 15:04:38 -070087
Jason Sams36e612a2009-07-31 16:26:13 -070088 native void nElementBegin();
Jason Sams768bc022009-09-21 19:41:04 -070089 native void nElementAdd(int kind, int type, boolean norm, int bits, String s);
Jason Sams36e612a2009-07-31 16:26:13 -070090 native int nElementCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -070091
Jason Sams36e612a2009-07-31 16:26:13 -070092 native void nTypeBegin(int elementID);
93 native void nTypeAdd(int dim, int val);
94 native int nTypeCreate();
Jason Sams43ee06852009-08-12 17:54:11 -070095 native void nTypeFinalDestroy(Type t);
96 native void nTypeSetupFields(Type t, int[] types, int[] bits, Field[] IDs);
Jack Palevich60aa3ea2009-05-26 13:45:08 -070097
Jason Sams36e612a2009-07-31 16:26:13 -070098 native int nAllocationCreateTyped(int type);
Jason Sams36e612a2009-07-31 16:26:13 -070099 native int nAllocationCreateFromBitmap(int dstFmt, boolean genMips, Bitmap bmp);
100 native int nAllocationCreateFromBitmapBoxed(int dstFmt, boolean genMips, Bitmap bmp);
Romain Guy650a3eb2009-08-31 14:06:43 -0700101 native int nAllocationCreateFromAssetStream(int dstFmt, boolean genMips, int assetStream);
Jason Samsfe08d992009-05-27 14:45:32 -0700102
Jason Sams36e612a2009-07-31 16:26:13 -0700103 native void nAllocationUploadToTexture(int alloc, int baseMioLevel);
Jason Sams07ae4062009-08-27 20:23:34 -0700104 native void nAllocationUploadToBufferObject(int alloc);
Jason Sams768bc022009-09-21 19:41:04 -0700105
Jason Sams07ae4062009-08-27 20:23:34 -0700106 native void nAllocationSubData1D(int id, int off, int count, int[] d, int sizeBytes);
Jason Sams768bc022009-09-21 19:41:04 -0700107 native void nAllocationSubData1D(int id, int off, int count, short[] d, int sizeBytes);
108 native void nAllocationSubData1D(int id, int off, int count, byte[] d, int sizeBytes);
Jason Sams07ae4062009-08-27 20:23:34 -0700109 native void nAllocationSubData1D(int id, int off, int count, float[] d, int sizeBytes);
Jason Sams768bc022009-09-21 19:41:04 -0700110
Jason Sams07ae4062009-08-27 20:23:34 -0700111 native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, int[] d, int sizeBytes);
112 native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, float[] d, int sizeBytes);
Jason Sams40a29e82009-08-10 14:55:26 -0700113 native void nAllocationRead(int id, int[] d);
114 native void nAllocationRead(int id, float[] d);
Jason Sams2525a812009-09-03 15:43:13 -0700115 native void nAllocationSubDataFromObject(int id, Type t, int offset, Object o);
Jason Sams5f43fd22009-09-15 12:39:22 -0700116 native void nAllocationSubReadFromObject(int id, Type t, int offset, Object o);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700117
Jason Sams36e612a2009-07-31 16:26:13 -0700118 native void nAdapter1DBindAllocation(int ad, int alloc);
119 native void nAdapter1DSetConstraint(int ad, int dim, int value);
120 native void nAdapter1DData(int ad, int[] d);
Jason Sams36e612a2009-07-31 16:26:13 -0700121 native void nAdapter1DData(int ad, float[] d);
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700122 native void nAdapter1DSubData(int ad, int off, int count, int[] d);
Jason Sams36e612a2009-07-31 16:26:13 -0700123 native void nAdapter1DSubData(int ad, int off, int count, float[] d);
124 native int nAdapter1DCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700125
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700126 native void nAdapter2DBindAllocation(int ad, int alloc);
127 native void nAdapter2DSetConstraint(int ad, int dim, int value);
128 native void nAdapter2DData(int ad, int[] d);
129 native void nAdapter2DData(int ad, float[] d);
130 native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, int[] d);
131 native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, float[] d);
132 native int nAdapter2DCreate();
133
Jason Sams22534172009-08-04 16:58:20 -0700134 native void nScriptBindAllocation(int script, int alloc, int slot);
135 native void nScriptSetClearColor(int script, float r, float g, float b, float a);
136 native void nScriptSetClearDepth(int script, float depth);
137 native void nScriptSetClearStencil(int script, int stencil);
138 native void nScriptSetTimeZone(int script, byte[] timeZone);
Jason Sams334ea0c2009-08-17 13:56:09 -0700139 native void nScriptSetType(int type, boolean writable, String name, int slot);
Jason Samsfbf0b9e2009-08-13 12:59:04 -0700140 native void nScriptSetRoot(boolean isRoot);
Jason Samsbe2e8412009-09-16 15:04:38 -0700141 native void nScriptSetInvokable(String name, int slot);
142 native void nScriptInvoke(int id, int slot);
Jason Sams22534172009-08-04 16:58:20 -0700143
Jason Sams36e612a2009-07-31 16:26:13 -0700144 native void nScriptCBegin();
Jason Sams36e612a2009-07-31 16:26:13 -0700145 native void nScriptCSetScript(byte[] script, int offset, int length);
146 native int nScriptCCreate();
Joe Onoratod7b37742009-08-09 22:57:44 -0700147 native void nScriptCAddDefineI32(String name, int value);
148 native void nScriptCAddDefineF(String name, float value);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700149
Jason Sams36e612a2009-07-31 16:26:13 -0700150 native void nSamplerBegin();
151 native void nSamplerSet(int param, int value);
152 native int nSamplerCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700153
Jason Sams36e612a2009-07-31 16:26:13 -0700154 native void nProgramFragmentStoreBegin(int in, int out);
155 native void nProgramFragmentStoreDepthFunc(int func);
156 native void nProgramFragmentStoreDepthMask(boolean enable);
157 native void nProgramFragmentStoreColorMask(boolean r, boolean g, boolean b, boolean a);
158 native void nProgramFragmentStoreBlendFunc(int src, int dst);
159 native void nProgramFragmentStoreDither(boolean enable);
160 native int nProgramFragmentStoreCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700161
Jason Samsebfb4362009-09-23 13:57:02 -0700162 native int nProgramRasterCreate(int in, int out, boolean pointSmooth, boolean lineSmooth, boolean pointSprite);
163 native void nProgramRasterSetLineWidth(int pr, float v);
164 native void nProgramRasterSetPointSize(int pr, float v);
165
Jason Sams25ffcdc2009-08-20 16:10:36 -0700166 native void nProgramFragmentBegin(int in, int out, boolean pointSpriteEnable);
Jason Sams36e612a2009-07-31 16:26:13 -0700167 native void nProgramFragmentBindTexture(int vpf, int slot, int a);
168 native void nProgramFragmentBindSampler(int vpf, int slot, int s);
Jason Sams25ffcdc2009-08-20 16:10:36 -0700169 native void nProgramFragmentSetSlot(int slot, boolean enable, int env, int vt);
Jason Sams36e612a2009-07-31 16:26:13 -0700170 native int nProgramFragmentCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700171
Jason Sams9bee51c2009-08-05 13:57:03 -0700172 native void nProgramVertexBindAllocation(int pv, int mID);
Jason Sams36e612a2009-07-31 16:26:13 -0700173 native void nProgramVertexBegin(int inID, int outID);
Jason Sams36e612a2009-07-31 16:26:13 -0700174 native void nProgramVertexSetTextureMatrixEnable(boolean enable);
175 native void nProgramVertexAddLight(int id);
176 native int nProgramVertexCreate();
Jason Sams1fe9b8c2009-06-11 14:46:10 -0700177
Jason Sams36e612a2009-07-31 16:26:13 -0700178 native void nLightBegin();
179 native void nLightSetIsMono(boolean isMono);
180 native void nLightSetIsLocal(boolean isLocal);
181 native int nLightCreate();
Jason Sams36e612a2009-07-31 16:26:13 -0700182 native void nLightSetColor(int l, float r, float g, float b);
183 native void nLightSetPosition(int l, float x, float y, float z);
Jason Samsbba134c2009-06-22 15:49:21 -0700184
Jason Sams1bada8c2009-08-09 17:01:55 -0700185 native int nSimpleMeshCreate(int batchID, int idxID, int[] vtxID, int prim);
186 native void nSimpleMeshBindVertex(int id, int alloc, int slot);
187 native void nSimpleMeshBindIndex(int id, int alloc);
188
Jason Sams40a29e82009-08-10 14:55:26 -0700189 native void nAnimationBegin(int attribCount, int keyframeCount);
190 native void nAnimationAdd(float time, float[] attribs);
191 native int nAnimationCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700192
193 private int mDev;
194 private int mContext;
Romain Guy650a3eb2009-08-31 14:06:43 -0700195 @SuppressWarnings({"FieldCanBeLocal"})
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700196 private Surface mSurface;
Jason Sams516c3192009-10-06 13:58:47 -0700197 private MessageThread mMessageThread;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700198
Jason Sams3c0dfba2009-09-27 17:50:38 -0700199
200 Element mElement_USER_U8;
201 Element mElement_USER_I8;
202 Element mElement_USER_U16;
203 Element mElement_USER_I16;
204 Element mElement_USER_U32;
205 Element mElement_USER_I32;
206 Element mElement_USER_FLOAT;
207
208 Element mElement_A_8;
209 Element mElement_RGB_565;
210 Element mElement_RGB_888;
211 Element mElement_RGBA_5551;
212 Element mElement_RGBA_4444;
213 Element mElement_RGBA_8888;
214
215 Element mElement_INDEX_16;
216 Element mElement_XY_F32;
217 Element mElement_XYZ_F32;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700218
219 ///////////////////////////////////////////////////////////////////////////////////
Jack Palevich43702d82009-05-28 13:38:16 -0700220 //
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700221
Jason Sams516c3192009-10-06 13:58:47 -0700222 public static class RSMessage implements Runnable {
223 protected int[] mData;
224 protected int mID;
225 public void run() {
226 }
227 }
228 public RSMessage mMessageCallback = null;
229
230 private static class MessageThread extends Thread {
231 RenderScript mRS;
232 boolean mRun = true;
233
234 MessageThread(RenderScript rs) {
235 super("RSMessageThread");
236 mRS = rs;
237
238 }
239
240 public void run() {
241 // This function is a temporary solution. The final solution will
242 // used typed allocations where the message id is the type indicator.
243 int[] rbuf = new int[16];
244 mRS.nContextInitToClient();
245 while(mRun) {
246 int msg = mRS.nContextGetMessage(rbuf, true);
247 if (msg == 0) {
248 // Should only happen during teardown.
249 // But we want to avoid starving other threads during
250 // teardown by yielding until the next line in the destructor
251 // can execute to set mRun = false
252 try {
253 sleep(1, 0);
254 } catch(InterruptedException e) {
255 }
256 }
257 if(mRS.mMessageCallback != null) {
258 mRS.mMessageCallback.mData = rbuf;
259 mRS.mMessageCallback.mID = msg;
260 mRS.mMessageCallback.run();
261 }
262 //Log.d("rs", "MessageThread msg " + msg + " v1 " + rbuf[0] + " v2 " + rbuf[1] + " v3 " +rbuf[2]);
263 }
264 Log.d("rs", "MessageThread exiting.");
265 }
266 }
267
Jason Samsebfb4362009-09-23 13:57:02 -0700268 public RenderScript(Surface sur, boolean useDepth, boolean forceSW) {
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700269 mSurface = sur;
270 mDev = nDeviceCreate();
Jason Samsebfb4362009-09-23 13:57:02 -0700271 if(forceSW) {
272 nDeviceSetConfig(mDev, 0, 1);
273 }
Jason Samsb13ada52009-08-25 11:34:49 -0700274 mContext = nContextCreate(mDev, mSurface, 0, useDepth);
Jason Sams3c0dfba2009-09-27 17:50:38 -0700275 Element.initPredefined(this);
Jason Sams516c3192009-10-06 13:58:47 -0700276 mMessageThread = new MessageThread(this);
277 mMessageThread.start();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700278 }
279
Jason Samsefd9b6fb2009-11-03 13:58:36 -0800280 public void contextSetSurface(Surface sur) {
281 mSurface = sur;
282 nContextSetSurface(mSurface);
283 }
284
Jason Samsf5b45962009-08-25 14:49:07 -0700285 public void destroy() {
Jason Sams516c3192009-10-06 13:58:47 -0700286 nContextDeinitToClient();
287 mMessageThread.mRun = false;
288
Jason Samsf5b45962009-08-25 14:49:07 -0700289 nContextDestroy(mContext);
290 mContext = 0;
291
292 nDeviceDestroy(mDev);
293 mDev = 0;
294 }
Jason Sams02fb2cb2009-05-28 15:37:57 -0700295
Jason Samsa9e7a052009-09-25 14:51:22 -0700296 boolean isAlive() {
297 return mContext != 0;
298 }
299
Jason Sams65e7aa52009-09-24 17:38:20 -0700300 void pause() {
301 nContextPause();
302 }
303
304 void resume() {
305 nContextResume();
306 }
307
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700308 //////////////////////////////////////////////////////////////////////////////////
Jason Sams64676f32009-07-08 18:01:53 -0700309 // File
310
311 public class File extends BaseObj {
312 File(int id) {
Jason Sams36e612a2009-07-31 16:26:13 -0700313 super(RenderScript.this);
Jason Sams64676f32009-07-08 18:01:53 -0700314 mID = id;
315 }
Jason Sams64676f32009-07-08 18:01:53 -0700316 }
317
318 public File fileOpen(String s) throws IllegalStateException, IllegalArgumentException
319 {
320 if(s.length() < 1) {
321 throw new IllegalArgumentException("fileOpen does not accept a zero length string.");
322 }
323
324 try {
325 byte[] bytes = s.getBytes("UTF-8");
326 int id = nFileOpen(bytes);
327 return new File(id);
328 } catch (java.io.UnsupportedEncodingException e) {
329 throw new RuntimeException(e);
330 }
331 }
332
333
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700334 ///////////////////////////////////////////////////////////////////////////////////
335 // Root state
336
Jason Sams6b9dec02009-09-23 16:38:37 -0700337 private int safeID(BaseObj o) {
338 if(o != null) {
339 return o.mID;
Jason Samsd8e41612009-08-20 17:22:40 -0700340 }
Jason Sams6b9dec02009-09-23 16:38:37 -0700341 return 0;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700342 }
343
Jason Sams6b9dec02009-09-23 16:38:37 -0700344 public void contextBindRootScript(Script s) {
345 nContextBindRootScript(safeID(s));
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700346 }
347
Jason Sams6b9dec02009-09-23 16:38:37 -0700348 public void contextBindProgramFragmentStore(ProgramStore p) {
349 nContextBindProgramFragmentStore(safeID(p));
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700350 }
351
Jason Sams6b9dec02009-09-23 16:38:37 -0700352 public void contextBindProgramFragment(ProgramFragment p) {
353 nContextBindProgramFragment(safeID(p));
Jason Samsebfb4362009-09-23 13:57:02 -0700354 }
355
Jason Sams6b9dec02009-09-23 16:38:37 -0700356 public void contextBindProgramRaster(ProgramRaster p) {
357 nContextBindProgramRaster(safeID(p));
358 }
359
360 public void contextBindProgramVertex(ProgramVertex p) {
361 nContextBindProgramVertex(safeID(p));
Jason Sams0826a6f2009-06-15 19:04:56 -0700362 }
363
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700364}
365
Jason Sams36e612a2009-07-31 16:26:13 -0700366