blob: 84b1a7027bb56b58b904e0c0c9e16b23c3413ffe [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 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);
101 native int nAllocationCreateFromBitmapBoxed(int dstFmt, boolean genMips, Bitmap bmp);
Romain Guy650a3eb2009-08-31 14:06:43 -0700102 native int nAllocationCreateFromAssetStream(int dstFmt, boolean genMips, int assetStream);
Jason Samsfe08d992009-05-27 14:45:32 -0700103
Jason Sams36e612a2009-07-31 16:26:13 -0700104 native void nAllocationUploadToTexture(int alloc, int baseMioLevel);
Jason Sams07ae4062009-08-27 20:23:34 -0700105 native void nAllocationUploadToBufferObject(int alloc);
Jason Sams768bc022009-09-21 19:41:04 -0700106
Jason Sams07ae4062009-08-27 20:23:34 -0700107 native void nAllocationSubData1D(int id, int off, int count, int[] d, int sizeBytes);
Jason Sams768bc022009-09-21 19:41:04 -0700108 native void nAllocationSubData1D(int id, int off, int count, short[] d, int sizeBytes);
109 native void nAllocationSubData1D(int id, int off, int count, byte[] d, int sizeBytes);
Jason Sams07ae4062009-08-27 20:23:34 -0700110 native void nAllocationSubData1D(int id, int off, int count, float[] d, int sizeBytes);
Jason Sams768bc022009-09-21 19:41:04 -0700111
Jason Sams07ae4062009-08-27 20:23:34 -0700112 native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, int[] d, int sizeBytes);
113 native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, float[] d, int sizeBytes);
Jason Sams40a29e82009-08-10 14:55:26 -0700114 native void nAllocationRead(int id, int[] d);
115 native void nAllocationRead(int id, float[] d);
Jason Sams2525a812009-09-03 15:43:13 -0700116 native void nAllocationSubDataFromObject(int id, Type t, int offset, Object o);
Jason Sams5f43fd22009-09-15 12:39:22 -0700117 native void nAllocationSubReadFromObject(int id, Type t, int offset, Object o);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700118
Jason Sams36e612a2009-07-31 16:26:13 -0700119 native void nAdapter1DBindAllocation(int ad, int alloc);
120 native void nAdapter1DSetConstraint(int ad, int dim, int value);
121 native void nAdapter1DData(int ad, int[] d);
Jason Sams36e612a2009-07-31 16:26:13 -0700122 native void nAdapter1DData(int ad, float[] d);
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700123 native void nAdapter1DSubData(int ad, int off, int count, int[] d);
Jason Sams36e612a2009-07-31 16:26:13 -0700124 native void nAdapter1DSubData(int ad, int off, int count, float[] d);
125 native int nAdapter1DCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700126
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700127 native void nAdapter2DBindAllocation(int ad, int alloc);
128 native void nAdapter2DSetConstraint(int ad, int dim, int value);
129 native void nAdapter2DData(int ad, int[] d);
130 native void nAdapter2DData(int ad, float[] d);
131 native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, int[] d);
132 native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, float[] d);
133 native int nAdapter2DCreate();
134
Jason Sams22534172009-08-04 16:58:20 -0700135 native void nScriptBindAllocation(int script, int alloc, int slot);
136 native void nScriptSetClearColor(int script, float r, float g, float b, float a);
137 native void nScriptSetClearDepth(int script, float depth);
138 native void nScriptSetClearStencil(int script, int stencil);
139 native void nScriptSetTimeZone(int script, byte[] timeZone);
Jason Sams334ea0c2009-08-17 13:56:09 -0700140 native void nScriptSetType(int type, boolean writable, String name, int slot);
Jason Samsfbf0b9e2009-08-13 12:59:04 -0700141 native void nScriptSetRoot(boolean isRoot);
Jason Samsbe2e8412009-09-16 15:04:38 -0700142 native void nScriptSetInvokable(String name, int slot);
143 native void nScriptInvoke(int id, int slot);
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();
Joe Onoratod7b37742009-08-09 22:57:44 -0700148 native void nScriptCAddDefineI32(String name, int value);
149 native void nScriptCAddDefineF(String name, float value);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700150
Jason Sams36e612a2009-07-31 16:26:13 -0700151 native void nSamplerBegin();
152 native void nSamplerSet(int param, int value);
153 native int nSamplerCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700154
Jason Sams36e612a2009-07-31 16:26:13 -0700155 native void nProgramFragmentStoreBegin(int in, int out);
156 native void nProgramFragmentStoreDepthFunc(int func);
157 native void nProgramFragmentStoreDepthMask(boolean enable);
158 native void nProgramFragmentStoreColorMask(boolean r, boolean g, boolean b, boolean a);
159 native void nProgramFragmentStoreBlendFunc(int src, int dst);
160 native void nProgramFragmentStoreDither(boolean enable);
161 native int nProgramFragmentStoreCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700162
Jason Samsebfb4362009-09-23 13:57:02 -0700163 native int nProgramRasterCreate(int in, int out, boolean pointSmooth, boolean lineSmooth, boolean pointSprite);
164 native void nProgramRasterSetLineWidth(int pr, float v);
165 native void nProgramRasterSetPointSize(int pr, float v);
166
Jason Sams0011bcf2009-12-15 12:58:36 -0800167 native void nProgramBindConstants(int pv, int slot, int mID);
Jason Sams68afd012009-12-17 16:55:08 -0800168 native void nProgramBindTexture(int vpf, int slot, int a);
169 native void nProgramBindSampler(int vpf, int slot, int s);
Jason Sams0011bcf2009-12-15 12:58:36 -0800170
Jason Sams68afd012009-12-17 16:55:08 -0800171 native int nProgramFragmentCreate(int[] params);
Jason Sams7e5ab3b2009-12-15 13:27:04 -0800172 native int nProgramFragmentCreate2(String shader, int[] params);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700173
Jason Sams0011bcf2009-12-15 12:58:36 -0800174 native int nProgramVertexCreate(boolean texMat);
175 native int nProgramVertexCreate2(String shader, int[] params);
Jason Sams1fe9b8c2009-06-11 14:46:10 -0700176
Jason Sams36e612a2009-07-31 16:26:13 -0700177 native void nLightBegin();
178 native void nLightSetIsMono(boolean isMono);
179 native void nLightSetIsLocal(boolean isLocal);
180 native int nLightCreate();
Jason Sams36e612a2009-07-31 16:26:13 -0700181 native void nLightSetColor(int l, float r, float g, float b);
182 native void nLightSetPosition(int l, float x, float y, float z);
Jason Samsbba134c2009-06-22 15:49:21 -0700183
Jason Sams1bada8c2009-08-09 17:01:55 -0700184 native int nSimpleMeshCreate(int batchID, int idxID, int[] vtxID, int prim);
185 native void nSimpleMeshBindVertex(int id, int alloc, int slot);
186 native void nSimpleMeshBindIndex(int id, int alloc);
187
Jason Sams40a29e82009-08-10 14:55:26 -0700188 native void nAnimationBegin(int attribCount, int keyframeCount);
189 native void nAnimationAdd(float time, float[] attribs);
190 native int nAnimationCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700191
Jason Sams704ff642010-02-09 16:05:07 -0800192 protected int mDev;
193 protected int mContext;
Romain Guy650a3eb2009-08-31 14:06:43 -0700194 @SuppressWarnings({"FieldCanBeLocal"})
Jason Sams704ff642010-02-09 16:05:07 -0800195 protected MessageThread mMessageThread;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700196
Jason Sams3c0dfba2009-09-27 17:50:38 -0700197 Element mElement_USER_U8;
198 Element mElement_USER_I8;
199 Element mElement_USER_U16;
200 Element mElement_USER_I16;
201 Element mElement_USER_U32;
202 Element mElement_USER_I32;
Jason Sams718cd1f2009-12-23 14:35:29 -0800203 Element mElement_USER_F32;
Jason Sams3c0dfba2009-09-27 17:50:38 -0700204
205 Element mElement_A_8;
206 Element mElement_RGB_565;
207 Element mElement_RGB_888;
208 Element mElement_RGBA_5551;
209 Element mElement_RGBA_4444;
210 Element mElement_RGBA_8888;
211
212 Element mElement_INDEX_16;
Jason Sams718cd1f2009-12-23 14:35:29 -0800213 Element mElement_POSITION_2;
214 Element mElement_POSITION_3;
215 Element mElement_TEXTURE_2;
216 Element mElement_NORMAL_3;
217 Element mElement_COLOR_U8_4;
218 Element mElement_COLOR_F32_4;
Jason Sams7d787b42009-11-15 12:14:26 -0800219
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700220 ///////////////////////////////////////////////////////////////////////////////////
Jack Palevich43702d82009-05-28 13:38:16 -0700221 //
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700222
Jason Sams516c3192009-10-06 13:58:47 -0700223 public static class RSMessage implements Runnable {
224 protected int[] mData;
225 protected int mID;
226 public void run() {
227 }
228 }
229 public RSMessage mMessageCallback = null;
230
Jason Sams7d787b42009-11-15 12:14:26 -0800231 public enum Priority {
232 LOW (5), //ANDROID_PRIORITY_BACKGROUND + 5
233 NORMAL (-4); //ANDROID_PRIORITY_DISPLAY
234
235 int mID;
236 Priority(int id) {
237 mID = id;
238 }
239 }
240
Jason Sams771bebb2009-12-07 12:40:12 -0800241 void validate() {
242 if (mContext == 0) {
243 throw new IllegalStateException("Calling RS with no Context active.");
244 }
245 }
246
Jason Sams7d787b42009-11-15 12:14:26 -0800247 public void contextSetPriority(Priority p) {
Jason Sams5dbfe932010-01-27 14:41:43 -0800248 validate();
Jason Sams7d787b42009-11-15 12:14:26 -0800249 nContextSetPriority(p.mID);
250 }
251
Jason Sams704ff642010-02-09 16:05:07 -0800252 protected static class MessageThread extends Thread {
Jason Sams516c3192009-10-06 13:58:47 -0700253 RenderScript mRS;
254 boolean mRun = true;
255
256 MessageThread(RenderScript rs) {
257 super("RSMessageThread");
258 mRS = rs;
259
260 }
261
262 public void run() {
263 // This function is a temporary solution. The final solution will
264 // used typed allocations where the message id is the type indicator.
265 int[] rbuf = new int[16];
266 mRS.nContextInitToClient();
267 while(mRun) {
268 int msg = mRS.nContextGetMessage(rbuf, true);
269 if (msg == 0) {
270 // Should only happen during teardown.
271 // But we want to avoid starving other threads during
272 // teardown by yielding until the next line in the destructor
273 // can execute to set mRun = false
274 try {
275 sleep(1, 0);
276 } catch(InterruptedException e) {
277 }
278 }
279 if(mRS.mMessageCallback != null) {
280 mRS.mMessageCallback.mData = rbuf;
281 mRS.mMessageCallback.mID = msg;
282 mRS.mMessageCallback.run();
283 }
Jason Sams3bc47d42009-11-12 15:10:25 -0800284 //Log.d(LOG_TAG, "MessageThread msg " + msg + " v1 " + rbuf[0] + " v2 " + rbuf[1] + " v3 " +rbuf[2]);
Jason Sams516c3192009-10-06 13:58:47 -0700285 }
Jason Sams3bc47d42009-11-12 15:10:25 -0800286 Log.d(LOG_TAG, "MessageThread exiting.");
Jason Sams516c3192009-10-06 13:58:47 -0700287 }
288 }
289
Jason Sams704ff642010-02-09 16:05:07 -0800290 protected RenderScript() {
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700291 }
292
Jason Sams704ff642010-02-09 16:05:07 -0800293 public static RenderScript create() {
294 RenderScript rs = new RenderScript();
295
296 rs.mDev = rs.nDeviceCreate();
297 rs.mContext = rs.nContextCreate(rs.mDev, 0);
298 rs.mMessageThread = new MessageThread(rs);
299 rs.mMessageThread.start();
300 Element.initPredefined(rs);
301 return rs;
Jason Samsefd9b6fb2009-11-03 13:58:36 -0800302 }
303
Jason Sams715333b2009-11-17 17:26:46 -0800304 public void contextDump(int bits) {
Jason Sams5dbfe932010-01-27 14:41:43 -0800305 validate();
Jason Sams715333b2009-11-17 17:26:46 -0800306 nContextDump(bits);
307 }
308
Jason Samsf5b45962009-08-25 14:49:07 -0700309 public void destroy() {
Jason Sams5dbfe932010-01-27 14:41:43 -0800310 validate();
Jason Sams516c3192009-10-06 13:58:47 -0700311 nContextDeinitToClient();
312 mMessageThread.mRun = false;
313
Jason Samsf5b45962009-08-25 14:49:07 -0700314 nContextDestroy(mContext);
315 mContext = 0;
316
317 nDeviceDestroy(mDev);
318 mDev = 0;
319 }
Jason Sams02fb2cb2009-05-28 15:37:57 -0700320
Jason Samsa9e7a052009-09-25 14:51:22 -0700321 boolean isAlive() {
322 return mContext != 0;
323 }
324
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700325 ///////////////////////////////////////////////////////////////////////////////////
326 // Root state
327
Jason Sams704ff642010-02-09 16:05:07 -0800328 protected int safeID(BaseObj o) {
Jason Sams6b9dec02009-09-23 16:38:37 -0700329 if(o != null) {
330 return o.mID;
Jason Samsd8e41612009-08-20 17:22:40 -0700331 }
Jason Sams6b9dec02009-09-23 16:38:37 -0700332 return 0;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700333 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700334}
335
Jason Sams36e612a2009-07-31 16:26:13 -0700336