blob: 84890038e596e5e377e824efa38ca454902bc8c2 [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
Jack Palevich43702d82009-05-28 13:38:16 -070019import java.io.IOException;
Jason Sams36e612a2009-07-31 16:26:13 -070020import java.io.InputStream;
Jason Sams43ee06852009-08-12 17:54:11 -070021import java.lang.reflect.Field;
Jason Sams36e612a2009-07-31 16:26:13 -070022
23import android.content.res.Resources;
Jason Samsb8c5a842009-07-31 20:40:47 -070024import android.graphics.Bitmap;
Jason Sams43ee06852009-08-12 17:54:11 -070025import android.renderscript.Type;
Jason Sams36e612a2009-07-31 16:26:13 -070026import android.util.Config;
27import android.util.Log;
28import android.view.Surface;
Jack Palevich43702d82009-05-28 13:38:16 -070029
Jack Palevich60aa3ea2009-05-26 13:45:08 -070030
Jason Samse29d4712009-07-23 15:19:03 -070031/**
32 * @hide
33 *
34 **/
Jack Palevich60aa3ea2009-05-26 13:45:08 -070035public class RenderScript {
Jason Samsf29ca502009-06-23 12:22:47 -070036 static final String LOG_TAG = "libRS_jni";
Jack Palevich60aa3ea2009-05-26 13:45:08 -070037 private static final boolean DEBUG = false;
38 private static final boolean LOG_ENABLED = DEBUG ? Config.LOGD : Config.LOGV;
39
40
41
Jason Sams02fb2cb2009-05-28 15:37:57 -070042 /*
Jack Palevich60aa3ea2009-05-26 13:45:08 -070043 * We use a class initializer to allow the native code to cache some
44 * field offsets.
45 */
46 private static boolean sInitialized;
47 native private static void _nInit();
48
Jason Samsdba3ba52009-07-30 14:56:12 -070049
Jack Palevich60aa3ea2009-05-26 13:45:08 -070050 static {
51 sInitialized = false;
52 try {
Jason Samse29d4712009-07-23 15:19:03 -070053 System.loadLibrary("rs_jni");
Jack Palevich60aa3ea2009-05-26 13:45:08 -070054 _nInit();
Jack Palevich60aa3ea2009-05-26 13:45:08 -070055 sInitialized = true;
56 } catch (UnsatisfiedLinkError e) {
57 Log.d(LOG_TAG, "RenderScript JNI library not found!");
58 }
59 }
60
Jason Sams36e612a2009-07-31 16:26:13 -070061 native int nDeviceCreate();
62 native void nDeviceDestroy(int dev);
Jason Samsb13ada52009-08-25 11:34:49 -070063 native int nContextCreate(int dev, Surface sur, int ver, boolean useDepth);
Jason Sams36e612a2009-07-31 16:26:13 -070064 native void nContextDestroy(int con);
Jack Palevich60aa3ea2009-05-26 13:45:08 -070065
66 //void rsContextBindSampler (uint32_t slot, RsSampler sampler);
67 //void rsContextBindRootScript (RsScript sampler);
Jason Sams36e612a2009-07-31 16:26:13 -070068 native void nContextBindRootScript(int script);
69 native void nContextBindSampler(int sampler, int slot);
70 native void nContextBindProgramFragmentStore(int pfs);
71 native void nContextBindProgramFragment(int pf);
72 native void nContextBindProgramVertex(int pf);
Joe Onoratod7b37742009-08-09 22:57:44 -070073 native void nContextAddDefineI32(String name, int value);
74 native void nContextAddDefineF(String name, float value);
Jack Palevich60aa3ea2009-05-26 13:45:08 -070075
Jason Sams36e612a2009-07-31 16:26:13 -070076 native void nAssignName(int obj, byte[] name);
Jason Sams7ce033d2009-08-18 14:14:24 -070077 native void nObjDestroy(int id);
Jason Sams730ee652009-08-18 17:07:09 -070078 native void nObjDestroyOOB(int id);
Jason Sams36e612a2009-07-31 16:26:13 -070079 native int nFileOpen(byte[] name);
Jason Sams3eaa3382009-06-10 15:04:38 -070080
Jason Sams36e612a2009-07-31 16:26:13 -070081 native void nElementBegin();
82 native void nElementAddPredefined(int predef);
Jason Sams43ee06852009-08-12 17:54:11 -070083 native void nElementAdd(int kind, int type, int norm, int bits, String s);
Jason Sams36e612a2009-07-31 16:26:13 -070084 native int nElementCreate();
85 native int nElementGetPredefined(int predef);
Jack Palevich60aa3ea2009-05-26 13:45:08 -070086
Jason Sams36e612a2009-07-31 16:26:13 -070087 native void nTypeBegin(int elementID);
88 native void nTypeAdd(int dim, int val);
89 native int nTypeCreate();
Jason Sams43ee06852009-08-12 17:54:11 -070090 native void nTypeFinalDestroy(Type t);
91 native void nTypeSetupFields(Type t, int[] types, int[] bits, Field[] IDs);
Jack Palevich60aa3ea2009-05-26 13:45:08 -070092
Jason Sams36e612a2009-07-31 16:26:13 -070093 native int nAllocationCreateTyped(int type);
94 native int nAllocationCreatePredefSized(int predef, int count);
95 native int nAllocationCreateSized(int elem, int count);
96 native int nAllocationCreateFromBitmap(int dstFmt, boolean genMips, Bitmap bmp);
97 native int nAllocationCreateFromBitmapBoxed(int dstFmt, boolean genMips, Bitmap bmp);
Jason Samsfe08d992009-05-27 14:45:32 -070098
Jason Sams36e612a2009-07-31 16:26:13 -070099 native void nAllocationUploadToTexture(int alloc, int baseMioLevel);
Jason Sams36e612a2009-07-31 16:26:13 -0700100 native void nAllocationData(int id, int[] d);
101 native void nAllocationData(int id, float[] d);
102 native void nAllocationSubData1D(int id, int off, int count, int[] d);
103 native void nAllocationSubData1D(int id, int off, int count, float[] d);
104 native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, int[] d);
105 native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, float[] d);
Jason Sams40a29e82009-08-10 14:55:26 -0700106 native void nAllocationRead(int id, int[] d);
107 native void nAllocationRead(int id, float[] d);
Jason Sams43ee06852009-08-12 17:54:11 -0700108 native void nAllocationDataFromObject(int id, Type t, Object o);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700109
Jason Sams36e612a2009-07-31 16:26:13 -0700110 native void nTriangleMeshBegin(int vertex, int index);
111 native void nTriangleMeshAddVertex_XY (float x, float y);
112 native void nTriangleMeshAddVertex_XYZ (float x, float y, float z);
113 native void nTriangleMeshAddVertex_XY_ST (float x, float y, float s, float t);
114 native void nTriangleMeshAddVertex_XYZ_ST (float x, float y, float z, float s, float t);
115 native void nTriangleMeshAddVertex_XYZ_ST_NORM (float x, float y, float z, float s, float t, float nx, float ny, float nz);
116 native void nTriangleMeshAddTriangle(int i1, int i2, int i3);
117 native int nTriangleMeshCreate();
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 Sams22534172009-08-04 16:58:20 -0700142
Jason Sams36e612a2009-07-31 16:26:13 -0700143 native void nScriptCBegin();
Jason Sams36e612a2009-07-31 16:26:13 -0700144 native void nScriptCSetScript(byte[] script, int offset, int length);
145 native int nScriptCCreate();
Joe Onoratod7b37742009-08-09 22:57:44 -0700146 native void nScriptCAddDefineI32(String name, int value);
147 native void nScriptCAddDefineF(String name, float value);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700148
Jason Sams36e612a2009-07-31 16:26:13 -0700149 native void nSamplerBegin();
150 native void nSamplerSet(int param, int value);
151 native int nSamplerCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700152
Jason Sams36e612a2009-07-31 16:26:13 -0700153 native void nProgramFragmentStoreBegin(int in, int out);
154 native void nProgramFragmentStoreDepthFunc(int func);
155 native void nProgramFragmentStoreDepthMask(boolean enable);
156 native void nProgramFragmentStoreColorMask(boolean r, boolean g, boolean b, boolean a);
157 native void nProgramFragmentStoreBlendFunc(int src, int dst);
158 native void nProgramFragmentStoreDither(boolean enable);
159 native int nProgramFragmentStoreCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700160
Jason Sams25ffcdc2009-08-20 16:10:36 -0700161 native void nProgramFragmentBegin(int in, int out, boolean pointSpriteEnable);
Jason Sams36e612a2009-07-31 16:26:13 -0700162 native void nProgramFragmentBindTexture(int vpf, int slot, int a);
163 native void nProgramFragmentBindSampler(int vpf, int slot, int s);
Jason Sams25ffcdc2009-08-20 16:10:36 -0700164 native void nProgramFragmentSetSlot(int slot, boolean enable, int env, int vt);
Jason Sams36e612a2009-07-31 16:26:13 -0700165 native int nProgramFragmentCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700166
Jason Sams9bee51c2009-08-05 13:57:03 -0700167 native void nProgramVertexBindAllocation(int pv, int mID);
Jason Sams36e612a2009-07-31 16:26:13 -0700168 native void nProgramVertexBegin(int inID, int outID);
Jason Sams36e612a2009-07-31 16:26:13 -0700169 native void nProgramVertexSetTextureMatrixEnable(boolean enable);
170 native void nProgramVertexAddLight(int id);
171 native int nProgramVertexCreate();
Jason Sams1fe9b8c2009-06-11 14:46:10 -0700172
Jason Sams36e612a2009-07-31 16:26:13 -0700173 native void nLightBegin();
174 native void nLightSetIsMono(boolean isMono);
175 native void nLightSetIsLocal(boolean isLocal);
176 native int nLightCreate();
Jason Sams36e612a2009-07-31 16:26:13 -0700177 native void nLightSetColor(int l, float r, float g, float b);
178 native void nLightSetPosition(int l, float x, float y, float z);
Jason Samsbba134c2009-06-22 15:49:21 -0700179
Jason Sams1bada8c2009-08-09 17:01:55 -0700180 native int nSimpleMeshCreate(int batchID, int idxID, int[] vtxID, int prim);
181 native void nSimpleMeshBindVertex(int id, int alloc, int slot);
182 native void nSimpleMeshBindIndex(int id, int alloc);
183
Jason Sams40a29e82009-08-10 14:55:26 -0700184 native void nAnimationBegin(int attribCount, int keyframeCount);
185 native void nAnimationAdd(float time, float[] attribs);
186 native int nAnimationCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700187
188 private int mDev;
189 private int mContext;
190 private Surface mSurface;
191
Jason Sams36e612a2009-07-31 16:26:13 -0700192 private static boolean mElementsInitialized = false;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700193
194 ///////////////////////////////////////////////////////////////////////////////////
Jack Palevich43702d82009-05-28 13:38:16 -0700195 //
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700196
Jason Samsb13ada52009-08-25 11:34:49 -0700197 public RenderScript(Surface sur, boolean useDepth) {
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700198 mSurface = sur;
199 mDev = nDeviceCreate();
Jason Samsb13ada52009-08-25 11:34:49 -0700200 mContext = nContextCreate(mDev, mSurface, 0, useDepth);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700201
Jason Sams36e612a2009-07-31 16:26:13 -0700202 // TODO: This should be protected by a lock
203 if(!mElementsInitialized) {
204 Element.init(this);
205 mElementsInitialized = true;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700206 }
207 }
208
Jason Samsf5b45962009-08-25 14:49:07 -0700209 public void destroy() {
210 nContextDestroy(mContext);
211 mContext = 0;
212
213 nDeviceDestroy(mDev);
214 mDev = 0;
215 }
Jason Sams02fb2cb2009-05-28 15:37:57 -0700216
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700217 //////////////////////////////////////////////////////////////////////////////////
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700218 // Triangle Mesh
219
220 public class TriangleMesh extends BaseObj {
221 TriangleMesh(int id) {
Jason Sams36e612a2009-07-31 16:26:13 -0700222 super(RenderScript.this);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700223 mID = id;
224 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700225 }
226
227 public void triangleMeshBegin(Element vertex, Element index) {
Jason Sams36e612a2009-07-31 16:26:13 -0700228 Log.e("rs", "vtx " + vertex.toString() + " " + vertex.mID + " " + vertex.mPredefinedID);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700229 nTriangleMeshBegin(vertex.mID, index.mID);
230 }
231
232 public void triangleMeshAddVertex_XY(float x, float y) {
233 nTriangleMeshAddVertex_XY(x, y);
234 }
235
236 public void triangleMeshAddVertex_XYZ(float x, float y, float z) {
237 nTriangleMeshAddVertex_XYZ(x, y, z);
238 }
239
240 public void triangleMeshAddVertex_XY_ST(float x, float y, float s, float t) {
241 nTriangleMeshAddVertex_XY_ST(x, y, s, t);
242 }
243
244 public void triangleMeshAddVertex_XYZ_ST(float x, float y, float z, float s, float t) {
245 nTriangleMeshAddVertex_XYZ_ST(x, y, z, s, t);
246 }
247
Jason Sams0826a6f2009-06-15 19:04:56 -0700248 public void triangleMeshAddVertex_XYZ_ST_NORM(float x, float y, float z, float s, float t, float nx, float ny, float nz) {
249 nTriangleMeshAddVertex_XYZ_ST_NORM(x, y, z, s, t, nx, ny, nz);
250 }
251
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700252 public void triangleMeshAddTriangle(int i1, int i2, int i3) {
253 nTriangleMeshAddTriangle(i1, i2, i3);
254 }
255
256 public TriangleMesh triangleMeshCreate() {
257 int id = nTriangleMeshCreate();
258 return new TriangleMesh(id);
259 }
260
261 //////////////////////////////////////////////////////////////////////////////////
Jason Sams64676f32009-07-08 18:01:53 -0700262 // File
263
264 public class File extends BaseObj {
265 File(int id) {
Jason Sams36e612a2009-07-31 16:26:13 -0700266 super(RenderScript.this);
Jason Sams64676f32009-07-08 18:01:53 -0700267 mID = id;
268 }
Jason Sams64676f32009-07-08 18:01:53 -0700269 }
270
271 public File fileOpen(String s) throws IllegalStateException, IllegalArgumentException
272 {
273 if(s.length() < 1) {
274 throw new IllegalArgumentException("fileOpen does not accept a zero length string.");
275 }
276
277 try {
278 byte[] bytes = s.getBytes("UTF-8");
279 int id = nFileOpen(bytes);
280 return new File(id);
281 } catch (java.io.UnsupportedEncodingException e) {
282 throw new RuntimeException(e);
283 }
284 }
285
286
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700287 ///////////////////////////////////////////////////////////////////////////////////
288 // Root state
289
290 public void contextBindRootScript(Script s) {
Jason Samsd8e41612009-08-20 17:22:40 -0700291 int id = 0;
292 if(s != null) {
293 id = s.mID;
294 }
295 nContextBindRootScript(id);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700296 }
297
298 //public void contextBindSampler(Sampler s, int slot) {
299 //nContextBindSampler(s.mID);
300 //}
301
Jason Sams22534172009-08-04 16:58:20 -0700302 public void contextBindProgramFragmentStore(ProgramStore pfs) {
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700303 nContextBindProgramFragmentStore(pfs.mID);
304 }
305
306 public void contextBindProgramFragment(ProgramFragment pf) {
307 nContextBindProgramFragment(pf.mID);
308 }
309
Jason Sams0826a6f2009-06-15 19:04:56 -0700310 public void contextBindProgramVertex(ProgramVertex pf) {
311 nContextBindProgramVertex(pf.mID);
312 }
313
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700314}
315
Jason Sams36e612a2009-07-31 16:26:13 -0700316