| 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 | |
| Jack Palevich | 43702d8 | 2009-05-28 13:38:16 -0700 | [diff] [blame] | 19 | import java.io.IOException; |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 20 | import java.io.InputStream; |
| Jason Sams | 43ee0685 | 2009-08-12 17:54:11 -0700 | [diff] [blame] | 21 | import java.lang.reflect.Field; |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 22 | |
| 23 | import android.content.res.Resources; |
| Jason Sams | b8c5a84 | 2009-07-31 20:40:47 -0700 | [diff] [blame] | 24 | import android.graphics.Bitmap; |
| Jason Sams | 43ee0685 | 2009-08-12 17:54:11 -0700 | [diff] [blame] | 25 | import android.renderscript.Type; |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 26 | import android.util.Config; |
| 27 | import android.util.Log; |
| 28 | import android.view.Surface; |
| Jack Palevich | 43702d8 | 2009-05-28 13:38:16 -0700 | [diff] [blame] | 29 | |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 30 | |
| Jason Sams | e29d471 | 2009-07-23 15:19:03 -0700 | [diff] [blame] | 31 | /** |
| 32 | * @hide |
| 33 | * |
| 34 | **/ |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 35 | public class RenderScript { |
| Jason Sams | f29ca50 | 2009-06-23 12:22:47 -0700 | [diff] [blame] | 36 | static final String LOG_TAG = "libRS_jni"; |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 37 | private static final boolean DEBUG = false; |
| 38 | private static final boolean LOG_ENABLED = DEBUG ? Config.LOGD : Config.LOGV; |
| 39 | |
| 40 | |
| 41 | |
| Jason Sams | 02fb2cb | 2009-05-28 15:37:57 -0700 | [diff] [blame] | 42 | /* |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 43 | * 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 Sams | dba3ba5 | 2009-07-30 14:56:12 -0700 | [diff] [blame] | 49 | |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 50 | static { |
| 51 | sInitialized = false; |
| 52 | try { |
| Jason Sams | e29d471 | 2009-07-23 15:19:03 -0700 | [diff] [blame] | 53 | System.loadLibrary("rs_jni"); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 54 | _nInit(); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 55 | sInitialized = true; |
| 56 | } catch (UnsatisfiedLinkError e) { |
| 57 | Log.d(LOG_TAG, "RenderScript JNI library not found!"); |
| 58 | } |
| 59 | } |
| 60 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 61 | native int nDeviceCreate(); |
| 62 | native void nDeviceDestroy(int dev); |
| 63 | native int nContextCreate(int dev, Surface sur, int ver); |
| 64 | native void nContextDestroy(int con); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 65 | |
| 66 | //void rsContextBindSampler (uint32_t slot, RsSampler sampler); |
| 67 | //void rsContextBindRootScript (RsScript sampler); |
| 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); |
| Joe Onorato | d7b3774 | 2009-08-09 22:57:44 -0700 | [diff] [blame] | 73 | native void nContextAddDefineI32(String name, int value); |
| 74 | native void nContextAddDefineF(String name, float value); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 75 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 76 | native void nAssignName(int obj, byte[] name); |
| 77 | native int nFileOpen(byte[] name); |
| Jason Sams | 3eaa338e | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 78 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 79 | native void nElementBegin(); |
| 80 | native void nElementAddPredefined(int predef); |
| Jason Sams | 43ee0685 | 2009-08-12 17:54:11 -0700 | [diff] [blame] | 81 | native void nElementAdd(int kind, int type, int norm, int bits, String s); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 82 | native int nElementCreate(); |
| 83 | native int nElementGetPredefined(int predef); |
| 84 | native void nElementDestroy(int obj); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 85 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 86 | native void nTypeBegin(int elementID); |
| 87 | native void nTypeAdd(int dim, int val); |
| 88 | native int nTypeCreate(); |
| 89 | native void nTypeDestroy(int id); |
| Jason Sams | 43ee0685 | 2009-08-12 17:54:11 -0700 | [diff] [blame] | 90 | native void nTypeFinalDestroy(Type t); |
| 91 | native void nTypeSetupFields(Type t, int[] types, int[] bits, Field[] IDs); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 92 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 93 | 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 Sams | fe08d99 | 2009-05-27 14:45:32 -0700 | [diff] [blame] | 98 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 99 | native void nAllocationUploadToTexture(int alloc, int baseMioLevel); |
| 100 | native void nAllocationDestroy(int alloc); |
| 101 | native void nAllocationData(int id, int[] d); |
| 102 | native void nAllocationData(int id, float[] d); |
| 103 | native void nAllocationSubData1D(int id, int off, int count, int[] d); |
| 104 | native void nAllocationSubData1D(int id, int off, int count, float[] d); |
| 105 | native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, int[] d); |
| 106 | native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, float[] d); |
| Jason Sams | 40a29e8 | 2009-08-10 14:55:26 -0700 | [diff] [blame] | 107 | native void nAllocationRead(int id, int[] d); |
| 108 | native void nAllocationRead(int id, float[] d); |
| Jason Sams | 43ee0685 | 2009-08-12 17:54:11 -0700 | [diff] [blame] | 109 | native void nAllocationDataFromObject(int id, Type t, Object o); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 110 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 111 | native void nTriangleMeshDestroy(int id); |
| 112 | native void nTriangleMeshBegin(int vertex, int index); |
| 113 | native void nTriangleMeshAddVertex_XY (float x, float y); |
| 114 | native void nTriangleMeshAddVertex_XYZ (float x, float y, float z); |
| 115 | native void nTriangleMeshAddVertex_XY_ST (float x, float y, float s, float t); |
| 116 | native void nTriangleMeshAddVertex_XYZ_ST (float x, float y, float z, float s, float t); |
| 117 | native void nTriangleMeshAddVertex_XYZ_ST_NORM (float x, float y, float z, float s, float t, float nx, float ny, float nz); |
| 118 | native void nTriangleMeshAddTriangle(int i1, int i2, int i3); |
| 119 | native int nTriangleMeshCreate(); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 120 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 121 | native void nAdapter1DDestroy(int id); |
| 122 | native void nAdapter1DBindAllocation(int ad, int alloc); |
| 123 | native void nAdapter1DSetConstraint(int ad, int dim, int value); |
| 124 | native void nAdapter1DData(int ad, int[] d); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 125 | native void nAdapter1DData(int ad, float[] d); |
| Jason Sams | bd1c3ad | 2009-08-03 16:03:08 -0700 | [diff] [blame] | 126 | native void nAdapter1DSubData(int ad, int off, int count, int[] d); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 127 | native void nAdapter1DSubData(int ad, int off, int count, float[] d); |
| 128 | native int nAdapter1DCreate(); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 129 | |
| Jason Sams | bd1c3ad | 2009-08-03 16:03:08 -0700 | [diff] [blame] | 130 | native void nAdapter2DDestroy(int id); |
| 131 | native void nAdapter2DBindAllocation(int ad, int alloc); |
| 132 | native void nAdapter2DSetConstraint(int ad, int dim, int value); |
| 133 | native void nAdapter2DData(int ad, int[] d); |
| 134 | native void nAdapter2DData(int ad, float[] d); |
| 135 | native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, int[] d); |
| 136 | native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, float[] d); |
| 137 | native int nAdapter2DCreate(); |
| 138 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 139 | native void nScriptDestroy(int script); |
| Jason Sams | 2253417 | 2009-08-04 16:58:20 -0700 | [diff] [blame] | 140 | native void nScriptBindAllocation(int script, int alloc, int slot); |
| 141 | native void nScriptSetClearColor(int script, float r, float g, float b, float a); |
| 142 | native void nScriptSetClearDepth(int script, float depth); |
| 143 | native void nScriptSetClearStencil(int script, int stencil); |
| 144 | native void nScriptSetTimeZone(int script, byte[] timeZone); |
| Jason Sams | fbf0b9e | 2009-08-13 12:59:04 -0700 | [diff] [blame] | 145 | native void nScriptSetType(int type, String name, int slot); |
| 146 | native void nScriptSetRoot(boolean isRoot); |
| Jason Sams | 2253417 | 2009-08-04 16:58:20 -0700 | [diff] [blame] | 147 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 148 | native void nScriptCBegin(); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 149 | native void nScriptCSetScript(byte[] script, int offset, int length); |
| 150 | native int nScriptCCreate(); |
| Joe Onorato | d7b3774 | 2009-08-09 22:57:44 -0700 | [diff] [blame] | 151 | native void nScriptCAddDefineI32(String name, int value); |
| 152 | native void nScriptCAddDefineF(String name, float value); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 153 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 154 | native void nSamplerDestroy(int sampler); |
| 155 | native void nSamplerBegin(); |
| 156 | native void nSamplerSet(int param, int value); |
| 157 | native int nSamplerCreate(); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 158 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 159 | native void nProgramFragmentStoreBegin(int in, int out); |
| 160 | native void nProgramFragmentStoreDepthFunc(int func); |
| 161 | native void nProgramFragmentStoreDepthMask(boolean enable); |
| 162 | native void nProgramFragmentStoreColorMask(boolean r, boolean g, boolean b, boolean a); |
| 163 | native void nProgramFragmentStoreBlendFunc(int src, int dst); |
| 164 | native void nProgramFragmentStoreDither(boolean enable); |
| 165 | native int nProgramFragmentStoreCreate(); |
| 166 | native void nProgramFragmentStoreDestroy(int pgm); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 167 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 168 | native void nProgramFragmentBegin(int in, int out); |
| 169 | native void nProgramFragmentBindTexture(int vpf, int slot, int a); |
| 170 | native void nProgramFragmentBindSampler(int vpf, int slot, int s); |
| 171 | native void nProgramFragmentSetType(int slot, int vt); |
| 172 | native void nProgramFragmentSetEnvMode(int slot, int env); |
| 173 | native void nProgramFragmentSetTexEnable(int slot, boolean enable); |
| 174 | native int nProgramFragmentCreate(); |
| 175 | native void nProgramFragmentDestroy(int pgm); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 176 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 177 | native void nProgramVertexDestroy(int pv); |
| Jason Sams | 9bee51c | 2009-08-05 13:57:03 -0700 | [diff] [blame] | 178 | native void nProgramVertexBindAllocation(int pv, int mID); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 179 | native void nProgramVertexBegin(int inID, int outID); |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 180 | native void nProgramVertexSetTextureMatrixEnable(boolean enable); |
| 181 | native void nProgramVertexAddLight(int id); |
| 182 | native int nProgramVertexCreate(); |
| Jason Sams | 1fe9b8c | 2009-06-11 14:46:10 -0700 | [diff] [blame] | 183 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 184 | native void nLightBegin(); |
| 185 | native void nLightSetIsMono(boolean isMono); |
| 186 | native void nLightSetIsLocal(boolean isLocal); |
| 187 | native int nLightCreate(); |
| 188 | native void nLightDestroy(int l); |
| 189 | native void nLightSetColor(int l, float r, float g, float b); |
| 190 | native void nLightSetPosition(int l, float x, float y, float z); |
| Jason Sams | bba134c | 2009-06-22 15:49:21 -0700 | [diff] [blame] | 191 | |
| Jason Sams | 1bada8c | 2009-08-09 17:01:55 -0700 | [diff] [blame] | 192 | native void nSimpleMeshDestroy(int id); |
| 193 | native int nSimpleMeshCreate(int batchID, int idxID, int[] vtxID, int prim); |
| 194 | native void nSimpleMeshBindVertex(int id, int alloc, int slot); |
| 195 | native void nSimpleMeshBindIndex(int id, int alloc); |
| 196 | |
| Jason Sams | 40a29e8 | 2009-08-10 14:55:26 -0700 | [diff] [blame] | 197 | native void nAnimationDestroy(int id); |
| 198 | native void nAnimationBegin(int attribCount, int keyframeCount); |
| 199 | native void nAnimationAdd(float time, float[] attribs); |
| 200 | native int nAnimationCreate(); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 201 | |
| 202 | private int mDev; |
| 203 | private int mContext; |
| 204 | private Surface mSurface; |
| 205 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 206 | private static boolean mElementsInitialized = false; |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 207 | |
| 208 | /////////////////////////////////////////////////////////////////////////////////// |
| Jack Palevich | 43702d8 | 2009-05-28 13:38:16 -0700 | [diff] [blame] | 209 | // |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 210 | |
| Romain Guy | b3c61e7 | 2009-08-11 17:49:01 -0700 | [diff] [blame] | 211 | public RenderScript(Surface sur) { |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 212 | mSurface = sur; |
| 213 | mDev = nDeviceCreate(); |
| 214 | mContext = nContextCreate(mDev, mSurface, 0); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 215 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 216 | // TODO: This should be protected by a lock |
| 217 | if(!mElementsInitialized) { |
| 218 | Element.init(this); |
| 219 | mElementsInitialized = true; |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 220 | } |
| 221 | } |
| 222 | |
| Jason Sams | 02fb2cb | 2009-05-28 15:37:57 -0700 | [diff] [blame] | 223 | |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 224 | ////////////////////////////////////////////////////////////////////////////////// |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 225 | // Triangle Mesh |
| 226 | |
| 227 | public class TriangleMesh extends BaseObj { |
| 228 | TriangleMesh(int id) { |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 229 | super(RenderScript.this); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 230 | mID = id; |
| 231 | } |
| 232 | |
| 233 | public void destroy() { |
| 234 | nTriangleMeshDestroy(mID); |
| 235 | mID = 0; |
| 236 | } |
| 237 | } |
| 238 | |
| 239 | public void triangleMeshBegin(Element vertex, Element index) { |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 240 | Log.e("rs", "vtx " + vertex.toString() + " " + vertex.mID + " " + vertex.mPredefinedID); |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 241 | nTriangleMeshBegin(vertex.mID, index.mID); |
| 242 | } |
| 243 | |
| 244 | public void triangleMeshAddVertex_XY(float x, float y) { |
| 245 | nTriangleMeshAddVertex_XY(x, y); |
| 246 | } |
| 247 | |
| 248 | public void triangleMeshAddVertex_XYZ(float x, float y, float z) { |
| 249 | nTriangleMeshAddVertex_XYZ(x, y, z); |
| 250 | } |
| 251 | |
| 252 | public void triangleMeshAddVertex_XY_ST(float x, float y, float s, float t) { |
| 253 | nTriangleMeshAddVertex_XY_ST(x, y, s, t); |
| 254 | } |
| 255 | |
| 256 | public void triangleMeshAddVertex_XYZ_ST(float x, float y, float z, float s, float t) { |
| 257 | nTriangleMeshAddVertex_XYZ_ST(x, y, z, s, t); |
| 258 | } |
| 259 | |
| Jason Sams | 0826a6f | 2009-06-15 19:04:56 -0700 | [diff] [blame] | 260 | public void triangleMeshAddVertex_XYZ_ST_NORM(float x, float y, float z, float s, float t, float nx, float ny, float nz) { |
| 261 | nTriangleMeshAddVertex_XYZ_ST_NORM(x, y, z, s, t, nx, ny, nz); |
| 262 | } |
| 263 | |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 264 | public void triangleMeshAddTriangle(int i1, int i2, int i3) { |
| 265 | nTriangleMeshAddTriangle(i1, i2, i3); |
| 266 | } |
| 267 | |
| 268 | public TriangleMesh triangleMeshCreate() { |
| 269 | int id = nTriangleMeshCreate(); |
| 270 | return new TriangleMesh(id); |
| 271 | } |
| 272 | |
| 273 | ////////////////////////////////////////////////////////////////////////////////// |
| Jason Sams | 64676f3 | 2009-07-08 18:01:53 -0700 | [diff] [blame] | 274 | // File |
| 275 | |
| 276 | public class File extends BaseObj { |
| 277 | File(int id) { |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 278 | super(RenderScript.this); |
| Jason Sams | 64676f3 | 2009-07-08 18:01:53 -0700 | [diff] [blame] | 279 | mID = id; |
| 280 | } |
| 281 | |
| 282 | public void destroy() { |
| 283 | //nLightDestroy(mID); |
| 284 | mID = 0; |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | public File fileOpen(String s) throws IllegalStateException, IllegalArgumentException |
| 289 | { |
| 290 | if(s.length() < 1) { |
| 291 | throw new IllegalArgumentException("fileOpen does not accept a zero length string."); |
| 292 | } |
| 293 | |
| 294 | try { |
| 295 | byte[] bytes = s.getBytes("UTF-8"); |
| 296 | int id = nFileOpen(bytes); |
| 297 | return new File(id); |
| 298 | } catch (java.io.UnsupportedEncodingException e) { |
| 299 | throw new RuntimeException(e); |
| 300 | } |
| 301 | } |
| 302 | |
| 303 | |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 304 | /////////////////////////////////////////////////////////////////////////////////// |
| 305 | // Root state |
| 306 | |
| 307 | public void contextBindRootScript(Script s) { |
| 308 | nContextBindRootScript(s.mID); |
| 309 | } |
| 310 | |
| 311 | //public void contextBindSampler(Sampler s, int slot) { |
| 312 | //nContextBindSampler(s.mID); |
| 313 | //} |
| 314 | |
| Jason Sams | 2253417 | 2009-08-04 16:58:20 -0700 | [diff] [blame] | 315 | public void contextBindProgramFragmentStore(ProgramStore pfs) { |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 316 | nContextBindProgramFragmentStore(pfs.mID); |
| 317 | } |
| 318 | |
| 319 | public void contextBindProgramFragment(ProgramFragment pf) { |
| 320 | nContextBindProgramFragment(pf.mID); |
| 321 | } |
| 322 | |
| Jason Sams | 0826a6f | 2009-06-15 19:04:56 -0700 | [diff] [blame] | 323 | public void contextBindProgramVertex(ProgramVertex pf) { |
| 324 | nContextBindProgramVertex(pf.mID); |
| 325 | } |
| 326 | |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 327 | } |
| 328 | |
| Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 329 | |