blob: 1ce70836d6969f071a1d82472731d646e043145b [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);
Jack Palevich60aa3ea2009-05-26 13:45:08 -070067
68 //void rsContextBindSampler (uint32_t slot, RsSampler sampler);
69 //void rsContextBindRootScript (RsScript sampler);
Jason Sams36e612a2009-07-31 16:26:13 -070070 native void nContextBindRootScript(int script);
71 native void nContextBindSampler(int sampler, int slot);
72 native void nContextBindProgramFragmentStore(int pfs);
73 native void nContextBindProgramFragment(int pf);
74 native void nContextBindProgramVertex(int pf);
Jason Samsebfb4362009-09-23 13:57:02 -070075 native void nContextBindProgramRaster(int pr);
Joe Onoratod7b37742009-08-09 22:57:44 -070076 native void nContextAddDefineI32(String name, int value);
77 native void nContextAddDefineF(String name, float value);
Jack Palevich60aa3ea2009-05-26 13:45:08 -070078
Jason Sams36e612a2009-07-31 16:26:13 -070079 native void nAssignName(int obj, byte[] name);
Jason Sams7ce033d2009-08-18 14:14:24 -070080 native void nObjDestroy(int id);
Jason Sams730ee652009-08-18 17:07:09 -070081 native void nObjDestroyOOB(int id);
Jason Sams36e612a2009-07-31 16:26:13 -070082 native int nFileOpen(byte[] name);
Jason Sams3eaa3382009-06-10 15:04:38 -070083
Jason Sams36e612a2009-07-31 16:26:13 -070084 native void nElementBegin();
Jason Sams768bc022009-09-21 19:41:04 -070085 native void nElementAdd(int kind, int type, boolean norm, int bits, String s);
Jason Sams36e612a2009-07-31 16:26:13 -070086 native int nElementCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -070087
Jason Sams36e612a2009-07-31 16:26:13 -070088 native void nTypeBegin(int elementID);
89 native void nTypeAdd(int dim, int val);
90 native int nTypeCreate();
Jason Sams43ee06852009-08-12 17:54:11 -070091 native void nTypeFinalDestroy(Type t);
92 native void nTypeSetupFields(Type t, int[] types, int[] bits, Field[] IDs);
Jack Palevich60aa3ea2009-05-26 13:45:08 -070093
Jason Sams36e612a2009-07-31 16:26:13 -070094 native int nAllocationCreateTyped(int type);
Jason Sams768bc022009-09-21 19:41:04 -070095 //native int nAllocationCreateSized(int elem, int count);
Jason Sams36e612a2009-07-31 16:26:13 -070096 native int nAllocationCreateFromBitmap(int dstFmt, boolean genMips, Bitmap bmp);
97 native int nAllocationCreateFromBitmapBoxed(int dstFmt, boolean genMips, Bitmap bmp);
Romain Guy650a3eb2009-08-31 14:06:43 -070098 native int nAllocationCreateFromAssetStream(int dstFmt, boolean genMips, int assetStream);
Jason Samsfe08d992009-05-27 14:45:32 -070099
Jason Sams36e612a2009-07-31 16:26:13 -0700100 native void nAllocationUploadToTexture(int alloc, int baseMioLevel);
Jason Sams07ae4062009-08-27 20:23:34 -0700101 native void nAllocationUploadToBufferObject(int alloc);
Jason Sams768bc022009-09-21 19:41:04 -0700102
Jason Sams07ae4062009-08-27 20:23:34 -0700103 native void nAllocationSubData1D(int id, int off, int count, int[] d, int sizeBytes);
Jason Sams768bc022009-09-21 19:41:04 -0700104 native void nAllocationSubData1D(int id, int off, int count, short[] d, int sizeBytes);
105 native void nAllocationSubData1D(int id, int off, int count, byte[] d, int sizeBytes);
Jason Sams07ae4062009-08-27 20:23:34 -0700106 native void nAllocationSubData1D(int id, int off, int count, float[] d, int sizeBytes);
Jason Sams768bc022009-09-21 19:41:04 -0700107
Jason Sams07ae4062009-08-27 20:23:34 -0700108 native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, int[] d, int sizeBytes);
109 native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, float[] d, int sizeBytes);
Jason Sams40a29e82009-08-10 14:55:26 -0700110 native void nAllocationRead(int id, int[] d);
111 native void nAllocationRead(int id, float[] d);
Jason Sams2525a812009-09-03 15:43:13 -0700112 native void nAllocationSubDataFromObject(int id, Type t, int offset, Object o);
Jason Sams5f43fd22009-09-15 12:39:22 -0700113 native void nAllocationSubReadFromObject(int id, Type t, int offset, Object o);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700114
Jason Sams36e612a2009-07-31 16:26:13 -0700115 native void nTriangleMeshBegin(int vertex, int index);
116 native void nTriangleMeshAddVertex_XY (float x, float y);
117 native void nTriangleMeshAddVertex_XYZ (float x, float y, float z);
118 native void nTriangleMeshAddVertex_XY_ST (float x, float y, float s, float t);
119 native void nTriangleMeshAddVertex_XYZ_ST (float x, float y, float z, float s, float t);
120 native void nTriangleMeshAddVertex_XYZ_ST_NORM (float x, float y, float z, float s, float t, float nx, float ny, float nz);
121 native void nTriangleMeshAddTriangle(int i1, int i2, int i3);
122 native int nTriangleMeshCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700123
Jason Sams36e612a2009-07-31 16:26:13 -0700124 native void nAdapter1DBindAllocation(int ad, int alloc);
125 native void nAdapter1DSetConstraint(int ad, int dim, int value);
126 native void nAdapter1DData(int ad, int[] d);
Jason Sams36e612a2009-07-31 16:26:13 -0700127 native void nAdapter1DData(int ad, float[] d);
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700128 native void nAdapter1DSubData(int ad, int off, int count, int[] d);
Jason Sams36e612a2009-07-31 16:26:13 -0700129 native void nAdapter1DSubData(int ad, int off, int count, float[] d);
130 native int nAdapter1DCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700131
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700132 native void nAdapter2DBindAllocation(int ad, int alloc);
133 native void nAdapter2DSetConstraint(int ad, int dim, int value);
134 native void nAdapter2DData(int ad, int[] d);
135 native void nAdapter2DData(int ad, float[] d);
136 native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, int[] d);
137 native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, float[] d);
138 native int nAdapter2DCreate();
139
Jason Sams22534172009-08-04 16:58:20 -0700140 native void nScriptBindAllocation(int script, int alloc, int slot);
141 native void nScriptSetClearColor(int script, float r, float g, float b, float a);
142 native void nScriptSetClearDepth(int script, float depth);
143 native void nScriptSetClearStencil(int script, int stencil);
144 native void nScriptSetTimeZone(int script, byte[] timeZone);
Jason Sams334ea0c2009-08-17 13:56:09 -0700145 native void nScriptSetType(int type, boolean writable, String name, int slot);
Jason Samsfbf0b9e2009-08-13 12:59:04 -0700146 native void nScriptSetRoot(boolean isRoot);
Jason Samsbe2e8412009-09-16 15:04:38 -0700147 native void nScriptSetInvokable(String name, int slot);
148 native void nScriptInvoke(int id, int slot);
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();
Joe Onoratod7b37742009-08-09 22:57:44 -0700153 native void nScriptCAddDefineI32(String name, int value);
154 native void nScriptCAddDefineF(String name, float value);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700155
Jason Sams36e612a2009-07-31 16:26:13 -0700156 native void nSamplerBegin();
157 native void nSamplerSet(int param, int value);
158 native int nSamplerCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700159
Jason Sams36e612a2009-07-31 16:26:13 -0700160 native void nProgramFragmentStoreBegin(int in, int out);
161 native void nProgramFragmentStoreDepthFunc(int func);
162 native void nProgramFragmentStoreDepthMask(boolean enable);
163 native void nProgramFragmentStoreColorMask(boolean r, boolean g, boolean b, boolean a);
164 native void nProgramFragmentStoreBlendFunc(int src, int dst);
165 native void nProgramFragmentStoreDither(boolean enable);
166 native int nProgramFragmentStoreCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700167
Jason Samsebfb4362009-09-23 13:57:02 -0700168 native int nProgramRasterCreate(int in, int out, boolean pointSmooth, boolean lineSmooth, boolean pointSprite);
169 native void nProgramRasterSetLineWidth(int pr, float v);
170 native void nProgramRasterSetPointSize(int pr, float v);
171
Jason Sams25ffcdc2009-08-20 16:10:36 -0700172 native void nProgramFragmentBegin(int in, int out, boolean pointSpriteEnable);
Jason Sams36e612a2009-07-31 16:26:13 -0700173 native void nProgramFragmentBindTexture(int vpf, int slot, int a);
174 native void nProgramFragmentBindSampler(int vpf, int slot, int s);
Jason Sams25ffcdc2009-08-20 16:10:36 -0700175 native void nProgramFragmentSetSlot(int slot, boolean enable, int env, int vt);
Jason Sams36e612a2009-07-31 16:26:13 -0700176 native int nProgramFragmentCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700177
Jason Sams9bee51c2009-08-05 13:57:03 -0700178 native void nProgramVertexBindAllocation(int pv, int mID);
Jason Sams36e612a2009-07-31 16:26:13 -0700179 native void nProgramVertexBegin(int inID, int outID);
Jason Sams36e612a2009-07-31 16:26:13 -0700180 native void nProgramVertexSetTextureMatrixEnable(boolean enable);
181 native void nProgramVertexAddLight(int id);
182 native int nProgramVertexCreate();
Jason Sams1fe9b8c2009-06-11 14:46:10 -0700183
Jason Sams36e612a2009-07-31 16:26:13 -0700184 native void nLightBegin();
185 native void nLightSetIsMono(boolean isMono);
186 native void nLightSetIsLocal(boolean isLocal);
187 native int nLightCreate();
Jason Sams36e612a2009-07-31 16:26:13 -0700188 native void nLightSetColor(int l, float r, float g, float b);
189 native void nLightSetPosition(int l, float x, float y, float z);
Jason Samsbba134c2009-06-22 15:49:21 -0700190
Jason Sams1bada8c2009-08-09 17:01:55 -0700191 native int nSimpleMeshCreate(int batchID, int idxID, int[] vtxID, int prim);
192 native void nSimpleMeshBindVertex(int id, int alloc, int slot);
193 native void nSimpleMeshBindIndex(int id, int alloc);
194
Jason Sams40a29e82009-08-10 14:55:26 -0700195 native void nAnimationBegin(int attribCount, int keyframeCount);
196 native void nAnimationAdd(float time, float[] attribs);
197 native int nAnimationCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700198
199 private int mDev;
200 private int mContext;
Romain Guy650a3eb2009-08-31 14:06:43 -0700201 @SuppressWarnings({"FieldCanBeLocal"})
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700202 private Surface mSurface;
203
Jason Sams36e612a2009-07-31 16:26:13 -0700204 private static boolean mElementsInitialized = false;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700205
206 ///////////////////////////////////////////////////////////////////////////////////
Jack Palevich43702d82009-05-28 13:38:16 -0700207 //
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700208
Jason Samsebfb4362009-09-23 13:57:02 -0700209 public RenderScript(Surface sur, boolean useDepth, boolean forceSW) {
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700210 mSurface = sur;
211 mDev = nDeviceCreate();
Jason Samsebfb4362009-09-23 13:57:02 -0700212 if(forceSW) {
213 nDeviceSetConfig(mDev, 0, 1);
214 }
Jason Samsb13ada52009-08-25 11:34:49 -0700215 mContext = nContextCreate(mDev, mSurface, 0, useDepth);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700216
Jason Sams36e612a2009-07-31 16:26:13 -0700217 // TODO: This should be protected by a lock
218 if(!mElementsInitialized) {
Jason Samsea84a7c2009-09-04 14:42:41 -0700219 Element.initPredefined(this);
Jason Sams36e612a2009-07-31 16:26:13 -0700220 mElementsInitialized = true;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700221 }
222 }
223
Jason Samsf5b45962009-08-25 14:49:07 -0700224 public void destroy() {
225 nContextDestroy(mContext);
226 mContext = 0;
227
228 nDeviceDestroy(mDev);
229 mDev = 0;
230 }
Jason Sams02fb2cb2009-05-28 15:37:57 -0700231
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700232 //////////////////////////////////////////////////////////////////////////////////
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700233 // Triangle Mesh
234
235 public class TriangleMesh extends BaseObj {
236 TriangleMesh(int id) {
Jason Sams36e612a2009-07-31 16:26:13 -0700237 super(RenderScript.this);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700238 mID = id;
239 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700240 }
241
242 public void triangleMeshBegin(Element vertex, Element index) {
243 nTriangleMeshBegin(vertex.mID, index.mID);
244 }
245
246 public void triangleMeshAddVertex_XY(float x, float y) {
247 nTriangleMeshAddVertex_XY(x, y);
248 }
249
250 public void triangleMeshAddVertex_XYZ(float x, float y, float z) {
251 nTriangleMeshAddVertex_XYZ(x, y, z);
252 }
253
254 public void triangleMeshAddVertex_XY_ST(float x, float y, float s, float t) {
255 nTriangleMeshAddVertex_XY_ST(x, y, s, t);
256 }
257
258 public void triangleMeshAddVertex_XYZ_ST(float x, float y, float z, float s, float t) {
259 nTriangleMeshAddVertex_XYZ_ST(x, y, z, s, t);
260 }
261
Jason Sams0826a6f2009-06-15 19:04:56 -0700262 public void triangleMeshAddVertex_XYZ_ST_NORM(float x, float y, float z, float s, float t, float nx, float ny, float nz) {
263 nTriangleMeshAddVertex_XYZ_ST_NORM(x, y, z, s, t, nx, ny, nz);
264 }
265
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700266 public void triangleMeshAddTriangle(int i1, int i2, int i3) {
267 nTriangleMeshAddTriangle(i1, i2, i3);
268 }
269
270 public TriangleMesh triangleMeshCreate() {
271 int id = nTriangleMeshCreate();
272 return new TriangleMesh(id);
273 }
274
275 //////////////////////////////////////////////////////////////////////////////////
Jason Sams64676f32009-07-08 18:01:53 -0700276 // File
277
278 public class File extends BaseObj {
279 File(int id) {
Jason Sams36e612a2009-07-31 16:26:13 -0700280 super(RenderScript.this);
Jason Sams64676f32009-07-08 18:01:53 -0700281 mID = id;
282 }
Jason Sams64676f32009-07-08 18:01:53 -0700283 }
284
285 public File fileOpen(String s) throws IllegalStateException, IllegalArgumentException
286 {
287 if(s.length() < 1) {
288 throw new IllegalArgumentException("fileOpen does not accept a zero length string.");
289 }
290
291 try {
292 byte[] bytes = s.getBytes("UTF-8");
293 int id = nFileOpen(bytes);
294 return new File(id);
295 } catch (java.io.UnsupportedEncodingException e) {
296 throw new RuntimeException(e);
297 }
298 }
299
300
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700301 ///////////////////////////////////////////////////////////////////////////////////
302 // Root state
303
304 public void contextBindRootScript(Script s) {
Jason Samsd8e41612009-08-20 17:22:40 -0700305 int id = 0;
306 if(s != null) {
307 id = s.mID;
308 }
309 nContextBindRootScript(id);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700310 }
311
312 //public void contextBindSampler(Sampler s, int slot) {
313 //nContextBindSampler(s.mID);
314 //}
315
Jason Sams22534172009-08-04 16:58:20 -0700316 public void contextBindProgramFragmentStore(ProgramStore pfs) {
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700317 nContextBindProgramFragmentStore(pfs.mID);
318 }
319
320 public void contextBindProgramFragment(ProgramFragment pf) {
321 nContextBindProgramFragment(pf.mID);
322 }
323
Jason Samsebfb4362009-09-23 13:57:02 -0700324 public void contextBindProgramRaster(ProgramRaster pf) {
325 nContextBindProgramRaster(pf.mID);
326 }
327
Jason Sams0826a6f2009-06-15 19:04:56 -0700328 public void contextBindProgramVertex(ProgramVertex pf) {
329 nContextBindProgramVertex(pf.mID);
330 }
331
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700332}
333
Jason Sams36e612a2009-07-31 16:26:13 -0700334