blob: 9840bbb2379cad6f10b1abe3e948953cf2b68c3a [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;
21
22import android.content.res.Resources;
Jason Samsb8c5a842009-07-31 20:40:47 -070023import android.graphics.Bitmap;
Jason Sams36e612a2009-07-31 16:26:13 -070024import android.util.Config;
25import android.util.Log;
26import android.view.Surface;
Jack Palevich43702d82009-05-28 13:38:16 -070027
Jack Palevich60aa3ea2009-05-26 13:45:08 -070028
Jason Samse29d4712009-07-23 15:19:03 -070029/**
30 * @hide
31 *
32 **/
Jack Palevich60aa3ea2009-05-26 13:45:08 -070033public class RenderScript {
Jason Samsf29ca502009-06-23 12:22:47 -070034 static final String LOG_TAG = "libRS_jni";
Jack Palevich60aa3ea2009-05-26 13:45:08 -070035 private static final boolean DEBUG = false;
36 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 */
44 private static boolean sInitialized;
45 native private static void _nInit();
46
Jason Samsdba3ba52009-07-30 14:56:12 -070047
Jack Palevich60aa3ea2009-05-26 13:45:08 -070048 static {
49 sInitialized = false;
50 try {
Jason Samse29d4712009-07-23 15:19:03 -070051 System.loadLibrary("rs_jni");
Jack Palevich60aa3ea2009-05-26 13:45:08 -070052 _nInit();
Jack Palevich60aa3ea2009-05-26 13:45:08 -070053 sInitialized = true;
54 } catch (UnsatisfiedLinkError e) {
55 Log.d(LOG_TAG, "RenderScript JNI library not found!");
56 }
57 }
58
Jason Sams36e612a2009-07-31 16:26:13 -070059 native int nDeviceCreate();
60 native void nDeviceDestroy(int dev);
61 native int nContextCreate(int dev, Surface sur, int ver);
62 native void nContextDestroy(int con);
Jack Palevich60aa3ea2009-05-26 13:45:08 -070063
64 //void rsContextBindSampler (uint32_t slot, RsSampler sampler);
65 //void rsContextBindRootScript (RsScript sampler);
Jason Sams36e612a2009-07-31 16:26:13 -070066 native void nContextBindRootScript(int script);
67 native void nContextBindSampler(int sampler, int slot);
68 native void nContextBindProgramFragmentStore(int pfs);
69 native void nContextBindProgramFragment(int pf);
70 native void nContextBindProgramVertex(int pf);
Joe Onoratod7b37742009-08-09 22:57:44 -070071 native void nContextAddDefineI32(String name, int value);
72 native void nContextAddDefineF(String name, float value);
Jack Palevich60aa3ea2009-05-26 13:45:08 -070073
Jason Sams36e612a2009-07-31 16:26:13 -070074 native void nAssignName(int obj, byte[] name);
75 native int nFileOpen(byte[] name);
Jason Sams3eaa338e2009-06-10 15:04:38 -070076
Jason Sams36e612a2009-07-31 16:26:13 -070077 native void nElementBegin();
78 native void nElementAddPredefined(int predef);
79 native void nElementAdd(int kind, int type, int norm, int bits);
80 native int nElementCreate();
81 native int nElementGetPredefined(int predef);
82 native void nElementDestroy(int obj);
Jack Palevich60aa3ea2009-05-26 13:45:08 -070083
Jason Sams36e612a2009-07-31 16:26:13 -070084 native void nTypeBegin(int elementID);
85 native void nTypeAdd(int dim, int val);
86 native int nTypeCreate();
87 native void nTypeDestroy(int id);
Jack Palevich60aa3ea2009-05-26 13:45:08 -070088
Jason Sams36e612a2009-07-31 16:26:13 -070089 native int nAllocationCreateTyped(int type);
90 native int nAllocationCreatePredefSized(int predef, int count);
91 native int nAllocationCreateSized(int elem, int count);
92 native int nAllocationCreateFromBitmap(int dstFmt, boolean genMips, Bitmap bmp);
93 native int nAllocationCreateFromBitmapBoxed(int dstFmt, boolean genMips, Bitmap bmp);
Jason Samsfe08d992009-05-27 14:45:32 -070094
Jason Sams36e612a2009-07-31 16:26:13 -070095 native void nAllocationUploadToTexture(int alloc, int baseMioLevel);
96 native void nAllocationDestroy(int alloc);
97 native void nAllocationData(int id, int[] d);
98 native void nAllocationData(int id, float[] d);
99 native void nAllocationSubData1D(int id, int off, int count, int[] d);
100 native void nAllocationSubData1D(int id, int off, int count, float[] d);
101 native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, int[] d);
102 native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, float[] d);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700103
Jason Sams36e612a2009-07-31 16:26:13 -0700104 native void nTriangleMeshDestroy(int id);
105 native void nTriangleMeshBegin(int vertex, int index);
106 native void nTriangleMeshAddVertex_XY (float x, float y);
107 native void nTriangleMeshAddVertex_XYZ (float x, float y, float z);
108 native void nTriangleMeshAddVertex_XY_ST (float x, float y, float s, float t);
109 native void nTriangleMeshAddVertex_XYZ_ST (float x, float y, float z, float s, float t);
110 native void nTriangleMeshAddVertex_XYZ_ST_NORM (float x, float y, float z, float s, float t, float nx, float ny, float nz);
111 native void nTriangleMeshAddTriangle(int i1, int i2, int i3);
112 native int nTriangleMeshCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700113
Jason Sams36e612a2009-07-31 16:26:13 -0700114 native void nAdapter1DDestroy(int id);
115 native void nAdapter1DBindAllocation(int ad, int alloc);
116 native void nAdapter1DSetConstraint(int ad, int dim, int value);
117 native void nAdapter1DData(int ad, int[] d);
Jason Sams36e612a2009-07-31 16:26:13 -0700118 native void nAdapter1DData(int ad, float[] d);
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700119 native void nAdapter1DSubData(int ad, int off, int count, int[] d);
Jason Sams36e612a2009-07-31 16:26:13 -0700120 native void nAdapter1DSubData(int ad, int off, int count, float[] d);
121 native int nAdapter1DCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700122
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700123 native void nAdapter2DDestroy(int id);
124 native void nAdapter2DBindAllocation(int ad, int alloc);
125 native void nAdapter2DSetConstraint(int ad, int dim, int value);
126 native void nAdapter2DData(int ad, int[] d);
127 native void nAdapter2DData(int ad, float[] d);
128 native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, int[] d);
129 native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, float[] d);
130 native int nAdapter2DCreate();
131
Jason Sams36e612a2009-07-31 16:26:13 -0700132 native void nScriptDestroy(int script);
Jason Sams22534172009-08-04 16:58:20 -0700133 native void nScriptBindAllocation(int script, int alloc, int slot);
134 native void nScriptSetClearColor(int script, float r, float g, float b, float a);
135 native void nScriptSetClearDepth(int script, float depth);
136 native void nScriptSetClearStencil(int script, int stencil);
137 native void nScriptSetTimeZone(int script, byte[] timeZone);
138
Jason Sams36e612a2009-07-31 16:26:13 -0700139 native void nScriptCBegin();
Jason Sams36e612a2009-07-31 16:26:13 -0700140 native void nScriptCAddType(int type);
141 native void nScriptCSetRoot(boolean isRoot);
142 native void nScriptCSetScript(byte[] script, int offset, int length);
143 native int nScriptCCreate();
Joe Onoratod7b37742009-08-09 22:57:44 -0700144 native void nScriptCAddDefineI32(String name, int value);
145 native void nScriptCAddDefineF(String name, float value);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700146
Jason Sams36e612a2009-07-31 16:26:13 -0700147 native void nSamplerDestroy(int sampler);
148 native void nSamplerBegin();
149 native void nSamplerSet(int param, int value);
150 native int nSamplerCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700151
Jason Sams36e612a2009-07-31 16:26:13 -0700152 native void nProgramFragmentStoreBegin(int in, int out);
153 native void nProgramFragmentStoreDepthFunc(int func);
154 native void nProgramFragmentStoreDepthMask(boolean enable);
155 native void nProgramFragmentStoreColorMask(boolean r, boolean g, boolean b, boolean a);
156 native void nProgramFragmentStoreBlendFunc(int src, int dst);
157 native void nProgramFragmentStoreDither(boolean enable);
158 native int nProgramFragmentStoreCreate();
159 native void nProgramFragmentStoreDestroy(int pgm);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700160
Jason Sams36e612a2009-07-31 16:26:13 -0700161 native void nProgramFragmentBegin(int in, int out);
162 native void nProgramFragmentBindTexture(int vpf, int slot, int a);
163 native void nProgramFragmentBindSampler(int vpf, int slot, int s);
164 native void nProgramFragmentSetType(int slot, int vt);
165 native void nProgramFragmentSetEnvMode(int slot, int env);
166 native void nProgramFragmentSetTexEnable(int slot, boolean enable);
167 native int nProgramFragmentCreate();
168 native void nProgramFragmentDestroy(int pgm);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700169
Jason Sams36e612a2009-07-31 16:26:13 -0700170 native void nProgramVertexDestroy(int pv);
Jason Sams9bee51c2009-08-05 13:57:03 -0700171 native void nProgramVertexBindAllocation(int pv, int mID);
Jason Sams36e612a2009-07-31 16:26:13 -0700172 native void nProgramVertexBegin(int inID, int outID);
Jason Sams36e612a2009-07-31 16:26:13 -0700173 native void nProgramVertexSetTextureMatrixEnable(boolean enable);
174 native void nProgramVertexAddLight(int id);
175 native int nProgramVertexCreate();
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();
181 native void nLightDestroy(int l);
182 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 void nSimpleMeshDestroy(int id);
186 native int nSimpleMeshCreate(int batchID, int idxID, int[] vtxID, int prim);
187 native void nSimpleMeshBindVertex(int id, int alloc, int slot);
188 native void nSimpleMeshBindIndex(int id, int alloc);
189
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700190
191 private int mDev;
192 private int mContext;
193 private Surface mSurface;
194
Jason Sams36e612a2009-07-31 16:26:13 -0700195 private static boolean mElementsInitialized = false;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700196
197 ///////////////////////////////////////////////////////////////////////////////////
Jack Palevich43702d82009-05-28 13:38:16 -0700198 //
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700199
200 RenderScript(Surface sur) {
201 mSurface = sur;
202 mDev = nDeviceCreate();
203 mContext = nContextCreate(mDev, mSurface, 0);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700204
Jason Sams36e612a2009-07-31 16:26:13 -0700205 // TODO: This should be protected by a lock
206 if(!mElementsInitialized) {
207 Element.init(this);
208 mElementsInitialized = true;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700209 }
210 }
211
Jason Sams02fb2cb2009-05-28 15:37:57 -0700212
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700213 //////////////////////////////////////////////////////////////////////////////////
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700214 // Triangle Mesh
215
216 public class TriangleMesh extends BaseObj {
217 TriangleMesh(int id) {
Jason Sams36e612a2009-07-31 16:26:13 -0700218 super(RenderScript.this);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700219 mID = id;
220 }
221
222 public void destroy() {
223 nTriangleMeshDestroy(mID);
224 mID = 0;
225 }
226 }
227
228 public void triangleMeshBegin(Element vertex, Element index) {
Jason Sams36e612a2009-07-31 16:26:13 -0700229 Log.e("rs", "vtx " + vertex.toString() + " " + vertex.mID + " " + vertex.mPredefinedID);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700230 nTriangleMeshBegin(vertex.mID, index.mID);
231 }
232
233 public void triangleMeshAddVertex_XY(float x, float y) {
234 nTriangleMeshAddVertex_XY(x, y);
235 }
236
237 public void triangleMeshAddVertex_XYZ(float x, float y, float z) {
238 nTriangleMeshAddVertex_XYZ(x, y, z);
239 }
240
241 public void triangleMeshAddVertex_XY_ST(float x, float y, float s, float t) {
242 nTriangleMeshAddVertex_XY_ST(x, y, s, t);
243 }
244
245 public void triangleMeshAddVertex_XYZ_ST(float x, float y, float z, float s, float t) {
246 nTriangleMeshAddVertex_XYZ_ST(x, y, z, s, t);
247 }
248
Jason Sams0826a6f2009-06-15 19:04:56 -0700249 public void triangleMeshAddVertex_XYZ_ST_NORM(float x, float y, float z, float s, float t, float nx, float ny, float nz) {
250 nTriangleMeshAddVertex_XYZ_ST_NORM(x, y, z, s, t, nx, ny, nz);
251 }
252
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700253 public void triangleMeshAddTriangle(int i1, int i2, int i3) {
254 nTriangleMeshAddTriangle(i1, i2, i3);
255 }
256
257 public TriangleMesh triangleMeshCreate() {
258 int id = nTriangleMeshCreate();
259 return new TriangleMesh(id);
260 }
261
262 //////////////////////////////////////////////////////////////////////////////////
Jason Sams64676f32009-07-08 18:01:53 -0700263 // File
264
265 public class File extends BaseObj {
266 File(int id) {
Jason Sams36e612a2009-07-31 16:26:13 -0700267 super(RenderScript.this);
Jason Sams64676f32009-07-08 18:01:53 -0700268 mID = id;
269 }
270
271 public void destroy() {
272 //nLightDestroy(mID);
273 mID = 0;
274 }
275 }
276
277 public File fileOpen(String s) throws IllegalStateException, IllegalArgumentException
278 {
279 if(s.length() < 1) {
280 throw new IllegalArgumentException("fileOpen does not accept a zero length string.");
281 }
282
283 try {
284 byte[] bytes = s.getBytes("UTF-8");
285 int id = nFileOpen(bytes);
286 return new File(id);
287 } catch (java.io.UnsupportedEncodingException e) {
288 throw new RuntimeException(e);
289 }
290 }
291
292
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700293 ///////////////////////////////////////////////////////////////////////////////////
294 // Root state
295
296 public void contextBindRootScript(Script s) {
297 nContextBindRootScript(s.mID);
298 }
299
300 //public void contextBindSampler(Sampler s, int slot) {
301 //nContextBindSampler(s.mID);
302 //}
303
Jason Sams22534172009-08-04 16:58:20 -0700304 public void contextBindProgramFragmentStore(ProgramStore pfs) {
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700305 nContextBindProgramFragmentStore(pfs.mID);
306 }
307
308 public void contextBindProgramFragment(ProgramFragment pf) {
309 nContextBindProgramFragment(pf.mID);
310 }
311
Jason Sams0826a6f2009-06-15 19:04:56 -0700312 public void contextBindProgramVertex(ProgramVertex pf) {
313 nContextBindProgramVertex(pf.mID);
314 }
315
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700316}
317
Jason Sams36e612a2009-07-31 16:26:13 -0700318