blob: 50a449434b5f7182552be0b964673e34111d385a [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);
Jack Palevich60aa3ea2009-05-26 13:45:08 -070071
Jason Sams36e612a2009-07-31 16:26:13 -070072 native void nAssignName(int obj, byte[] name);
73 native int nFileOpen(byte[] name);
Jason Sams3eaa338e2009-06-10 15:04:38 -070074
Jason Sams36e612a2009-07-31 16:26:13 -070075 native void nElementBegin();
76 native void nElementAddPredefined(int predef);
77 native void nElementAdd(int kind, int type, int norm, int bits);
78 native int nElementCreate();
79 native int nElementGetPredefined(int predef);
80 native void nElementDestroy(int obj);
Jack Palevich60aa3ea2009-05-26 13:45:08 -070081
Jason Sams36e612a2009-07-31 16:26:13 -070082 native void nTypeBegin(int elementID);
83 native void nTypeAdd(int dim, int val);
84 native int nTypeCreate();
85 native void nTypeDestroy(int id);
Jack Palevich60aa3ea2009-05-26 13:45:08 -070086
Jason Sams36e612a2009-07-31 16:26:13 -070087 native int nAllocationCreateTyped(int type);
88 native int nAllocationCreatePredefSized(int predef, int count);
89 native int nAllocationCreateSized(int elem, int count);
90 native int nAllocationCreateFromBitmap(int dstFmt, boolean genMips, Bitmap bmp);
91 native int nAllocationCreateFromBitmapBoxed(int dstFmt, boolean genMips, Bitmap bmp);
Jason Samsfe08d992009-05-27 14:45:32 -070092
Jason Sams36e612a2009-07-31 16:26:13 -070093 native void nAllocationUploadToTexture(int alloc, int baseMioLevel);
94 native void nAllocationDestroy(int alloc);
95 native void nAllocationData(int id, int[] d);
96 native void nAllocationData(int id, float[] d);
97 native void nAllocationSubData1D(int id, int off, int count, int[] d);
98 native void nAllocationSubData1D(int id, int off, int count, float[] d);
99 native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, int[] d);
100 native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, float[] d);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700101
Jason Sams36e612a2009-07-31 16:26:13 -0700102 native void nTriangleMeshDestroy(int id);
103 native void nTriangleMeshBegin(int vertex, int index);
104 native void nTriangleMeshAddVertex_XY (float x, float y);
105 native void nTriangleMeshAddVertex_XYZ (float x, float y, float z);
106 native void nTriangleMeshAddVertex_XY_ST (float x, float y, float s, float t);
107 native void nTriangleMeshAddVertex_XYZ_ST (float x, float y, float z, float s, float t);
108 native void nTriangleMeshAddVertex_XYZ_ST_NORM (float x, float y, float z, float s, float t, float nx, float ny, float nz);
109 native void nTriangleMeshAddTriangle(int i1, int i2, int i3);
110 native int nTriangleMeshCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700111
Jason Sams36e612a2009-07-31 16:26:13 -0700112 native void nAdapter1DDestroy(int id);
113 native void nAdapter1DBindAllocation(int ad, int alloc);
114 native void nAdapter1DSetConstraint(int ad, int dim, int value);
115 native void nAdapter1DData(int ad, int[] d);
Jason Sams36e612a2009-07-31 16:26:13 -0700116 native void nAdapter1DData(int ad, float[] d);
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700117 native void nAdapter1DSubData(int ad, int off, int count, int[] d);
Jason Sams36e612a2009-07-31 16:26:13 -0700118 native void nAdapter1DSubData(int ad, int off, int count, float[] d);
119 native int nAdapter1DCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700120
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700121 native void nAdapter2DDestroy(int id);
122 native void nAdapter2DBindAllocation(int ad, int alloc);
123 native void nAdapter2DSetConstraint(int ad, int dim, int value);
124 native void nAdapter2DData(int ad, int[] d);
125 native void nAdapter2DData(int ad, float[] d);
126 native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, int[] d);
127 native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, float[] d);
128 native int nAdapter2DCreate();
129
Jason Sams36e612a2009-07-31 16:26:13 -0700130 native void nScriptDestroy(int script);
Jason Sams22534172009-08-04 16:58:20 -0700131 native void nScriptBindAllocation(int script, int alloc, int slot);
132 native void nScriptSetClearColor(int script, float r, float g, float b, float a);
133 native void nScriptSetClearDepth(int script, float depth);
134 native void nScriptSetClearStencil(int script, int stencil);
135 native void nScriptSetTimeZone(int script, byte[] timeZone);
136
Jason Sams36e612a2009-07-31 16:26:13 -0700137 native void nScriptCBegin();
Jason Sams36e612a2009-07-31 16:26:13 -0700138 native void nScriptCAddType(int type);
139 native void nScriptCSetRoot(boolean isRoot);
140 native void nScriptCSetScript(byte[] script, int offset, int length);
141 native int nScriptCCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700142
Jason Sams36e612a2009-07-31 16:26:13 -0700143 native void nSamplerDestroy(int sampler);
144 native void nSamplerBegin();
145 native void nSamplerSet(int param, int value);
146 native int nSamplerCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700147
Jason Sams36e612a2009-07-31 16:26:13 -0700148 native void nProgramFragmentStoreBegin(int in, int out);
149 native void nProgramFragmentStoreDepthFunc(int func);
150 native void nProgramFragmentStoreDepthMask(boolean enable);
151 native void nProgramFragmentStoreColorMask(boolean r, boolean g, boolean b, boolean a);
152 native void nProgramFragmentStoreBlendFunc(int src, int dst);
153 native void nProgramFragmentStoreDither(boolean enable);
154 native int nProgramFragmentStoreCreate();
155 native void nProgramFragmentStoreDestroy(int pgm);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700156
Jason Sams36e612a2009-07-31 16:26:13 -0700157 native void nProgramFragmentBegin(int in, int out);
158 native void nProgramFragmentBindTexture(int vpf, int slot, int a);
159 native void nProgramFragmentBindSampler(int vpf, int slot, int s);
160 native void nProgramFragmentSetType(int slot, int vt);
161 native void nProgramFragmentSetEnvMode(int slot, int env);
162 native void nProgramFragmentSetTexEnable(int slot, boolean enable);
163 native int nProgramFragmentCreate();
164 native void nProgramFragmentDestroy(int pgm);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700165
Jason Sams36e612a2009-07-31 16:26:13 -0700166 native void nProgramVertexDestroy(int pv);
167 native void nProgramVertexBindAllocation(int pv, int slot, int mID);
168 native void nProgramVertexBegin(int inID, int outID);
169 native void nProgramVertexSetType(int slot, int mID);
170 native void nProgramVertexSetTextureMatrixEnable(boolean enable);
171 native void nProgramVertexAddLight(int id);
172 native int nProgramVertexCreate();
Jason Sams1fe9b8c2009-06-11 14:46:10 -0700173
Jason Sams36e612a2009-07-31 16:26:13 -0700174 native void nLightBegin();
175 native void nLightSetIsMono(boolean isMono);
176 native void nLightSetIsLocal(boolean isLocal);
177 native int nLightCreate();
178 native void nLightDestroy(int l);
179 native void nLightSetColor(int l, float r, float g, float b);
180 native void nLightSetPosition(int l, float x, float y, float z);
Jason Samsbba134c2009-06-22 15:49:21 -0700181
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700182
183 private int mDev;
184 private int mContext;
185 private Surface mSurface;
186
Jason Sams36e612a2009-07-31 16:26:13 -0700187 private static boolean mElementsInitialized = false;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700188
189 ///////////////////////////////////////////////////////////////////////////////////
Jack Palevich43702d82009-05-28 13:38:16 -0700190 //
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700191
192 RenderScript(Surface sur) {
193 mSurface = sur;
194 mDev = nDeviceCreate();
195 mContext = nContextCreate(mDev, mSurface, 0);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700196
Jason Sams36e612a2009-07-31 16:26:13 -0700197 // TODO: This should be protected by a lock
198 if(!mElementsInitialized) {
199 Element.init(this);
200 mElementsInitialized = true;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700201 }
202 }
203
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700204 //////////////////////////////////////////////////////////////////////////////////
205 // Element
206
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700207
Jason Sams02fb2cb2009-05-28 15:37:57 -0700208 public enum SamplerParam {
209 FILTER_MIN (0),
210 FILTER_MAG (1),
211 WRAP_MODE_S (2),
212 WRAP_MODE_T (3),
213 WRAP_MODE_R (4);
214
215 int mID;
216 SamplerParam(int id) {
217 mID = id;
218 }
219 }
220
221 public enum SamplerValue {
222 NEAREST (0),
223 LINEAR (1),
224 LINEAR_MIP_LINEAR (2),
225 WRAP (3),
226 CLAMP (4);
227
228 int mID;
229 SamplerValue(int id) {
230 mID = id;
231 }
232 }
233
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700234 //////////////////////////////////////////////////////////////////////////////////
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700235 // Triangle Mesh
236
237 public class TriangleMesh extends BaseObj {
238 TriangleMesh(int id) {
Jason Sams36e612a2009-07-31 16:26:13 -0700239 super(RenderScript.this);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700240 mID = id;
241 }
242
243 public void destroy() {
244 nTriangleMeshDestroy(mID);
245 mID = 0;
246 }
247 }
248
249 public void triangleMeshBegin(Element vertex, Element index) {
Jason Sams36e612a2009-07-31 16:26:13 -0700250 Log.e("rs", "vtx " + vertex.toString() + " " + vertex.mID + " " + vertex.mPredefinedID);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700251 nTriangleMeshBegin(vertex.mID, index.mID);
252 }
253
254 public void triangleMeshAddVertex_XY(float x, float y) {
255 nTriangleMeshAddVertex_XY(x, y);
256 }
257
258 public void triangleMeshAddVertex_XYZ(float x, float y, float z) {
259 nTriangleMeshAddVertex_XYZ(x, y, z);
260 }
261
262 public void triangleMeshAddVertex_XY_ST(float x, float y, float s, float t) {
263 nTriangleMeshAddVertex_XY_ST(x, y, s, t);
264 }
265
266 public void triangleMeshAddVertex_XYZ_ST(float x, float y, float z, float s, float t) {
267 nTriangleMeshAddVertex_XYZ_ST(x, y, z, s, t);
268 }
269
Jason Sams0826a6f2009-06-15 19:04:56 -0700270 public void triangleMeshAddVertex_XYZ_ST_NORM(float x, float y, float z, float s, float t, float nx, float ny, float nz) {
271 nTriangleMeshAddVertex_XYZ_ST_NORM(x, y, z, s, t, nx, ny, nz);
272 }
273
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700274 public void triangleMeshAddTriangle(int i1, int i2, int i3) {
275 nTriangleMeshAddTriangle(i1, i2, i3);
276 }
277
278 public TriangleMesh triangleMeshCreate() {
279 int id = nTriangleMeshCreate();
280 return new TriangleMesh(id);
281 }
282
283 //////////////////////////////////////////////////////////////////////////////////
Jason Sams1fe9b8c2009-06-11 14:46:10 -0700284 // ProgramVertex
285
286 public class ProgramVertex extends BaseObj {
287 ProgramVertex(int id) {
Jason Sams36e612a2009-07-31 16:26:13 -0700288 super(RenderScript.this);
Jason Sams1fe9b8c2009-06-11 14:46:10 -0700289 mID = id;
290 }
291
292 public void destroy() {
293 nProgramVertexDestroy(mID);
294 mID = 0;
295 }
296
297 public void bindAllocation(int slot, Allocation va) {
298 nProgramVertexBindAllocation(mID, slot, va.mID);
299 }
Jason Sams1fe9b8c2009-06-11 14:46:10 -0700300 }
301
302 public void programVertexBegin(Element in, Element out) {
303 int inID = 0;
304 int outID = 0;
305 if (in != null) {
306 inID = in.mID;
307 }
308 if (out != null) {
309 outID = out.mID;
310 }
311 nProgramVertexBegin(inID, outID);
312 }
313
314 public void programVertexSetType(int slot, Type t) {
315 nProgramVertexSetType(slot, t.mID);
316 }
317
Jason Sams1fe9b8c2009-06-11 14:46:10 -0700318 public void programVertexSetTextureMatrixEnable(boolean enable) {
319 nProgramVertexSetTextureMatrixEnable(enable);
320 }
321
Jason Samsee411122009-07-21 12:20:54 -0700322 public void programVertexAddLight(Light l) {
323 nProgramVertexAddLight(l.mID);
324 }
325
Jason Sams1fe9b8c2009-06-11 14:46:10 -0700326 public ProgramVertex programVertexCreate() {
327 int id = nProgramVertexCreate();
328 return new ProgramVertex(id);
329 }
330
331
332 //////////////////////////////////////////////////////////////////////////////////
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700333 // ProgramFragmentStore
334
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700335 //////////////////////////////////////////////////////////////////////////////////
336 // ProgramFragment
337
Jason Sams02fb2cb2009-05-28 15:37:57 -0700338 //////////////////////////////////////////////////////////////////////////////////
339 // Sampler
340
341 public class Sampler extends BaseObj {
342 Sampler(int id) {
Jason Sams36e612a2009-07-31 16:26:13 -0700343 super(RenderScript.this);
Jason Sams02fb2cb2009-05-28 15:37:57 -0700344 mID = id;
345 }
346
347 public void destroy() {
348 nSamplerDestroy(mID);
349 mID = 0;
350 }
351 }
352
353 public void samplerBegin() {
354 nSamplerBegin();
355 }
356
357 public void samplerSet(SamplerParam p, SamplerValue v) {
358 nSamplerSet(p.mID, v.mID);
359 }
360
361 public Sampler samplerCreate() {
362 int id = nSamplerCreate();
363 return new Sampler(id);
364 }
365
Jason Samsbba134c2009-06-22 15:49:21 -0700366 //////////////////////////////////////////////////////////////////////////////////
367 // Light
368
369 public class Light extends BaseObj {
370 Light(int id) {
Jason Sams36e612a2009-07-31 16:26:13 -0700371 super(RenderScript.this);
Jason Samsbba134c2009-06-22 15:49:21 -0700372 mID = id;
373 }
374
375 public void destroy() {
376 nLightDestroy(mID);
377 mID = 0;
378 }
379
380 public void setColor(float r, float g, float b) {
381 nLightSetColor(mID, r, g, b);
382 }
383
384 public void setPosition(float x, float y, float z) {
385 nLightSetPosition(mID, x, y, z);
386 }
387 }
388
389 public void lightBegin() {
390 nLightBegin();
391 }
392
393 public void lightSetIsMono(boolean isMono) {
394 nLightSetIsMono(isMono);
395 }
396
397 public void lightSetIsLocal(boolean isLocal) {
398 nLightSetIsLocal(isLocal);
399 }
400
401 public Light lightCreate() {
402 int id = nLightCreate();
403 return new Light(id);
404 }
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700405
Jason Sams64676f32009-07-08 18:01:53 -0700406 //////////////////////////////////////////////////////////////////////////////////
407 // File
408
409 public class File extends BaseObj {
410 File(int id) {
Jason Sams36e612a2009-07-31 16:26:13 -0700411 super(RenderScript.this);
Jason Sams64676f32009-07-08 18:01:53 -0700412 mID = id;
413 }
414
415 public void destroy() {
416 //nLightDestroy(mID);
417 mID = 0;
418 }
419 }
420
421 public File fileOpen(String s) throws IllegalStateException, IllegalArgumentException
422 {
423 if(s.length() < 1) {
424 throw new IllegalArgumentException("fileOpen does not accept a zero length string.");
425 }
426
427 try {
428 byte[] bytes = s.getBytes("UTF-8");
429 int id = nFileOpen(bytes);
430 return new File(id);
431 } catch (java.io.UnsupportedEncodingException e) {
432 throw new RuntimeException(e);
433 }
434 }
435
436
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700437 ///////////////////////////////////////////////////////////////////////////////////
438 // Root state
439
440 public void contextBindRootScript(Script s) {
441 nContextBindRootScript(s.mID);
442 }
443
444 //public void contextBindSampler(Sampler s, int slot) {
445 //nContextBindSampler(s.mID);
446 //}
447
Jason Sams22534172009-08-04 16:58:20 -0700448 public void contextBindProgramFragmentStore(ProgramStore pfs) {
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700449 nContextBindProgramFragmentStore(pfs.mID);
450 }
451
452 public void contextBindProgramFragment(ProgramFragment pf) {
453 nContextBindProgramFragment(pf.mID);
454 }
455
Jason Sams0826a6f2009-06-15 19:04:56 -0700456 public void contextBindProgramVertex(ProgramVertex pf) {
457 nContextBindProgramVertex(pf.mID);
458 }
459
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700460}
461
Jason Sams36e612a2009-07-31 16:26:13 -0700462