blob: eff0fbb58718872f926246f078bc8d523ccb8fbe [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
Jason Sams43ee06852009-08-12 17:54:11 -070019import java.lang.reflect.Field;
Jason Sams36e612a2009-07-31 16:26:13 -070020
Jason Samsb8c5a842009-07-31 20:40:47 -070021import android.graphics.Bitmap;
Romain Guy650a3eb2009-08-31 14:06:43 -070022import android.graphics.BitmapFactory;
Jason Sams36e612a2009-07-31 16:26:13 -070023import android.util.Config;
24import android.util.Log;
25import android.view.Surface;
Jack Palevich43702d82009-05-28 13:38:16 -070026
Jack Palevich60aa3ea2009-05-26 13:45:08 -070027
Jason Samse29d4712009-07-23 15:19:03 -070028/**
29 * @hide
30 *
31 **/
Jack Palevich60aa3ea2009-05-26 13:45:08 -070032public class RenderScript {
Jason Sams3bc47d42009-11-12 15:10:25 -080033 static final String LOG_TAG = "RenderScript_jni";
Jack Palevich60aa3ea2009-05-26 13:45:08 -070034 private static final boolean DEBUG = false;
Romain Guy650a3eb2009-08-31 14:06:43 -070035 @SuppressWarnings({"UnusedDeclaration", "deprecation"})
Jack Palevich60aa3ea2009-05-26 13:45:08 -070036 private static final boolean LOG_ENABLED = DEBUG ? Config.LOGD : Config.LOGV;
Jason Sams3bc47d42009-11-12 15:10:25 -080037 int mWidth;
38 int mHeight;
Jack Palevich60aa3ea2009-05-26 13:45:08 -070039
40
41
Jason Sams02fb2cb2009-05-28 15:37:57 -070042 /*
Jack Palevich60aa3ea2009-05-26 13:45:08 -070043 * We use a class initializer to allow the native code to cache some
44 * field offsets.
45 */
Romain Guy650a3eb2009-08-31 14:06:43 -070046 @SuppressWarnings({"FieldCanBeLocal", "UnusedDeclaration"})
Jack Palevich60aa3ea2009-05-26 13:45:08 -070047 private static boolean sInitialized;
48 native private static void _nInit();
49
Jason Samsdba3ba52009-07-30 14:56:12 -070050
Jack Palevich60aa3ea2009-05-26 13:45:08 -070051 static {
52 sInitialized = false;
53 try {
Jason Samse29d4712009-07-23 15:19:03 -070054 System.loadLibrary("rs_jni");
Jack Palevich60aa3ea2009-05-26 13:45:08 -070055 _nInit();
Jack Palevich60aa3ea2009-05-26 13:45:08 -070056 sInitialized = true;
57 } catch (UnsatisfiedLinkError e) {
58 Log.d(LOG_TAG, "RenderScript JNI library not found!");
59 }
60 }
61
Jason Samsea84a7c2009-09-04 14:42:41 -070062 native void nInitElements(int a8, int rgba4444, int rgba8888, int rgb565);
63
Jason Sams36e612a2009-07-31 16:26:13 -070064 native int nDeviceCreate();
65 native void nDeviceDestroy(int dev);
Jason Samsebfb4362009-09-23 13:57:02 -070066 native void nDeviceSetConfig(int dev, int param, int value);
Jason Sams3bc47d42009-11-12 15:10:25 -080067 native int nContextCreate(int dev, int ver, boolean useDepth);
Jason Sams36e612a2009-07-31 16:26:13 -070068 native void nContextDestroy(int con);
Jason Sams3bc47d42009-11-12 15:10:25 -080069 native void nContextSetSurface(int w, int h, Surface sur);
Jason Sams7d787b42009-11-15 12:14:26 -080070 native void nContextSetPriority(int p);
Jason Sams715333b2009-11-17 17:26:46 -080071 native void nContextDump(int bits);
Jack Palevich60aa3ea2009-05-26 13:45:08 -070072
Jason Sams36e612a2009-07-31 16:26:13 -070073 native void nContextBindRootScript(int script);
74 native void nContextBindSampler(int sampler, int slot);
75 native void nContextBindProgramFragmentStore(int pfs);
76 native void nContextBindProgramFragment(int pf);
77 native void nContextBindProgramVertex(int pf);
Jason Samsebfb4362009-09-23 13:57:02 -070078 native void nContextBindProgramRaster(int pr);
Joe Onoratod7b37742009-08-09 22:57:44 -070079 native void nContextAddDefineI32(String name, int value);
80 native void nContextAddDefineF(String name, float value);
Jason Sams65e7aa52009-09-24 17:38:20 -070081 native void nContextPause();
82 native void nContextResume();
Jason Sams516c3192009-10-06 13:58:47 -070083 native int nContextGetMessage(int[] data, boolean wait);
84 native void nContextInitToClient();
85 native void nContextDeinitToClient();
Jack Palevich60aa3ea2009-05-26 13:45:08 -070086
Jason Sams36e612a2009-07-31 16:26:13 -070087 native void nAssignName(int obj, byte[] name);
Jason Sams7ce033d2009-08-18 14:14:24 -070088 native void nObjDestroy(int id);
Jason Sams730ee652009-08-18 17:07:09 -070089 native void nObjDestroyOOB(int id);
Jason Sams36e612a2009-07-31 16:26:13 -070090 native int nFileOpen(byte[] name);
Jason Sams3eaa338e2009-06-10 15:04:38 -070091
Jason Sams36e612a2009-07-31 16:26:13 -070092 native void nElementBegin();
Jason Sams768bc022009-09-21 19:41:04 -070093 native void nElementAdd(int kind, int type, boolean norm, int bits, String s);
Jason Sams36e612a2009-07-31 16:26:13 -070094 native int nElementCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -070095
Jason Sams36e612a2009-07-31 16:26:13 -070096 native void nTypeBegin(int elementID);
97 native void nTypeAdd(int dim, int val);
98 native int nTypeCreate();
Jason Sams43ee06852009-08-12 17:54:11 -070099 native void nTypeFinalDestroy(Type t);
100 native void nTypeSetupFields(Type t, int[] types, int[] bits, Field[] IDs);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700101
Jason Sams36e612a2009-07-31 16:26:13 -0700102 native int nAllocationCreateTyped(int type);
Jason Sams36e612a2009-07-31 16:26:13 -0700103 native int nAllocationCreateFromBitmap(int dstFmt, boolean genMips, Bitmap bmp);
104 native int nAllocationCreateFromBitmapBoxed(int dstFmt, boolean genMips, Bitmap bmp);
Romain Guy650a3eb2009-08-31 14:06:43 -0700105 native int nAllocationCreateFromAssetStream(int dstFmt, boolean genMips, int assetStream);
Jason Samsfe08d992009-05-27 14:45:32 -0700106
Jason Sams36e612a2009-07-31 16:26:13 -0700107 native void nAllocationUploadToTexture(int alloc, int baseMioLevel);
Jason Sams07ae4062009-08-27 20:23:34 -0700108 native void nAllocationUploadToBufferObject(int alloc);
Jason Sams768bc022009-09-21 19:41:04 -0700109
Jason Sams07ae4062009-08-27 20:23:34 -0700110 native void nAllocationSubData1D(int id, int off, int count, int[] d, int sizeBytes);
Jason Sams768bc022009-09-21 19:41:04 -0700111 native void nAllocationSubData1D(int id, int off, int count, short[] d, int sizeBytes);
112 native void nAllocationSubData1D(int id, int off, int count, byte[] d, int sizeBytes);
Jason Sams07ae4062009-08-27 20:23:34 -0700113 native void nAllocationSubData1D(int id, int off, int count, float[] d, int sizeBytes);
Jason Sams768bc022009-09-21 19:41:04 -0700114
Jason Sams07ae4062009-08-27 20:23:34 -0700115 native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, int[] d, int sizeBytes);
116 native void nAllocationSubData2D(int id, int xoff, int yoff, int w, int h, float[] d, int sizeBytes);
Jason Sams40a29e82009-08-10 14:55:26 -0700117 native void nAllocationRead(int id, int[] d);
118 native void nAllocationRead(int id, float[] d);
Jason Sams2525a812009-09-03 15:43:13 -0700119 native void nAllocationSubDataFromObject(int id, Type t, int offset, Object o);
Jason Sams5f43fd22009-09-15 12:39:22 -0700120 native void nAllocationSubReadFromObject(int id, Type t, int offset, Object o);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700121
Jason Sams36e612a2009-07-31 16:26:13 -0700122 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 Sams36e612a2009-07-31 16:26:13 -0700125 native void nAdapter1DData(int ad, float[] d);
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700126 native void nAdapter1DSubData(int ad, int off, int count, int[] d);
Jason Sams36e612a2009-07-31 16:26:13 -0700127 native void nAdapter1DSubData(int ad, int off, int count, float[] d);
128 native int nAdapter1DCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700129
Jason Samsbd1c3ad2009-08-03 16:03:08 -0700130 native void nAdapter2DBindAllocation(int ad, int alloc);
131 native void nAdapter2DSetConstraint(int ad, int dim, int value);
132 native void nAdapter2DData(int ad, int[] d);
133 native void nAdapter2DData(int ad, float[] d);
134 native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, int[] d);
135 native void nAdapter2DSubData(int ad, int xoff, int yoff, int w, int h, float[] d);
136 native int nAdapter2DCreate();
137
Jason Sams22534172009-08-04 16:58:20 -0700138 native void nScriptBindAllocation(int script, int alloc, int slot);
139 native void nScriptSetClearColor(int script, float r, float g, float b, float a);
140 native void nScriptSetClearDepth(int script, float depth);
141 native void nScriptSetClearStencil(int script, int stencil);
142 native void nScriptSetTimeZone(int script, byte[] timeZone);
Jason Sams334ea0c2009-08-17 13:56:09 -0700143 native void nScriptSetType(int type, boolean writable, String name, int slot);
Jason Samsfbf0b9e2009-08-13 12:59:04 -0700144 native void nScriptSetRoot(boolean isRoot);
Jason Samsbe2e8412009-09-16 15:04:38 -0700145 native void nScriptSetInvokable(String name, int slot);
146 native void nScriptInvoke(int id, int slot);
Jason Sams22534172009-08-04 16:58:20 -0700147
Jason Sams36e612a2009-07-31 16:26:13 -0700148 native void nScriptCBegin();
Jason Sams36e612a2009-07-31 16:26:13 -0700149 native void nScriptCSetScript(byte[] script, int offset, int length);
150 native int nScriptCCreate();
Joe Onoratod7b37742009-08-09 22:57:44 -0700151 native void nScriptCAddDefineI32(String name, int value);
152 native void nScriptCAddDefineF(String name, float value);
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700153
Jason Sams36e612a2009-07-31 16:26:13 -0700154 native void nSamplerBegin();
155 native void nSamplerSet(int param, int value);
156 native int nSamplerCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700157
Jason Sams36e612a2009-07-31 16:26:13 -0700158 native void nProgramFragmentStoreBegin(int in, int out);
159 native void nProgramFragmentStoreDepthFunc(int func);
160 native void nProgramFragmentStoreDepthMask(boolean enable);
161 native void nProgramFragmentStoreColorMask(boolean r, boolean g, boolean b, boolean a);
162 native void nProgramFragmentStoreBlendFunc(int src, int dst);
163 native void nProgramFragmentStoreDither(boolean enable);
164 native int nProgramFragmentStoreCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700165
Jason Samsebfb4362009-09-23 13:57:02 -0700166 native int nProgramRasterCreate(int in, int out, boolean pointSmooth, boolean lineSmooth, boolean pointSprite);
167 native void nProgramRasterSetLineWidth(int pr, float v);
168 native void nProgramRasterSetPointSize(int pr, float v);
169
Jason Sams25ffcdc2009-08-20 16:10:36 -0700170 native void nProgramFragmentBegin(int in, int out, boolean pointSpriteEnable);
Jason Sams36e612a2009-07-31 16:26:13 -0700171 native void nProgramFragmentBindTexture(int vpf, int slot, int a);
172 native void nProgramFragmentBindSampler(int vpf, int slot, int s);
Jason Sams25ffcdc2009-08-20 16:10:36 -0700173 native void nProgramFragmentSetSlot(int slot, boolean enable, int env, int vt);
Jason Sams54c0ec12009-11-30 14:49:55 -0800174 native void nProgramFragmentSetShader(String txt);
Jason Sams36e612a2009-07-31 16:26:13 -0700175 native int nProgramFragmentCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700176
Jason Sams9bee51c2009-08-05 13:57:03 -0700177 native void nProgramVertexBindAllocation(int pv, int mID);
Jason Sams36e612a2009-07-31 16:26:13 -0700178 native void nProgramVertexBegin(int inID, int outID);
Jason Sams36e612a2009-07-31 16:26:13 -0700179 native void nProgramVertexSetTextureMatrixEnable(boolean enable);
180 native void nProgramVertexAddLight(int id);
Jason Sams54c0ec12009-11-30 14:49:55 -0800181 native void nProgramVertexSetShader(String txt);
Jason Sams36e612a2009-07-31 16:26:13 -0700182 native int nProgramVertexCreate();
Jason Sams1fe9b8c2009-06-11 14:46:10 -0700183
Jason Sams36e612a2009-07-31 16:26:13 -0700184 native void nLightBegin();
185 native void nLightSetIsMono(boolean isMono);
186 native void nLightSetIsLocal(boolean isLocal);
187 native int nLightCreate();
Jason Sams36e612a2009-07-31 16:26:13 -0700188 native void nLightSetColor(int l, float r, float g, float b);
189 native void nLightSetPosition(int l, float x, float y, float z);
Jason Samsbba134c2009-06-22 15:49:21 -0700190
Jason Sams1bada8c2009-08-09 17:01:55 -0700191 native int nSimpleMeshCreate(int batchID, int idxID, int[] vtxID, int prim);
192 native void nSimpleMeshBindVertex(int id, int alloc, int slot);
193 native void nSimpleMeshBindIndex(int id, int alloc);
194
Jason Sams40a29e82009-08-10 14:55:26 -0700195 native void nAnimationBegin(int attribCount, int keyframeCount);
196 native void nAnimationAdd(float time, float[] attribs);
197 native int nAnimationCreate();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700198
199 private int mDev;
200 private int mContext;
Romain Guy650a3eb2009-08-31 14:06:43 -0700201 @SuppressWarnings({"FieldCanBeLocal"})
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700202 private Surface mSurface;
Jason Sams516c3192009-10-06 13:58:47 -0700203 private MessageThread mMessageThread;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700204
Jason Sams3c0dfba2009-09-27 17:50:38 -0700205
206 Element mElement_USER_U8;
207 Element mElement_USER_I8;
208 Element mElement_USER_U16;
209 Element mElement_USER_I16;
210 Element mElement_USER_U32;
211 Element mElement_USER_I32;
212 Element mElement_USER_FLOAT;
213
214 Element mElement_A_8;
215 Element mElement_RGB_565;
216 Element mElement_RGB_888;
217 Element mElement_RGBA_5551;
218 Element mElement_RGBA_4444;
219 Element mElement_RGBA_8888;
220
221 Element mElement_INDEX_16;
222 Element mElement_XY_F32;
223 Element mElement_XYZ_F32;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700224
Jason Sams7d787b42009-11-15 12:14:26 -0800225
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700226 ///////////////////////////////////////////////////////////////////////////////////
Jack Palevich43702d82009-05-28 13:38:16 -0700227 //
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700228
Jason Sams516c3192009-10-06 13:58:47 -0700229 public static class RSMessage implements Runnable {
230 protected int[] mData;
231 protected int mID;
232 public void run() {
233 }
234 }
235 public RSMessage mMessageCallback = null;
236
Jason Sams7d787b42009-11-15 12:14:26 -0800237 public enum Priority {
238 LOW (5), //ANDROID_PRIORITY_BACKGROUND + 5
239 NORMAL (-4); //ANDROID_PRIORITY_DISPLAY
240
241 int mID;
242 Priority(int id) {
243 mID = id;
244 }
245 }
246
Jason Sams771bebb2009-12-07 12:40:12 -0800247 void validate() {
248 if (mContext == 0) {
249 throw new IllegalStateException("Calling RS with no Context active.");
250 }
251 }
252
253 void validateSurface() {
Jason Sams11fbdf52009-12-14 19:20:30 -0800254 //if (mSurface == null) {
255 //throw new IllegalStateException("Uploading data to GL with no surface.");
256 //}
Jason Sams771bebb2009-12-07 12:40:12 -0800257 }
258
Jason Sams7d787b42009-11-15 12:14:26 -0800259 public void contextSetPriority(Priority p) {
260 nContextSetPriority(p.mID);
261 }
262
Jason Sams516c3192009-10-06 13:58:47 -0700263 private static class MessageThread extends Thread {
264 RenderScript mRS;
265 boolean mRun = true;
266
267 MessageThread(RenderScript rs) {
268 super("RSMessageThread");
269 mRS = rs;
270
271 }
272
273 public void run() {
274 // This function is a temporary solution. The final solution will
275 // used typed allocations where the message id is the type indicator.
276 int[] rbuf = new int[16];
277 mRS.nContextInitToClient();
278 while(mRun) {
279 int msg = mRS.nContextGetMessage(rbuf, true);
280 if (msg == 0) {
281 // Should only happen during teardown.
282 // But we want to avoid starving other threads during
283 // teardown by yielding until the next line in the destructor
284 // can execute to set mRun = false
285 try {
286 sleep(1, 0);
287 } catch(InterruptedException e) {
288 }
289 }
290 if(mRS.mMessageCallback != null) {
291 mRS.mMessageCallback.mData = rbuf;
292 mRS.mMessageCallback.mID = msg;
293 mRS.mMessageCallback.run();
294 }
Jason Sams3bc47d42009-11-12 15:10:25 -0800295 //Log.d(LOG_TAG, "MessageThread msg " + msg + " v1 " + rbuf[0] + " v2 " + rbuf[1] + " v3 " +rbuf[2]);
Jason Sams516c3192009-10-06 13:58:47 -0700296 }
Jason Sams3bc47d42009-11-12 15:10:25 -0800297 Log.d(LOG_TAG, "MessageThread exiting.");
Jason Sams516c3192009-10-06 13:58:47 -0700298 }
299 }
300
Jason Sams3bc47d42009-11-12 15:10:25 -0800301 public RenderScript(boolean useDepth, boolean forceSW) {
302 mSurface = null;
303 mWidth = 0;
304 mHeight = 0;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700305 mDev = nDeviceCreate();
Jason Samsebfb4362009-09-23 13:57:02 -0700306 if(forceSW) {
307 nDeviceSetConfig(mDev, 0, 1);
308 }
Jason Sams3bc47d42009-11-12 15:10:25 -0800309 mContext = nContextCreate(mDev, 0, useDepth);
Jason Sams3c0dfba2009-09-27 17:50:38 -0700310 Element.initPredefined(this);
Jason Sams516c3192009-10-06 13:58:47 -0700311 mMessageThread = new MessageThread(this);
312 mMessageThread.start();
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700313 }
314
Jason Sams3bc47d42009-11-12 15:10:25 -0800315 public void contextSetSurface(int w, int h, Surface sur) {
Jason Samsefd9b6fb2009-11-03 13:58:36 -0800316 mSurface = sur;
Jason Sams3bc47d42009-11-12 15:10:25 -0800317 mWidth = w;
318 mHeight = h;
319 nContextSetSurface(w, h, mSurface);
Jason Samsefd9b6fb2009-11-03 13:58:36 -0800320 }
321
Jason Sams715333b2009-11-17 17:26:46 -0800322 public void contextDump(int bits) {
323 nContextDump(bits);
324 }
325
Jason Samsf5b45962009-08-25 14:49:07 -0700326 public void destroy() {
Jason Sams516c3192009-10-06 13:58:47 -0700327 nContextDeinitToClient();
328 mMessageThread.mRun = false;
329
Jason Samsf5b45962009-08-25 14:49:07 -0700330 nContextDestroy(mContext);
331 mContext = 0;
332
333 nDeviceDestroy(mDev);
334 mDev = 0;
335 }
Jason Sams02fb2cb2009-05-28 15:37:57 -0700336
Jason Samsa9e7a052009-09-25 14:51:22 -0700337 boolean isAlive() {
338 return mContext != 0;
339 }
340
Jason Sams65e7aa52009-09-24 17:38:20 -0700341 void pause() {
342 nContextPause();
343 }
344
345 void resume() {
346 nContextResume();
347 }
348
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700349 //////////////////////////////////////////////////////////////////////////////////
Jason Sams64676f32009-07-08 18:01:53 -0700350 // File
351
352 public class File extends BaseObj {
353 File(int id) {
Jason Sams36e612a2009-07-31 16:26:13 -0700354 super(RenderScript.this);
Jason Sams64676f32009-07-08 18:01:53 -0700355 mID = id;
356 }
Jason Sams64676f32009-07-08 18:01:53 -0700357 }
358
359 public File fileOpen(String s) throws IllegalStateException, IllegalArgumentException
360 {
361 if(s.length() < 1) {
362 throw new IllegalArgumentException("fileOpen does not accept a zero length string.");
363 }
364
365 try {
366 byte[] bytes = s.getBytes("UTF-8");
367 int id = nFileOpen(bytes);
368 return new File(id);
369 } catch (java.io.UnsupportedEncodingException e) {
370 throw new RuntimeException(e);
371 }
372 }
373
374
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700375 ///////////////////////////////////////////////////////////////////////////////////
376 // Root state
377
Jason Sams6b9dec02009-09-23 16:38:37 -0700378 private int safeID(BaseObj o) {
379 if(o != null) {
380 return o.mID;
Jason Samsd8e41612009-08-20 17:22:40 -0700381 }
Jason Sams6b9dec02009-09-23 16:38:37 -0700382 return 0;
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700383 }
384
Jason Sams6b9dec02009-09-23 16:38:37 -0700385 public void contextBindRootScript(Script s) {
386 nContextBindRootScript(safeID(s));
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700387 }
388
Jason Sams6b9dec02009-09-23 16:38:37 -0700389 public void contextBindProgramFragmentStore(ProgramStore p) {
390 nContextBindProgramFragmentStore(safeID(p));
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700391 }
392
Jason Sams6b9dec02009-09-23 16:38:37 -0700393 public void contextBindProgramFragment(ProgramFragment p) {
394 nContextBindProgramFragment(safeID(p));
Jason Samsebfb4362009-09-23 13:57:02 -0700395 }
396
Jason Sams6b9dec02009-09-23 16:38:37 -0700397 public void contextBindProgramRaster(ProgramRaster p) {
398 nContextBindProgramRaster(safeID(p));
399 }
400
401 public void contextBindProgramVertex(ProgramVertex p) {
402 nContextBindProgramVertex(safeID(p));
Jason Sams0826a6f2009-06-15 19:04:56 -0700403 }
404
Jack Palevich60aa3ea2009-05-26 13:45:08 -0700405}
406
Jason Sams36e612a2009-07-31 16:26:13 -0700407