| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 1 | /* |
| 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 Sams | 94d8e90a | 2009-06-10 16:09:05 -0700 | [diff] [blame] | 17 | package android.renderscript; |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 18 | |
| Jason Sams | 43ee0685 | 2009-08-12 17:54:11 -0700 | [diff] [blame] | 19 | import java.lang.reflect.Field; |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 20 | |
| Jason Sams | b8c5a84 | 2009-07-31 20:40:47 -0700 | [diff] [blame] | 21 | import android.graphics.Bitmap; |
| Romain Guy | 650a3eb | 2009-08-31 14:06:43 -0700 | [diff] [blame] | 22 | import android.graphics.BitmapFactory; |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 23 | import android.util.Config; |
| 24 | import android.util.Log; |
| 25 | import android.view.Surface; |
| Jack Palevich | 43702d8 | 2009-05-28 13:38:16 -0700 | [diff] [blame] | 26 | |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 27 | |
| Jason Sams | e29d471 | 2009-07-23 15:19:03 -0700 | [diff] [blame] | 28 | /** |
| 29 | * @hide |
| 30 | * |
| 31 | **/ |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 32 | public class RenderScript { |
| Jason Sams | f29ca50 | 2009-06-23 12:22:47 -0700 | [diff] [blame] | 33 | static final String LOG_TAG = "libRS_jni"; |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 34 | private static final boolean DEBUG = false; |
| Romain Guy | 650a3eb | 2009-08-31 14:06:43 -0700 | [diff] [blame] | 35 | @SuppressWarnings({"UnusedDeclaration", "deprecation"}) |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 36 | private static final boolean LOG_ENABLED = DEBUG ? Config.LOGD : Config.LOGV; |
| 37 | |
| 38 | |
| 39 | |
| Jason Sams | 02fb2cb | 2009-05-28 15:37:57 -0700 | [diff] [blame] | 40 | /* |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 41 | * We use a class initializer to allow the native code to cache some |
| 42 | * field offsets. |
| 43 | */ |
| Romain Guy | 650a3eb | 2009-08-31 14:06:43 -0700 | [diff] [blame] | 44 | @SuppressWarnings({"FieldCanBeLocal", "UnusedDeclaration"}) |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 45 | private static boolean sInitialized; |
| 46 | native private static void _nInit(); |
| 47 | |
| Jason Sams | dba3ba5 | 2009-07-30 14:56:12 -0700 | [diff] [blame] | 48 | |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 49 | static { |
| 50 | sInitialized = false; |
| 51 | try { |
| Jason Sams | e29d471 | 2009-07-23 15:19:03 -0700 | [diff] [blame] | 52 | System.loadLibrary("rs_jni"); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 53 | _nInit(); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 54 | sInitialized = true; |
| 55 | } catch (UnsatisfiedLinkError e) { |
| 56 | Log.d(LOG_TAG, "RenderScript JNI library not found!"); |
| 57 | } |
| 58 | } |
| 59 | |
| Jason Sams | ea84a7c | 2009-09-04 14:42:41 -0700 | [diff] [blame] | 60 | native void nInitElements(int a8, int rgba4444, int rgba8888, int rgb565); |
| 61 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 62 | native int nDeviceCreate(); |
| 63 | native void nDeviceDestroy(int dev); |
| Jason Sams | ebfb436 | 2009-09-23 13:57:02 -0700 | [diff] [blame] | 64 | native void nDeviceSetConfig(int dev, int param, int value); |
| Jason Sams | b13ada5 | 2009-08-25 11:34:49 -0700 | [diff] [blame] | 65 | native int nContextCreate(int dev, Surface sur, int ver, boolean useDepth); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 66 | native void nContextDestroy(int con); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 67 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 68 | 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); |
| Jason Sams | ebfb436 | 2009-09-23 13:57:02 -0700 | [diff] [blame] | 73 | native void nContextBindProgramRaster(int pr); |
| Joe Onorato | d7b3774 | 2009-08-09 22:57:44 -0700 | [diff] [blame] | 74 | native void nContextAddDefineI32(String name, int value); |
| 75 | native void nContextAddDefineF(String name, float value); |
| Jason Sams | 65e7aa5 | 2009-09-24 17:38:20 -0700 | [diff] [blame] | 76 | native void nContextPause(); |
| 77 | native void nContextResume(); |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 78 | native int nContextGetMessage(int[] data, boolean wait); |
| 79 | native void nContextInitToClient(); |
| 80 | native void nContextDeinitToClient(); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 81 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 82 | native void nAssignName(int obj, byte[] name); |
| Jason Sams | 7ce033d | 2009-08-18 14:14:24 -0700 | [diff] [blame] | 83 | native void nObjDestroy(int id); |
| Jason Sams | 730ee65 | 2009-08-18 17:07:09 -0700 | [diff] [blame] | 84 | native void nObjDestroyOOB(int id); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 85 | native int nFileOpen(byte[] name); |
| Jason Sams | 3eaa338e | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 86 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 87 | native void nElementBegin(); |
| Jason Sams | 768bc02 | 2009-09-21 19:41:04 -0700 | [diff] [blame] | 88 | native void nElementAdd(int kind, int type, boolean norm, int bits, String s); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 89 | native int nElementCreate(); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 90 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 91 | native void nTypeBegin(int elementID); |
| 92 | native void nTypeAdd(int dim, int val); |
| 93 | native int nTypeCreate(); |
| Jason Sams | 43ee0685 | 2009-08-12 17:54:11 -0700 | [diff] [blame] | 94 | native void nTypeFinalDestroy(Type t); |
| 95 | native void nTypeSetupFields(Type t, int[] types, int[] bits, Field[] IDs); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 96 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 97 | native int nAllocationCreateTyped(int type); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 98 | native int nAllocationCreateFromBitmap(int dstFmt, boolean genMips, Bitmap bmp); |
| 99 | native int nAllocationCreateFromBitmapBoxed(int dstFmt, boolean genMips, Bitmap bmp); |
| Romain Guy | 650a3eb | 2009-08-31 14:06:43 -0700 | [diff] [blame] | 100 | native int nAllocationCreateFromAssetStream(int dstFmt, boolean genMips, int assetStream); |
| Jason Sams | fe08d99 | 2009-05-27 14:45:32 -0700 | [diff] [blame] | 101 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 102 | native void nAllocationUploadToTexture(int alloc, int baseMioLevel); |
| Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 103 | native void nAllocationUploadToBufferObject(int alloc); |
| Jason Sams | 768bc02 | 2009-09-21 19:41:04 -0700 | [diff] [blame] | 104 | |
| Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 105 | native void nAllocationSubData1D(int id, int off, int count, int[] d, int sizeBytes); |
| Jason Sams | 768bc02 | 2009-09-21 19:41:04 -0700 | [diff] [blame] | 106 | native void nAllocationSubData1D(int id, int off, int count, short[] d, int sizeBytes); |
| 107 | native void nAllocationSubData1D(int id, int off, int count, byte[] d, int sizeBytes); |
| Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 108 | native void nAllocationSubData1D(int id, int off, int count, float[] d, int sizeBytes); |
| Jason Sams | 768bc02 | 2009-09-21 19:41:04 -0700 | [diff] [blame] | 109 | |
| Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 110 | native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, int[] d, int sizeBytes); |
| 111 | native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, float[] d, int sizeBytes); |
| Jason Sams | 40a29e8 | 2009-08-10 14:55:26 -0700 | [diff] [blame] | 112 | native void nAllocationRead(int id, int[] d); |
| 113 | native void nAllocationRead(int id, float[] d); |
| Jason Sams | 2525a81 | 2009-09-03 15:43:13 -0700 | [diff] [blame] | 114 | native void nAllocationSubDataFromObject(int id, Type t, int offset, Object o); |
| Jason Sams | 5f43fd2 | 2009-09-15 12:39:22 -0700 | [diff] [blame] | 115 | native void nAllocationSubReadFromObject(int id, Type t, int offset, Object o); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 116 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 117 | native void nAdapter1DBindAllocation(int ad, int alloc); |
| 118 | native void nAdapter1DSetConstraint(int ad, int dim, int value); |
| 119 | native void nAdapter1DData(int ad, int[] d); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 120 | native void nAdapter1DData(int ad, float[] d); |
| Jason Sams | bd1c3ad | 2009-08-03 16:03:08 -0700 | [diff] [blame] | 121 | native void nAdapter1DSubData(int ad, int off, int count, int[] d); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 122 | native void nAdapter1DSubData(int ad, int off, int count, float[] d); |
| 123 | native int nAdapter1DCreate(); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 124 | |
| Jason Sams | bd1c3ad | 2009-08-03 16:03:08 -0700 | [diff] [blame] | 125 | native void nAdapter2DBindAllocation(int ad, int alloc); |
| 126 | native void nAdapter2DSetConstraint(int ad, int dim, int value); |
| 127 | native void nAdapter2DData(int ad, int[] d); |
| 128 | native void nAdapter2DData(int ad, float[] d); |
| 129 | native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, int[] d); |
| 130 | native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, float[] d); |
| 131 | native int nAdapter2DCreate(); |
| 132 | |
| Jason Sams | 2253417 | 2009-08-04 16:58:20 -0700 | [diff] [blame] | 133 | 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); |
| Jason Sams | 334ea0c | 2009-08-17 13:56:09 -0700 | [diff] [blame] | 138 | native void nScriptSetType(int type, boolean writable, String name, int slot); |
| Jason Sams | fbf0b9e | 2009-08-13 12:59:04 -0700 | [diff] [blame] | 139 | native void nScriptSetRoot(boolean isRoot); |
| Jason Sams | be2e841 | 2009-09-16 15:04:38 -0700 | [diff] [blame] | 140 | native void nScriptSetInvokable(String name, int slot); |
| 141 | native void nScriptInvoke(int id, int slot); |
| Jason Sams | 2253417 | 2009-08-04 16:58:20 -0700 | [diff] [blame] | 142 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 143 | native void nScriptCBegin(); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 144 | native void nScriptCSetScript(byte[] script, int offset, int length); |
| 145 | native int nScriptCCreate(); |
| Joe Onorato | d7b3774 | 2009-08-09 22:57:44 -0700 | [diff] [blame] | 146 | native void nScriptCAddDefineI32(String name, int value); |
| 147 | native void nScriptCAddDefineF(String name, float value); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 148 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 149 | native void nSamplerBegin(); |
| 150 | native void nSamplerSet(int param, int value); |
| 151 | native int nSamplerCreate(); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 152 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 153 | 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 Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 160 | |
| Jason Sams | ebfb436 | 2009-09-23 13:57:02 -0700 | [diff] [blame] | 161 | native int nProgramRasterCreate(int in, int out, boolean pointSmooth, boolean lineSmooth, boolean pointSprite); |
| 162 | native void nProgramRasterSetLineWidth(int pr, float v); |
| 163 | native void nProgramRasterSetPointSize(int pr, float v); |
| 164 | |
| Jason Sams | 25ffcdc | 2009-08-20 16:10:36 -0700 | [diff] [blame] | 165 | native void nProgramFragmentBegin(int in, int out, boolean pointSpriteEnable); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 166 | native void nProgramFragmentBindTexture(int vpf, int slot, int a); |
| 167 | native void nProgramFragmentBindSampler(int vpf, int slot, int s); |
| Jason Sams | 25ffcdc | 2009-08-20 16:10:36 -0700 | [diff] [blame] | 168 | native void nProgramFragmentSetSlot(int slot, boolean enable, int env, int vt); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 169 | native int nProgramFragmentCreate(); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 170 | |
| Jason Sams | 9bee51c | 2009-08-05 13:57:03 -0700 | [diff] [blame] | 171 | native void nProgramVertexBindAllocation(int pv, int mID); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 172 | native void nProgramVertexBegin(int inID, int outID); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 173 | native void nProgramVertexSetTextureMatrixEnable(boolean enable); |
| 174 | native void nProgramVertexAddLight(int id); |
| 175 | native int nProgramVertexCreate(); |
| Jason Sams | 1fe9b8c | 2009-06-11 14:46:10 -0700 | [diff] [blame] | 176 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 177 | native void nLightBegin(); |
| 178 | native void nLightSetIsMono(boolean isMono); |
| 179 | native void nLightSetIsLocal(boolean isLocal); |
| 180 | native int nLightCreate(); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 181 | native void nLightSetColor(int l, float r, float g, float b); |
| 182 | native void nLightSetPosition(int l, float x, float y, float z); |
| Jason Sams | bba134c | 2009-06-22 15:49:21 -0700 | [diff] [blame] | 183 | |
| Jason Sams | 1bada8c | 2009-08-09 17:01:55 -0700 | [diff] [blame] | 184 | 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 Sams | 40a29e8 | 2009-08-10 14:55:26 -0700 | [diff] [blame] | 188 | native void nAnimationBegin(int attribCount, int keyframeCount); |
| 189 | native void nAnimationAdd(float time, float[] attribs); |
| 190 | native int nAnimationCreate(); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 191 | |
| 192 | private int mDev; |
| 193 | private int mContext; |
| Romain Guy | 650a3eb | 2009-08-31 14:06:43 -0700 | [diff] [blame] | 194 | @SuppressWarnings({"FieldCanBeLocal"}) |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 195 | private Surface mSurface; |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 196 | private MessageThread mMessageThread; |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 197 | |
| Jason Sams | 3c0dfba | 2009-09-27 17:50:38 -0700 | [diff] [blame] | 198 | |
| 199 | Element mElement_USER_U8; |
| 200 | Element mElement_USER_I8; |
| 201 | Element mElement_USER_U16; |
| 202 | Element mElement_USER_I16; |
| 203 | Element mElement_USER_U32; |
| 204 | Element mElement_USER_I32; |
| 205 | Element mElement_USER_FLOAT; |
| 206 | |
| 207 | Element mElement_A_8; |
| 208 | Element mElement_RGB_565; |
| 209 | Element mElement_RGB_888; |
| 210 | Element mElement_RGBA_5551; |
| 211 | Element mElement_RGBA_4444; |
| 212 | Element mElement_RGBA_8888; |
| 213 | |
| 214 | Element mElement_INDEX_16; |
| 215 | Element mElement_XY_F32; |
| 216 | Element mElement_XYZ_F32; |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 217 | |
| 218 | /////////////////////////////////////////////////////////////////////////////////// |
| Jack Palevich | 43702d8 | 2009-05-28 13:38:16 -0700 | [diff] [blame] | 219 | // |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 220 | |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 221 | public static class RSMessage implements Runnable { |
| 222 | protected int[] mData; |
| 223 | protected int mID; |
| 224 | public void run() { |
| 225 | } |
| 226 | } |
| 227 | public RSMessage mMessageCallback = null; |
| 228 | |
| 229 | private static class MessageThread extends Thread { |
| 230 | RenderScript mRS; |
| 231 | boolean mRun = true; |
| 232 | |
| 233 | MessageThread(RenderScript rs) { |
| 234 | super("RSMessageThread"); |
| 235 | mRS = rs; |
| 236 | |
| 237 | } |
| 238 | |
| 239 | public void run() { |
| 240 | // This function is a temporary solution. The final solution will |
| 241 | // used typed allocations where the message id is the type indicator. |
| 242 | int[] rbuf = new int[16]; |
| 243 | mRS.nContextInitToClient(); |
| 244 | while(mRun) { |
| 245 | int msg = mRS.nContextGetMessage(rbuf, true); |
| 246 | if (msg == 0) { |
| 247 | // Should only happen during teardown. |
| 248 | // But we want to avoid starving other threads during |
| 249 | // teardown by yielding until the next line in the destructor |
| 250 | // can execute to set mRun = false |
| 251 | try { |
| 252 | sleep(1, 0); |
| 253 | } catch(InterruptedException e) { |
| 254 | } |
| 255 | } |
| 256 | if(mRS.mMessageCallback != null) { |
| 257 | mRS.mMessageCallback.mData = rbuf; |
| 258 | mRS.mMessageCallback.mID = msg; |
| 259 | mRS.mMessageCallback.run(); |
| 260 | } |
| 261 | //Log.d("rs", "MessageThread msg " + msg + " v1 " + rbuf[0] + " v2 " + rbuf[1] + " v3 " +rbuf[2]); |
| 262 | } |
| 263 | Log.d("rs", "MessageThread exiting."); |
| 264 | } |
| 265 | } |
| 266 | |
| Jason Sams | ebfb436 | 2009-09-23 13:57:02 -0700 | [diff] [blame] | 267 | public RenderScript(Surface sur, boolean useDepth, boolean forceSW) { |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 268 | mSurface = sur; |
| 269 | mDev = nDeviceCreate(); |
| Jason Sams | ebfb436 | 2009-09-23 13:57:02 -0700 | [diff] [blame] | 270 | if(forceSW) { |
| 271 | nDeviceSetConfig(mDev, 0, 1); |
| 272 | } |
| Jason Sams | b13ada5 | 2009-08-25 11:34:49 -0700 | [diff] [blame] | 273 | mContext = nContextCreate(mDev, mSurface, 0, useDepth); |
| Jason Sams | 3c0dfba | 2009-09-27 17:50:38 -0700 | [diff] [blame] | 274 | Element.initPredefined(this); |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 275 | mMessageThread = new MessageThread(this); |
| 276 | mMessageThread.start(); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 277 | } |
| 278 | |
| Jason Sams | f5b4596 | 2009-08-25 14:49:07 -0700 | [diff] [blame] | 279 | public void destroy() { |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 280 | nContextDeinitToClient(); |
| 281 | mMessageThread.mRun = false; |
| 282 | |
| Jason Sams | f5b4596 | 2009-08-25 14:49:07 -0700 | [diff] [blame] | 283 | nContextDestroy(mContext); |
| 284 | mContext = 0; |
| 285 | |
| 286 | nDeviceDestroy(mDev); |
| 287 | mDev = 0; |
| 288 | } |
| Jason Sams | 02fb2cb | 2009-05-28 15:37:57 -0700 | [diff] [blame] | 289 | |
| Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 290 | boolean isAlive() { |
| 291 | return mContext != 0; |
| 292 | } |
| 293 | |
| Jason Sams | 65e7aa5 | 2009-09-24 17:38:20 -0700 | [diff] [blame] | 294 | void pause() { |
| 295 | nContextPause(); |
| 296 | } |
| 297 | |
| 298 | void resume() { |
| 299 | nContextResume(); |
| 300 | } |
| 301 | |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 302 | ////////////////////////////////////////////////////////////////////////////////// |
| Jason Sams | 64676f3 | 2009-07-08 18:01:53 -0700 | [diff] [blame] | 303 | // File |
| 304 | |
| 305 | public class File extends BaseObj { |
| 306 | File(int id) { |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 307 | super(RenderScript.this); |
| Jason Sams | 64676f3 | 2009-07-08 18:01:53 -0700 | [diff] [blame] | 308 | mID = id; |
| 309 | } |
| Jason Sams | 64676f3 | 2009-07-08 18:01:53 -0700 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | public File fileOpen(String s) throws IllegalStateException, IllegalArgumentException |
| 313 | { |
| 314 | if(s.length() < 1) { |
| 315 | throw new IllegalArgumentException("fileOpen does not accept a zero length string."); |
| 316 | } |
| 317 | |
| 318 | try { |
| 319 | byte[] bytes = s.getBytes("UTF-8"); |
| 320 | int id = nFileOpen(bytes); |
| 321 | return new File(id); |
| 322 | } catch (java.io.UnsupportedEncodingException e) { |
| 323 | throw new RuntimeException(e); |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 328 | /////////////////////////////////////////////////////////////////////////////////// |
| 329 | // Root state |
| 330 | |
| Jason Sams | 6b9dec0 | 2009-09-23 16:38:37 -0700 | [diff] [blame] | 331 | private int safeID(BaseObj o) { |
| 332 | if(o != null) { |
| 333 | return o.mID; |
| Jason Sams | d8e4161 | 2009-08-20 17:22:40 -0700 | [diff] [blame] | 334 | } |
| Jason Sams | 6b9dec0 | 2009-09-23 16:38:37 -0700 | [diff] [blame] | 335 | return 0; |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 336 | } |
| 337 | |
| Jason Sams | 6b9dec0 | 2009-09-23 16:38:37 -0700 | [diff] [blame] | 338 | public void contextBindRootScript(Script s) { |
| 339 | nContextBindRootScript(safeID(s)); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 340 | } |
| 341 | |
| Jason Sams | 6b9dec0 | 2009-09-23 16:38:37 -0700 | [diff] [blame] | 342 | public void contextBindProgramFragmentStore(ProgramStore p) { |
| 343 | nContextBindProgramFragmentStore(safeID(p)); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 344 | } |
| 345 | |
| Jason Sams | 6b9dec0 | 2009-09-23 16:38:37 -0700 | [diff] [blame] | 346 | public void contextBindProgramFragment(ProgramFragment p) { |
| 347 | nContextBindProgramFragment(safeID(p)); |
| Jason Sams | ebfb436 | 2009-09-23 13:57:02 -0700 | [diff] [blame] | 348 | } |
| 349 | |
| Jason Sams | 6b9dec0 | 2009-09-23 16:38:37 -0700 | [diff] [blame] | 350 | public void contextBindProgramRaster(ProgramRaster p) { |
| 351 | nContextBindProgramRaster(safeID(p)); |
| 352 | } |
| 353 | |
| 354 | public void contextBindProgramVertex(ProgramVertex p) { |
| 355 | nContextBindProgramVertex(safeID(p)); |
| Jason Sams | 0826a6f | 2009-06-15 19:04:56 -0700 | [diff] [blame] | 356 | } |
| 357 | |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 358 | } |
| 359 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 360 | |