| 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 | 3bc47d4 | 2009-11-12 15:10:25 -0800 | [diff] [blame] | 33 | static final String LOG_TAG = "RenderScript_jni"; |
| Jason Sams | 704ff64 | 2010-02-09 16:05:07 -0800 | [diff] [blame] | 34 | protected static final boolean DEBUG = false; |
| Romain Guy | 650a3eb | 2009-08-31 14:06:43 -0700 | [diff] [blame] | 35 | @SuppressWarnings({"UnusedDeclaration", "deprecation"}) |
| Jason Sams | 704ff64 | 2010-02-09 16:05:07 -0800 | [diff] [blame] | 36 | protected static final boolean LOG_ENABLED = DEBUG ? Config.LOGD : Config.LOGV; |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 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"}) |
| Jason Sams | 704ff64 | 2010-02-09 16:05:07 -0800 | [diff] [blame] | 45 | protected static boolean sInitialized; |
| 46 | native protected static void _nInit(); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 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 | 704ff64 | 2010-02-09 16:05:07 -0800 | [diff] [blame] | 65 | native int nContextCreateGL(int dev, int ver, boolean useDepth); |
| 66 | native int nContextCreate(int dev, int ver); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 67 | native void nContextDestroy(int con); |
| Jason Sams | 3bc47d4 | 2009-11-12 15:10:25 -0800 | [diff] [blame] | 68 | native void nContextSetSurface(int w, int h, Surface sur); |
| Jason Sams | 7d787b4 | 2009-11-15 12:14:26 -0800 | [diff] [blame] | 69 | native void nContextSetPriority(int p); |
| Jason Sams | 715333b | 2009-11-17 17:26:46 -0800 | [diff] [blame] | 70 | native void nContextDump(int bits); |
| Jason Sams | 96ed4cf | 2010-06-15 12:15:57 -0700 | [diff] [blame] | 71 | native void nContextFinish(); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 72 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 73 | native void nContextBindRootScript(int script); |
| 74 | native void nContextBindSampler(int sampler, int slot); |
| Jason Sams | 54db59c | 2010-05-13 18:30:11 -0700 | [diff] [blame] | 75 | native void nContextBindProgramStore(int pfs); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 76 | native void nContextBindProgramFragment(int pf); |
| 77 | native void nContextBindProgramVertex(int pf); |
| Jason Sams | ebfb436 | 2009-09-23 13:57:02 -0700 | [diff] [blame] | 78 | native void nContextBindProgramRaster(int pr); |
| Jason Sams | 65e7aa5 | 2009-09-24 17:38:20 -0700 | [diff] [blame] | 79 | native void nContextPause(); |
| 80 | native void nContextResume(); |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 81 | native int nContextGetMessage(int[] data, boolean wait); |
| 82 | native void nContextInitToClient(); |
| 83 | native void nContextDeinitToClient(); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 84 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 85 | native void nAssignName(int obj, byte[] name); |
| Alex Sakhartchouk | fb10c16 | 2010-08-04 14:45:48 -0700 | [diff] [blame] | 86 | native String nGetName(int obj); |
| Jason Sams | 7ce033d | 2009-08-18 14:14:24 -0700 | [diff] [blame] | 87 | native void nObjDestroy(int id); |
| Jason Sams | 730ee65 | 2009-08-18 17:07:09 -0700 | [diff] [blame] | 88 | native void nObjDestroyOOB(int id); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 89 | native int nFileOpen(byte[] name); |
| Jason Sams | 3eaa338e | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 90 | |
| Jason Sams | 718cd1f | 2009-12-23 14:35:29 -0800 | [diff] [blame] | 91 | |
| 92 | native int nElementCreate(int type, int kind, boolean norm, int vecSize); |
| 93 | native int nElementCreate2(int[] elements, String[] names); |
| Alex Sakhartchouk | dfac814 | 2010-07-15 11:33:03 -0700 | [diff] [blame] | 94 | native void nElementGetNativeData(int id, int[] elementData); |
| 95 | native void nElementGetSubElements(int id, int[] IDs, String[] names); |
| 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 void nTypeBegin(int elementID); |
| 98 | native void nTypeAdd(int dim, int val); |
| 99 | native int nTypeCreate(); |
| Jason Sams | 43ee0685 | 2009-08-12 17:54:11 -0700 | [diff] [blame] | 100 | native void nTypeFinalDestroy(Type t); |
| 101 | native void nTypeSetupFields(Type t, int[] types, int[] bits, Field[] IDs); |
| Alex Sakhartchouk | dfac814 | 2010-07-15 11:33:03 -0700 | [diff] [blame] | 102 | native void nTypeGetNativeData(int id, int[] typeData); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 103 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 104 | native int nAllocationCreateTyped(int type); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 105 | native int nAllocationCreateFromBitmap(int dstFmt, boolean genMips, Bitmap bmp); |
| Jason Sams | 8a64743 | 2010-03-01 15:31:04 -0800 | [diff] [blame] | 106 | native int nAllocationCreateBitmapRef(int type, Bitmap bmp); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 107 | native int nAllocationCreateFromBitmapBoxed(int dstFmt, boolean genMips, Bitmap bmp); |
| Romain Guy | 650a3eb | 2009-08-31 14:06:43 -0700 | [diff] [blame] | 108 | native int nAllocationCreateFromAssetStream(int dstFmt, boolean genMips, int assetStream); |
| Jason Sams | fe08d99 | 2009-05-27 14:45:32 -0700 | [diff] [blame] | 109 | |
| Jason Sams | c2908e6 | 2010-02-23 17:44:28 -0800 | [diff] [blame] | 110 | native void nAllocationUploadToTexture(int alloc, boolean genMips, int baseMioLevel); |
| Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 111 | native void nAllocationUploadToBufferObject(int alloc); |
| Jason Sams | 768bc02 | 2009-09-21 19:41:04 -0700 | [diff] [blame] | 112 | |
| Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 113 | 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] | 114 | native void nAllocationSubData1D(int id, int off, int count, short[] d, int sizeBytes); |
| 115 | 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] | 116 | 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] | 117 | |
| Jason Sams | 07ae406 | 2009-08-27 20:23:34 -0700 | [diff] [blame] | 118 | native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, int[] d, int sizeBytes); |
| 119 | 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] | 120 | native void nAllocationRead(int id, int[] d); |
| 121 | native void nAllocationRead(int id, float[] d); |
| Jason Sams | 2525a81 | 2009-09-03 15:43:13 -0700 | [diff] [blame] | 122 | native void nAllocationSubDataFromObject(int id, Type t, int offset, Object o); |
| Jason Sams | 5f43fd2 | 2009-09-15 12:39:22 -0700 | [diff] [blame] | 123 | native void nAllocationSubReadFromObject(int id, Type t, int offset, Object o); |
| Alex Sakhartchouk | dfac814 | 2010-07-15 11:33:03 -0700 | [diff] [blame] | 124 | native int nAllocationGetType(int id); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 125 | |
| Alex Sakhartchouk | aae74ad | 2010-06-04 10:06:50 -0700 | [diff] [blame] | 126 | native int nFileA3DCreateFromAssetStream(int assetStream); |
| 127 | native int nFileA3DGetNumIndexEntries(int fileA3D); |
| 128 | native void nFileA3DGetIndexEntries(int fileA3D, int numEntries, int[] IDs, String[] names); |
| 129 | native int nFileA3DGetEntryByIndex(int fileA3D, int index); |
| 130 | |
| Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 131 | native int nFontCreateFromFile(String fileName, int size, int dpi); |
| 132 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 133 | native void nAdapter1DBindAllocation(int ad, int alloc); |
| 134 | native void nAdapter1DSetConstraint(int ad, int dim, int value); |
| 135 | native void nAdapter1DData(int ad, int[] d); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 136 | native void nAdapter1DData(int ad, float[] d); |
| Jason Sams | bd1c3ad | 2009-08-03 16:03:08 -0700 | [diff] [blame] | 137 | native void nAdapter1DSubData(int ad, int off, int count, int[] d); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 138 | native void nAdapter1DSubData(int ad, int off, int count, float[] d); |
| 139 | native int nAdapter1DCreate(); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 140 | |
| Jason Sams | bd1c3ad | 2009-08-03 16:03:08 -0700 | [diff] [blame] | 141 | native void nAdapter2DBindAllocation(int ad, int alloc); |
| 142 | native void nAdapter2DSetConstraint(int ad, int dim, int value); |
| 143 | native void nAdapter2DData(int ad, int[] d); |
| 144 | native void nAdapter2DData(int ad, float[] d); |
| 145 | native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, int[] d); |
| 146 | native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, float[] d); |
| 147 | native int nAdapter2DCreate(); |
| 148 | |
| Jason Sams | 2253417 | 2009-08-04 16:58:20 -0700 | [diff] [blame] | 149 | native void nScriptBindAllocation(int script, int alloc, int slot); |
| Jason Sams | 2253417 | 2009-08-04 16:58:20 -0700 | [diff] [blame] | 150 | native void nScriptSetTimeZone(int script, byte[] timeZone); |
| Jason Sams | be2e841 | 2009-09-16 15:04:38 -0700 | [diff] [blame] | 151 | native void nScriptInvoke(int id, int slot); |
| Jason Sams | 4d33993 | 2010-05-11 14:03:58 -0700 | [diff] [blame] | 152 | native void nScriptInvokeV(int id, int slot, byte[] params); |
| 153 | native void nScriptSetVarI(int id, int slot, int val); |
| 154 | native void nScriptSetVarF(int id, int slot, float val); |
| 155 | native void nScriptSetVarV(int id, int slot, byte[] val); |
| Jason Sams | 2253417 | 2009-08-04 16:58:20 -0700 | [diff] [blame] | 156 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 157 | native void nScriptCBegin(); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 158 | native void nScriptCSetScript(byte[] script, int offset, int length); |
| 159 | native int nScriptCCreate(); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 160 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 161 | native void nSamplerBegin(); |
| 162 | native void nSamplerSet(int param, int value); |
| 163 | native int nSamplerCreate(); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 164 | |
| Jason Sams | 54db59c | 2010-05-13 18:30:11 -0700 | [diff] [blame] | 165 | native void nProgramStoreBegin(int in, int out); |
| 166 | native void nProgramStoreDepthFunc(int func); |
| 167 | native void nProgramStoreDepthMask(boolean enable); |
| 168 | native void nProgramStoreColorMask(boolean r, boolean g, boolean b, boolean a); |
| 169 | native void nProgramStoreBlendFunc(int src, int dst); |
| 170 | native void nProgramStoreDither(boolean enable); |
| 171 | native int nProgramStoreCreate(); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 172 | |
| Alex Sakhartchouk | 80a4c2c | 2010-07-12 15:50:32 -0700 | [diff] [blame] | 173 | native int nProgramRasterCreate(boolean pointSmooth, boolean lineSmooth, boolean pointSprite); |
| Jason Sams | ebfb436 | 2009-09-23 13:57:02 -0700 | [diff] [blame] | 174 | native void nProgramRasterSetLineWidth(int pr, float v); |
| Alex Sakhartchouk | 80a4c2c | 2010-07-12 15:50:32 -0700 | [diff] [blame] | 175 | native void nProgramRasterSetCullMode(int pr, int mode); |
| Jason Sams | ebfb436 | 2009-09-23 13:57:02 -0700 | [diff] [blame] | 176 | |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 177 | native void nProgramBindConstants(int pv, int slot, int mID); |
| Jason Sams | 68afd01 | 2009-12-17 16:55:08 -0800 | [diff] [blame] | 178 | native void nProgramBindTexture(int vpf, int slot, int a); |
| 179 | native void nProgramBindSampler(int vpf, int slot, int s); |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 180 | |
| Jason Sams | 68afd01 | 2009-12-17 16:55:08 -0800 | [diff] [blame] | 181 | native int nProgramFragmentCreate(int[] params); |
| Jason Sams | 7e5ab3b | 2009-12-15 13:27:04 -0800 | [diff] [blame] | 182 | native int nProgramFragmentCreate2(String shader, int[] params); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 183 | |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 184 | native int nProgramVertexCreate(boolean texMat); |
| 185 | native int nProgramVertexCreate2(String shader, int[] params); |
| Jason Sams | 1fe9b8c | 2009-06-11 14:46:10 -0700 | [diff] [blame] | 186 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 187 | native void nLightBegin(); |
| 188 | native void nLightSetIsMono(boolean isMono); |
| 189 | native void nLightSetIsLocal(boolean isLocal); |
| 190 | native int nLightCreate(); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 191 | native void nLightSetColor(int l, float r, float g, float b); |
| 192 | native void nLightSetPosition(int l, float x, float y, float z); |
| Jason Sams | bba134c | 2009-06-22 15:49:21 -0700 | [diff] [blame] | 193 | |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 194 | native int nMeshCreate(int vtxCount, int indexCount); |
| 195 | native void nMeshBindVertex(int id, int alloc, int slot); |
| 196 | native void nMeshBindIndex(int id, int alloc, int prim, int slot); |
| Alex Sakhartchouk | 80a4c2c | 2010-07-12 15:50:32 -0700 | [diff] [blame] | 197 | native int nMeshGetVertexBufferCount(int id); |
| 198 | native int nMeshGetIndexCount(int id); |
| 199 | native void nMeshGetVertices(int id, int[] vtxIds, int vtxIdCount); |
| 200 | native void nMeshGetIndices(int id, int[] idxIds, int[] primitives, int vtxIdCount); |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 201 | |
| Jason Sams | 40a29e8 | 2009-08-10 14:55:26 -0700 | [diff] [blame] | 202 | native void nAnimationBegin(int attribCount, int keyframeCount); |
| 203 | native void nAnimationAdd(float time, float[] attribs); |
| 204 | native int nAnimationCreate(); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 205 | |
| Jason Sams | 704ff64 | 2010-02-09 16:05:07 -0800 | [diff] [blame] | 206 | protected int mDev; |
| 207 | protected int mContext; |
| Romain Guy | 650a3eb | 2009-08-31 14:06:43 -0700 | [diff] [blame] | 208 | @SuppressWarnings({"FieldCanBeLocal"}) |
| Jason Sams | 704ff64 | 2010-02-09 16:05:07 -0800 | [diff] [blame] | 209 | protected MessageThread mMessageThread; |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 210 | |
| Jason Sams | 8cb39de | 2010-06-01 15:47:01 -0700 | [diff] [blame] | 211 | Element mElement_U8; |
| 212 | Element mElement_I8; |
| 213 | Element mElement_U16; |
| 214 | Element mElement_I16; |
| 215 | Element mElement_U32; |
| 216 | Element mElement_I32; |
| 217 | Element mElement_F32; |
| Jason Sams | f110d4b | 2010-06-21 17:42:41 -0700 | [diff] [blame] | 218 | Element mElement_BOOLEAN; |
| Jason Sams | 3c0dfba | 2009-09-27 17:50:38 -0700 | [diff] [blame] | 219 | |
| Jason Sams | 8cb39de | 2010-06-01 15:47:01 -0700 | [diff] [blame] | 220 | Element mElement_ELEMENT; |
| 221 | Element mElement_TYPE; |
| 222 | Element mElement_ALLOCATION; |
| 223 | Element mElement_SAMPLER; |
| 224 | Element mElement_SCRIPT; |
| 225 | Element mElement_MESH; |
| 226 | Element mElement_PROGRAM_FRAGMENT; |
| 227 | Element mElement_PROGRAM_VERTEX; |
| 228 | Element mElement_PROGRAM_RASTER; |
| 229 | Element mElement_PROGRAM_STORE; |
| Jason Sams | a70f416 | 2010-03-26 15:33:42 -0700 | [diff] [blame] | 230 | |
| Jason Sams | 3c0dfba | 2009-09-27 17:50:38 -0700 | [diff] [blame] | 231 | Element mElement_A_8; |
| 232 | Element mElement_RGB_565; |
| 233 | Element mElement_RGB_888; |
| 234 | Element mElement_RGBA_5551; |
| 235 | Element mElement_RGBA_4444; |
| 236 | Element mElement_RGBA_8888; |
| 237 | |
| Jason Sams | 8cb39de | 2010-06-01 15:47:01 -0700 | [diff] [blame] | 238 | Element mElement_FLOAT_2; |
| 239 | Element mElement_FLOAT_3; |
| 240 | Element mElement_FLOAT_4; |
| 241 | Element mElement_UCHAR_4; |
| Jason Sams | 7d787b4 | 2009-11-15 12:14:26 -0800 | [diff] [blame] | 242 | |
| Jason Sams | 4d33993 | 2010-05-11 14:03:58 -0700 | [diff] [blame] | 243 | Sampler mSampler_CLAMP_NEAREST; |
| 244 | Sampler mSampler_CLAMP_LINEAR; |
| 245 | Sampler mSampler_CLAMP_LINEAR_MIP_LINEAR; |
| 246 | Sampler mSampler_WRAP_NEAREST; |
| 247 | Sampler mSampler_WRAP_LINEAR; |
| 248 | Sampler mSampler_WRAP_LINEAR_MIP_LINEAR; |
| 249 | |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 250 | /////////////////////////////////////////////////////////////////////////////////// |
| Jack Palevich | 43702d8 | 2009-05-28 13:38:16 -0700 | [diff] [blame] | 251 | // |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 252 | |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 253 | public static class RSMessage implements Runnable { |
| 254 | protected int[] mData; |
| 255 | protected int mID; |
| 256 | public void run() { |
| 257 | } |
| 258 | } |
| 259 | public RSMessage mMessageCallback = null; |
| 260 | |
| Jason Sams | 7d787b4 | 2009-11-15 12:14:26 -0800 | [diff] [blame] | 261 | public enum Priority { |
| 262 | LOW (5), //ANDROID_PRIORITY_BACKGROUND + 5 |
| 263 | NORMAL (-4); //ANDROID_PRIORITY_DISPLAY |
| 264 | |
| 265 | int mID; |
| 266 | Priority(int id) { |
| 267 | mID = id; |
| 268 | } |
| 269 | } |
| 270 | |
| Jason Sams | 771bebb | 2009-12-07 12:40:12 -0800 | [diff] [blame] | 271 | void validate() { |
| 272 | if (mContext == 0) { |
| 273 | throw new IllegalStateException("Calling RS with no Context active."); |
| 274 | } |
| 275 | } |
| 276 | |
| Jason Sams | 7d787b4 | 2009-11-15 12:14:26 -0800 | [diff] [blame] | 277 | public void contextSetPriority(Priority p) { |
| Jason Sams | 5dbfe93 | 2010-01-27 14:41:43 -0800 | [diff] [blame] | 278 | validate(); |
| Jason Sams | 7d787b4 | 2009-11-15 12:14:26 -0800 | [diff] [blame] | 279 | nContextSetPriority(p.mID); |
| 280 | } |
| 281 | |
| Jason Sams | 704ff64 | 2010-02-09 16:05:07 -0800 | [diff] [blame] | 282 | protected static class MessageThread extends Thread { |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 283 | RenderScript mRS; |
| 284 | boolean mRun = true; |
| 285 | |
| 286 | MessageThread(RenderScript rs) { |
| 287 | super("RSMessageThread"); |
| 288 | mRS = rs; |
| 289 | |
| 290 | } |
| 291 | |
| 292 | public void run() { |
| 293 | // This function is a temporary solution. The final solution will |
| 294 | // used typed allocations where the message id is the type indicator. |
| 295 | int[] rbuf = new int[16]; |
| 296 | mRS.nContextInitToClient(); |
| 297 | while(mRun) { |
| 298 | int msg = mRS.nContextGetMessage(rbuf, true); |
| 299 | if (msg == 0) { |
| 300 | // Should only happen during teardown. |
| 301 | // But we want to avoid starving other threads during |
| 302 | // teardown by yielding until the next line in the destructor |
| 303 | // can execute to set mRun = false |
| 304 | try { |
| 305 | sleep(1, 0); |
| 306 | } catch(InterruptedException e) { |
| 307 | } |
| 308 | } |
| 309 | if(mRS.mMessageCallback != null) { |
| 310 | mRS.mMessageCallback.mData = rbuf; |
| 311 | mRS.mMessageCallback.mID = msg; |
| 312 | mRS.mMessageCallback.run(); |
| 313 | } |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 314 | } |
| Jason Sams | 3bc47d4 | 2009-11-12 15:10:25 -0800 | [diff] [blame] | 315 | Log.d(LOG_TAG, "MessageThread exiting."); |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 316 | } |
| 317 | } |
| 318 | |
| Jason Sams | 704ff64 | 2010-02-09 16:05:07 -0800 | [diff] [blame] | 319 | protected RenderScript() { |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 320 | } |
| 321 | |
| Jason Sams | 704ff64 | 2010-02-09 16:05:07 -0800 | [diff] [blame] | 322 | public static RenderScript create() { |
| 323 | RenderScript rs = new RenderScript(); |
| 324 | |
| 325 | rs.mDev = rs.nDeviceCreate(); |
| 326 | rs.mContext = rs.nContextCreate(rs.mDev, 0); |
| 327 | rs.mMessageThread = new MessageThread(rs); |
| 328 | rs.mMessageThread.start(); |
| 329 | Element.initPredefined(rs); |
| 330 | return rs; |
| Jason Sams | efd9b6fb | 2009-11-03 13:58:36 -0800 | [diff] [blame] | 331 | } |
| 332 | |
| Jason Sams | 715333b | 2009-11-17 17:26:46 -0800 | [diff] [blame] | 333 | public void contextDump(int bits) { |
| Jason Sams | 5dbfe93 | 2010-01-27 14:41:43 -0800 | [diff] [blame] | 334 | validate(); |
| Jason Sams | 715333b | 2009-11-17 17:26:46 -0800 | [diff] [blame] | 335 | nContextDump(bits); |
| 336 | } |
| 337 | |
| Jason Sams | 96ed4cf | 2010-06-15 12:15:57 -0700 | [diff] [blame] | 338 | public void finish() { |
| 339 | nContextFinish(); |
| 340 | } |
| 341 | |
| Jason Sams | f5b4596 | 2009-08-25 14:49:07 -0700 | [diff] [blame] | 342 | public void destroy() { |
| Jason Sams | 5dbfe93 | 2010-01-27 14:41:43 -0800 | [diff] [blame] | 343 | validate(); |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 344 | nContextDeinitToClient(); |
| 345 | mMessageThread.mRun = false; |
| 346 | |
| Jason Sams | f5b4596 | 2009-08-25 14:49:07 -0700 | [diff] [blame] | 347 | nContextDestroy(mContext); |
| 348 | mContext = 0; |
| 349 | |
| 350 | nDeviceDestroy(mDev); |
| 351 | mDev = 0; |
| 352 | } |
| Jason Sams | 02fb2cb | 2009-05-28 15:37:57 -0700 | [diff] [blame] | 353 | |
| Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 354 | boolean isAlive() { |
| 355 | return mContext != 0; |
| 356 | } |
| 357 | |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 358 | /////////////////////////////////////////////////////////////////////////////////// |
| 359 | // Root state |
| 360 | |
| Jason Sams | 704ff64 | 2010-02-09 16:05:07 -0800 | [diff] [blame] | 361 | protected int safeID(BaseObj o) { |
| Jason Sams | 6b9dec0 | 2009-09-23 16:38:37 -0700 | [diff] [blame] | 362 | if(o != null) { |
| 363 | return o.mID; |
| Jason Sams | d8e4161 | 2009-08-20 17:22:40 -0700 | [diff] [blame] | 364 | } |
| Jason Sams | 6b9dec0 | 2009-09-23 16:38:37 -0700 | [diff] [blame] | 365 | return 0; |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 366 | } |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 367 | } |
| 368 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 369 | |
| Alex Sakhartchouk | 80a4c2c | 2010-07-12 15:50:32 -0700 | [diff] [blame] | 370 | |