Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 1 | /* |
Stephen Hines | be74bdd | 2012-02-03 15:29:36 -0800 | [diff] [blame] | 2 | * Copyright (C) 2008-2012 The Android Open Source Project |
Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 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 | a6f338c | 2012-02-24 16:22:16 -0800 | [diff] [blame] | 19 | import java.io.File; |
Tim Murray | 2f2472c | 2013-08-22 14:55:26 -0700 | [diff] [blame] | 20 | import java.lang.reflect.Method; |
Tim Murray | 06b4567 | 2014-01-07 11:13:56 -0800 | [diff] [blame^] | 21 | import java.util.concurrent.locks.ReentrantReadWriteLock; |
Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 22 | |
Shih-wei Liao | 6b32fab | 2010-12-10 01:03:59 -0800 | [diff] [blame] | 23 | import android.content.Context; |
Alex Sakhartchouk | b0253ea | 2011-01-07 11:12:08 -0800 | [diff] [blame] | 24 | import android.content.res.AssetManager; |
Jason Sams | b8c5a84 | 2009-07-31 20:40:47 -0700 | [diff] [blame] | 25 | import android.graphics.Bitmap; |
Jason Sams | faa32b3 | 2011-06-20 16:58:04 -0700 | [diff] [blame] | 26 | import android.graphics.SurfaceTexture; |
Glenn Kasten | 260c77a | 2011-06-01 17:25:54 -0700 | [diff] [blame] | 27 | import android.os.Process; |
Jason Sams | 36e612a | 2009-07-31 16:26:13 -0700 | [diff] [blame] | 28 | import android.util.Log; |
| 29 | import android.view.Surface; |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 30 | import android.os.SystemProperties; |
Tim Murray | 6d7a53c | 2013-05-23 16:59:23 -0700 | [diff] [blame] | 31 | import android.os.Trace; |
Stephen Hines | 4382467a | 2011-08-01 15:02:34 -0700 | [diff] [blame] | 32 | |
Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 33 | /** |
Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 34 | * This class provides access to a RenderScript context, which controls RenderScript |
| 35 | * initialization, resource management, and teardown. An instance of the RenderScript |
| 36 | * class must be created before any other RS objects can be created. |
Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 37 | * |
Joe Fernandez | 3aef8e1d | 2011-12-20 10:38:34 -0800 | [diff] [blame] | 38 | * <div class="special reference"> |
| 39 | * <h3>Developer Guides</h3> |
Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 40 | * <p>For more information about creating an application that uses RenderScript, read the |
| 41 | * <a href="{@docRoot}guide/topics/renderscript/index.html">RenderScript</a> developer guide.</p> |
Joe Fernandez | 3aef8e1d | 2011-12-20 10:38:34 -0800 | [diff] [blame] | 42 | * </div> |
Jason Sams | e29d471 | 2009-07-23 15:19:03 -0700 | [diff] [blame] | 43 | **/ |
Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 44 | public class RenderScript { |
Tim Murray | 6d7a53c | 2013-05-23 16:59:23 -0700 | [diff] [blame] | 45 | static final long TRACE_TAG = Trace.TRACE_TAG_RS; |
| 46 | |
Jason Sams | 3bc47d4 | 2009-11-12 15:10:25 -0800 | [diff] [blame] | 47 | static final String LOG_TAG = "RenderScript_jni"; |
Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 48 | static final boolean DEBUG = false; |
Romain Guy | 650a3eb | 2009-08-31 14:06:43 -0700 | [diff] [blame] | 49 | @SuppressWarnings({"UnusedDeclaration", "deprecation"}) |
Joe Onorato | 43a1765 | 2011-04-06 19:22:23 -0700 | [diff] [blame] | 50 | static final boolean LOG_ENABLED = false; |
Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 51 | |
Shih-wei Liao | 6b32fab | 2010-12-10 01:03:59 -0800 | [diff] [blame] | 52 | private Context mApplicationContext; |
Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 53 | |
Shih-wei Liao | 6b32fab | 2010-12-10 01:03:59 -0800 | [diff] [blame] | 54 | /* |
Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 55 | * We use a class initializer to allow the native code to cache some |
| 56 | * field offsets. |
| 57 | */ |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 58 | @SuppressWarnings({"FieldCanBeLocal", "UnusedDeclaration"}) // TODO: now used locally; remove? |
Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 59 | static boolean sInitialized; |
| 60 | native static void _nInit(); |
Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 61 | |
Tim Murray | 2f2472c | 2013-08-22 14:55:26 -0700 | [diff] [blame] | 62 | static Object sRuntime; |
| 63 | static Method registerNativeAllocation; |
| 64 | static Method registerNativeFree; |
Jason Sams | dba3ba5 | 2009-07-30 14:56:12 -0700 | [diff] [blame] | 65 | |
Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 66 | static { |
| 67 | sInitialized = false; |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 68 | if (!SystemProperties.getBoolean("config.disable_renderscript", false)) { |
| 69 | try { |
Tim Murray | 2f2472c | 2013-08-22 14:55:26 -0700 | [diff] [blame] | 70 | Class<?> vm_runtime = Class.forName("dalvik.system.VMRuntime"); |
| 71 | Method get_runtime = vm_runtime.getDeclaredMethod("getRuntime"); |
| 72 | sRuntime = get_runtime.invoke(null); |
| 73 | registerNativeAllocation = vm_runtime.getDeclaredMethod("registerNativeAllocation", Integer.TYPE); |
| 74 | registerNativeFree = vm_runtime.getDeclaredMethod("registerNativeFree", Integer.TYPE); |
| 75 | } catch (Exception e) { |
| 76 | Log.e(LOG_TAG, "Error loading GC methods: " + e); |
| 77 | throw new RSRuntimeException("Error loading GC methods: " + e); |
| 78 | } |
| 79 | try { |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 80 | System.loadLibrary("rs_jni"); |
| 81 | _nInit(); |
| 82 | sInitialized = true; |
| 83 | } catch (UnsatisfiedLinkError e) { |
| 84 | Log.e(LOG_TAG, "Error loading RS jni library: " + e); |
| 85 | throw new RSRuntimeException("Error loading RS jni library: " + e); |
| 86 | } |
Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 87 | } |
| 88 | } |
| 89 | |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 90 | // Non-threadsafe functions. |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 91 | native long nDeviceCreate(); |
| 92 | native void nDeviceDestroy(long dev); |
| 93 | native void nDeviceSetConfig(long dev, int param, int value); |
| 94 | native int nContextGetUserMessage(long con, int[] data); |
| 95 | native String nContextGetErrorMessage(long con); |
| 96 | native int nContextPeekMessage(long con, int[] subID); |
| 97 | native void nContextInitToClient(long con); |
| 98 | native void nContextDeinitToClient(long con); |
Jason Sams | 3eaa338 | 2009-06-10 15:04:38 -0700 | [diff] [blame] | 99 | |
Stephen Hines | 7d25a82 | 2013-04-09 23:51:56 -0700 | [diff] [blame] | 100 | static File mCacheDir; |
Jason Sams | a6f338c | 2012-02-24 16:22:16 -0800 | [diff] [blame] | 101 | |
| 102 | /** |
| 103 | * Sets the directory to use as a persistent storage for the |
| 104 | * renderscript object file cache. |
| 105 | * |
| 106 | * @hide |
| 107 | * @param cacheDir A directory the current process can write to |
| 108 | */ |
Jason Sams | a6f338c | 2012-02-24 16:22:16 -0800 | [diff] [blame] | 109 | public static void setupDiskCache(File cacheDir) { |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 110 | if (!sInitialized) { |
| 111 | Log.e(LOG_TAG, "RenderScript.setupDiskCache() called when disabled"); |
| 112 | return; |
| 113 | } |
| 114 | |
Stephen Hines | 7d25a82 | 2013-04-09 23:51:56 -0700 | [diff] [blame] | 115 | // Defer creation of cache path to nScriptCCreate(). |
| 116 | mCacheDir = cacheDir; |
Jason Sams | a6f338c | 2012-02-24 16:22:16 -0800 | [diff] [blame] | 117 | } |
| 118 | |
Jason Sams | 02d56d9 | 2013-04-12 16:40:50 -0700 | [diff] [blame] | 119 | /** |
| 120 | * ContextType specifies the specific type of context to be created. |
| 121 | * |
| 122 | */ |
Jason Sams | add26dc | 2013-02-22 18:43:45 -0800 | [diff] [blame] | 123 | public enum ContextType { |
Jason Sams | 02d56d9 | 2013-04-12 16:40:50 -0700 | [diff] [blame] | 124 | /** |
| 125 | * NORMAL context, this is the default and what shipping apps should |
| 126 | * use. |
| 127 | */ |
Jason Sams | add26dc | 2013-02-22 18:43:45 -0800 | [diff] [blame] | 128 | NORMAL (0), |
Jason Sams | 02d56d9 | 2013-04-12 16:40:50 -0700 | [diff] [blame] | 129 | |
| 130 | /** |
| 131 | * DEBUG context, perform extra runtime checks to validate the |
| 132 | * kernels and APIs are being used as intended. Get and SetElementAt |
| 133 | * will be bounds checked in this mode. |
| 134 | */ |
Jason Sams | add26dc | 2013-02-22 18:43:45 -0800 | [diff] [blame] | 135 | DEBUG (1), |
Jason Sams | 02d56d9 | 2013-04-12 16:40:50 -0700 | [diff] [blame] | 136 | |
| 137 | /** |
| 138 | * PROFILE context, Intended to be used once the first time an |
| 139 | * application is run on a new device. This mode allows the runtime to |
| 140 | * do additional testing and performance tuning. |
| 141 | */ |
Jason Sams | add26dc | 2013-02-22 18:43:45 -0800 | [diff] [blame] | 142 | PROFILE (2); |
| 143 | |
| 144 | int mID; |
| 145 | ContextType(int id) { |
| 146 | mID = id; |
| 147 | } |
| 148 | } |
Jason Sams | 718cd1f | 2009-12-23 14:35:29 -0800 | [diff] [blame] | 149 | |
Stephen Hines | 42028a8 | 2013-04-17 19:22:01 -0700 | [diff] [blame] | 150 | ContextType mContextType; |
Tim Murray | 06b4567 | 2014-01-07 11:13:56 -0800 | [diff] [blame^] | 151 | ReentrantReadWriteLock mRWLock; |
Stephen Hines | 42028a8 | 2013-04-17 19:22:01 -0700 | [diff] [blame] | 152 | |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 153 | // Methods below are wrapped to protect the non-threadsafe |
| 154 | // lockless fifo. |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 155 | native long rsnContextCreateGL(long dev, int ver, int sdkVer, |
Jason Sams | 11c8af9 | 2010-10-13 15:31:10 -0700 | [diff] [blame] | 156 | int colorMin, int colorPref, |
| 157 | int alphaMin, int alphaPref, |
| 158 | int depthMin, int depthPref, |
| 159 | int stencilMin, int stencilPref, |
Alex Sakhartchouk | 2c74ad9 | 2011-03-16 19:28:25 -0700 | [diff] [blame] | 160 | int samplesMin, int samplesPref, float samplesQ, int dpi); |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 161 | synchronized long nContextCreateGL(long dev, int ver, int sdkVer, |
Jason Sams | 11c8af9 | 2010-10-13 15:31:10 -0700 | [diff] [blame] | 162 | int colorMin, int colorPref, |
| 163 | int alphaMin, int alphaPref, |
| 164 | int depthMin, int depthPref, |
| 165 | int stencilMin, int stencilPref, |
Alex Sakhartchouk | 2c74ad9 | 2011-03-16 19:28:25 -0700 | [diff] [blame] | 166 | int samplesMin, int samplesPref, float samplesQ, int dpi) { |
Stephen Hines | 4382467a | 2011-08-01 15:02:34 -0700 | [diff] [blame] | 167 | return rsnContextCreateGL(dev, ver, sdkVer, colorMin, colorPref, |
Jason Sams | 11c8af9 | 2010-10-13 15:31:10 -0700 | [diff] [blame] | 168 | alphaMin, alphaPref, depthMin, depthPref, |
| 169 | stencilMin, stencilPref, |
Alex Sakhartchouk | 2c74ad9 | 2011-03-16 19:28:25 -0700 | [diff] [blame] | 170 | samplesMin, samplesPref, samplesQ, dpi); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 171 | } |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 172 | native long rsnContextCreate(long dev, int ver, int sdkVer, int contextType); |
| 173 | synchronized long nContextCreate(long dev, int ver, int sdkVer, int contextType) { |
Jason Sams | add26dc | 2013-02-22 18:43:45 -0800 | [diff] [blame] | 174 | return rsnContextCreate(dev, ver, sdkVer, contextType); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 175 | } |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 176 | native void rsnContextDestroy(long con); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 177 | synchronized void nContextDestroy() { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 178 | validate(); |
Tim Murray | 06b4567 | 2014-01-07 11:13:56 -0800 | [diff] [blame^] | 179 | |
| 180 | // take teardown lock |
| 181 | // teardown lock can only be taken when no objects are being destroyed |
| 182 | ReentrantReadWriteLock.WriteLock wlock = mRWLock.writeLock(); |
| 183 | wlock.lock(); |
| 184 | |
| 185 | long curCon = mContext; |
| 186 | // context is considered dead as of this point |
| 187 | mContext = 0; |
| 188 | |
| 189 | wlock.unlock(); |
| 190 | rsnContextDestroy(curCon); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 191 | } |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 192 | native void rsnContextSetSurface(long con, int w, int h, Surface sur); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 193 | synchronized void nContextSetSurface(int w, int h, Surface sur) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 194 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 195 | rsnContextSetSurface(mContext, w, h, sur); |
| 196 | } |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 197 | native void rsnContextSetSurfaceTexture(long con, int w, int h, SurfaceTexture sur); |
Jason Sams | faa32b3 | 2011-06-20 16:58:04 -0700 | [diff] [blame] | 198 | synchronized void nContextSetSurfaceTexture(int w, int h, SurfaceTexture sur) { |
| 199 | validate(); |
| 200 | rsnContextSetSurfaceTexture(mContext, w, h, sur); |
| 201 | } |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 202 | native void rsnContextSetPriority(long con, int p); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 203 | synchronized void nContextSetPriority(int p) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 204 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 205 | rsnContextSetPriority(mContext, p); |
| 206 | } |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 207 | native void rsnContextDump(long con, int bits); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 208 | synchronized void nContextDump(int bits) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 209 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 210 | rsnContextDump(mContext, bits); |
| 211 | } |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 212 | native void rsnContextFinish(long con); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 213 | synchronized void nContextFinish() { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 214 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 215 | rsnContextFinish(mContext); |
| 216 | } |
Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 217 | |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 218 | native void rsnContextSendMessage(long con, int id, int[] data); |
Jason Sams | 455d644 | 2013-02-05 19:20:18 -0800 | [diff] [blame] | 219 | synchronized void nContextSendMessage(int id, int[] data) { |
| 220 | validate(); |
| 221 | rsnContextSendMessage(mContext, id, data); |
| 222 | } |
| 223 | |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 224 | native void rsnContextBindRootScript(long con, int script); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 225 | synchronized void nContextBindRootScript(int script) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 226 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 227 | rsnContextBindRootScript(mContext, script); |
| 228 | } |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 229 | native void rsnContextBindSampler(long con, int sampler, int slot); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 230 | synchronized void nContextBindSampler(int sampler, int slot) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 231 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 232 | rsnContextBindSampler(mContext, sampler, slot); |
| 233 | } |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 234 | native void rsnContextBindProgramStore(long con, int pfs); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 235 | synchronized void nContextBindProgramStore(int pfs) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 236 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 237 | rsnContextBindProgramStore(mContext, pfs); |
| 238 | } |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 239 | native void rsnContextBindProgramFragment(long con, int pf); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 240 | synchronized void nContextBindProgramFragment(int pf) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 241 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 242 | rsnContextBindProgramFragment(mContext, pf); |
| 243 | } |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 244 | native void rsnContextBindProgramVertex(long con, int pv); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 245 | synchronized void nContextBindProgramVertex(int pv) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 246 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 247 | rsnContextBindProgramVertex(mContext, pv); |
| 248 | } |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 249 | native void rsnContextBindProgramRaster(long con, int pr); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 250 | synchronized void nContextBindProgramRaster(int pr) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 251 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 252 | rsnContextBindProgramRaster(mContext, pr); |
| 253 | } |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 254 | native void rsnContextPause(long con); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 255 | synchronized void nContextPause() { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 256 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 257 | rsnContextPause(mContext); |
| 258 | } |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 259 | native void rsnContextResume(long con); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 260 | synchronized void nContextResume() { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 261 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 262 | rsnContextResume(mContext); |
| 263 | } |
Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 264 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 265 | native void rsnAssignName(long con, long obj, byte[] name); |
| 266 | synchronized void nAssignName(long obj, byte[] name) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 267 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 268 | rsnAssignName(mContext, obj, name); |
| 269 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 270 | native String rsnGetName(long con, long obj); |
| 271 | synchronized String nGetName(long obj) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 272 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 273 | return rsnGetName(mContext, obj); |
| 274 | } |
Tim Murray | 06b4567 | 2014-01-07 11:13:56 -0800 | [diff] [blame^] | 275 | |
| 276 | // nObjDestroy is explicitly _not_ synchronous to prevent crashes in finalizers |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 277 | native void rsnObjDestroy(long con, long id); |
Tim Murray | 06b4567 | 2014-01-07 11:13:56 -0800 | [diff] [blame^] | 278 | void nObjDestroy(long id) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 279 | // There is a race condition here. The calling code may be run |
| 280 | // by the gc while teardown is occuring. This protects againts |
| 281 | // deleting dead objects. |
| 282 | if (mContext != 0) { |
| 283 | rsnObjDestroy(mContext, id); |
| 284 | } |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 285 | } |
Jason Sams | fe08d99 | 2009-05-27 14:45:32 -0700 | [diff] [blame] | 286 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 287 | native long rsnElementCreate(long con, long type, int kind, boolean norm, int vecSize); |
| 288 | synchronized long nElementCreate(long type, int kind, boolean norm, int vecSize) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 289 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 290 | return rsnElementCreate(mContext, type, kind, norm, vecSize); |
| 291 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 292 | native long rsnElementCreate2(long con, int[]elements, String[] names, int[] arraySizes); |
| 293 | synchronized long nElementCreate2(int[] elements, String[] names, int[] arraySizes) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 294 | validate(); |
Jason Sams | 70d4e50 | 2010-09-02 17:35:23 -0700 | [diff] [blame] | 295 | return rsnElementCreate2(mContext, elements, names, arraySizes); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 296 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 297 | native void rsnElementGetNativeData(long con, long id, int[] elementData); |
| 298 | synchronized void nElementGetNativeData(long id, int[] elementData) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 299 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 300 | rsnElementGetNativeData(mContext, id, elementData); |
| 301 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 302 | native void rsnElementGetSubElements(long con, long id, |
Alex Sakhartchouk | 7d5f5e7 | 2011-10-18 11:08:31 -0700 | [diff] [blame] | 303 | int[] IDs, String[] names, int[] arraySizes); |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 304 | synchronized void nElementGetSubElements(long id, int[] IDs, String[] names, int[] arraySizes) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 305 | validate(); |
Alex Sakhartchouk | 7d5f5e7 | 2011-10-18 11:08:31 -0700 | [diff] [blame] | 306 | rsnElementGetSubElements(mContext, id, IDs, names, arraySizes); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 307 | } |
Jason Sams | 768bc02 | 2009-09-21 19:41:04 -0700 | [diff] [blame] | 308 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 309 | native long rsnTypeCreate(long con, long eid, int x, int y, int z, boolean mips, boolean faces, int yuv); |
| 310 | synchronized long nTypeCreate(long eid, int x, int y, int z, boolean mips, boolean faces, int yuv) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 311 | validate(); |
Jason Sams | b109cc7 | 2013-01-07 18:20:12 -0800 | [diff] [blame] | 312 | return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 313 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 314 | native void rsnTypeGetNativeData(long con, long id, int[] typeData); |
| 315 | synchronized void nTypeGetNativeData(long id, int[] typeData) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 316 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 317 | rsnTypeGetNativeData(mContext, id, typeData); |
| 318 | } |
Jason Sams | 768bc02 | 2009-09-21 19:41:04 -0700 | [diff] [blame] | 319 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 320 | native long rsnAllocationCreateTyped(long con, long type, int mip, int usage, int pointer); |
| 321 | synchronized long nAllocationCreateTyped(long type, int mip, int usage, int pointer) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 322 | validate(); |
Jason Sams | 857d0c7 | 2011-11-23 15:02:15 -0800 | [diff] [blame] | 323 | return rsnAllocationCreateTyped(mContext, type, mip, usage, pointer); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 324 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 325 | native long rsnAllocationCreateFromBitmap(long con, long type, int mip, Bitmap bmp, int usage); |
| 326 | synchronized long nAllocationCreateFromBitmap(long type, int mip, Bitmap bmp, int usage) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 327 | validate(); |
Jason Sams | 5476b45 | 2010-12-08 16:14:36 -0800 | [diff] [blame] | 328 | return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage); |
Alex Sakhartchouk | 26ae390 | 2010-10-11 12:35:15 -0700 | [diff] [blame] | 329 | } |
Tim Murray | a314551 | 2012-12-04 17:59:29 -0800 | [diff] [blame] | 330 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 331 | native long rsnAllocationCreateBitmapBackedAllocation(long con, long type, int mip, Bitmap bmp, int usage); |
| 332 | synchronized long nAllocationCreateBitmapBackedAllocation(long type, int mip, Bitmap bmp, int usage) { |
Tim Murray | a314551 | 2012-12-04 17:59:29 -0800 | [diff] [blame] | 333 | validate(); |
| 334 | return rsnAllocationCreateBitmapBackedAllocation(mContext, type, mip, bmp, usage); |
| 335 | } |
| 336 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 337 | native long rsnAllocationCubeCreateFromBitmap(long con, long type, int mip, Bitmap bmp, int usage); |
| 338 | synchronized long nAllocationCubeCreateFromBitmap(long type, int mip, Bitmap bmp, int usage) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 339 | validate(); |
Jason Sams | 5476b45 | 2010-12-08 16:14:36 -0800 | [diff] [blame] | 340 | return rsnAllocationCubeCreateFromBitmap(mContext, type, mip, bmp, usage); |
Alex Sakhartchouk | 67f2e44 | 2010-11-18 15:22:43 -0800 | [diff] [blame] | 341 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 342 | native long rsnAllocationCreateBitmapRef(long con, long type, Bitmap bmp); |
| 343 | synchronized long nAllocationCreateBitmapRef(long type, Bitmap bmp) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 344 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 345 | return rsnAllocationCreateBitmapRef(mContext, type, bmp); |
| 346 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 347 | native long rsnAllocationCreateFromAssetStream(long con, int mips, int assetStream, int usage); |
| 348 | synchronized long nAllocationCreateFromAssetStream(int mips, int assetStream, int usage) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 349 | validate(); |
Jason Sams | 5476b45 | 2010-12-08 16:14:36 -0800 | [diff] [blame] | 350 | return rsnAllocationCreateFromAssetStream(mContext, mips, assetStream, usage); |
| 351 | } |
| 352 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 353 | native void rsnAllocationCopyToBitmap(long con, long alloc, Bitmap bmp); |
| 354 | synchronized void nAllocationCopyToBitmap(long alloc, Bitmap bmp) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 355 | validate(); |
Jason Sams | 4ef6650 | 2010-12-10 16:03:15 -0800 | [diff] [blame] | 356 | rsnAllocationCopyToBitmap(mContext, alloc, bmp); |
| 357 | } |
| 358 | |
| 359 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 360 | native void rsnAllocationSyncAll(long con, long alloc, int src); |
| 361 | synchronized void nAllocationSyncAll(long alloc, int src) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 362 | validate(); |
Jason Sams | 5476b45 | 2010-12-08 16:14:36 -0800 | [diff] [blame] | 363 | rsnAllocationSyncAll(mContext, alloc, src); |
| 364 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 365 | native Surface rsnAllocationGetSurface(long con, long alloc); |
| 366 | synchronized Surface nAllocationGetSurface(long alloc) { |
Jason Sams | 615e7ce | 2012-01-13 14:01:20 -0800 | [diff] [blame] | 367 | validate(); |
Jason Sams | 72226e0 | 2013-02-22 12:45:54 -0800 | [diff] [blame] | 368 | return rsnAllocationGetSurface(mContext, alloc); |
Jason Sams | fe1d5ff | 2012-03-23 11:47:26 -0700 | [diff] [blame] | 369 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 370 | native void rsnAllocationSetSurface(long con, long alloc, Surface sur); |
| 371 | synchronized void nAllocationSetSurface(long alloc, Surface sur) { |
Jason Sams | 163766c | 2012-02-15 12:04:24 -0800 | [diff] [blame] | 372 | validate(); |
Jason Sams | fb9aa9f | 2012-03-28 15:30:07 -0700 | [diff] [blame] | 373 | rsnAllocationSetSurface(mContext, alloc, sur); |
Jason Sams | 163766c | 2012-02-15 12:04:24 -0800 | [diff] [blame] | 374 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 375 | native void rsnAllocationIoSend(long con, long alloc); |
| 376 | synchronized void nAllocationIoSend(long alloc) { |
Jason Sams | 163766c | 2012-02-15 12:04:24 -0800 | [diff] [blame] | 377 | validate(); |
| 378 | rsnAllocationIoSend(mContext, alloc); |
| 379 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 380 | native void rsnAllocationIoReceive(long con, long alloc); |
| 381 | synchronized void nAllocationIoReceive(long alloc) { |
Jason Sams | 163766c | 2012-02-15 12:04:24 -0800 | [diff] [blame] | 382 | validate(); |
| 383 | rsnAllocationIoReceive(mContext, alloc); |
| 384 | } |
| 385 | |
Jason Sams | 615e7ce | 2012-01-13 14:01:20 -0800 | [diff] [blame] | 386 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 387 | native void rsnAllocationGenerateMipmaps(long con, long alloc); |
| 388 | synchronized void nAllocationGenerateMipmaps(long alloc) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 389 | validate(); |
Jason Sams | f708609 | 2011-01-12 13:28:37 -0800 | [diff] [blame] | 390 | rsnAllocationGenerateMipmaps(mContext, alloc); |
| 391 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 392 | native void rsnAllocationCopyFromBitmap(long con, long alloc, Bitmap bmp); |
| 393 | synchronized void nAllocationCopyFromBitmap(long alloc, Bitmap bmp) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 394 | validate(); |
Jason Sams | 4ef6650 | 2010-12-10 16:03:15 -0800 | [diff] [blame] | 395 | rsnAllocationCopyFromBitmap(mContext, alloc, bmp); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 396 | } |
Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 397 | |
Jason Sams | 49a05d7 | 2010-12-29 14:31:29 -0800 | [diff] [blame] | 398 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 399 | native void rsnAllocationData1D(long con, long id, int off, int mip, int count, Object d, int sizeBytes, int dt); |
| 400 | synchronized void nAllocationData1D(long id, int off, int mip, int count, Object d, int sizeBytes, Element.DataType dt) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 401 | validate(); |
Jason Sams | e729a94 | 2013-11-06 11:22:02 -0800 | [diff] [blame] | 402 | rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes, dt.mID); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 403 | } |
Alex Sakhartchouk | aae74ad | 2010-06-04 10:06:50 -0700 | [diff] [blame] | 404 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 405 | native void rsnAllocationElementData1D(long con,long id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes); |
| 406 | synchronized void nAllocationElementData1D(long id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 407 | validate(); |
Jason Sams | 49a05d7 | 2010-12-29 14:31:29 -0800 | [diff] [blame] | 408 | rsnAllocationElementData1D(mContext, id, xoff, mip, compIdx, d, sizeBytes); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 409 | } |
Alex Sakhartchouk | 9b949fc | 2010-06-24 17:15:34 -0700 | [diff] [blame] | 410 | |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 411 | native void rsnAllocationData2D(long con, |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 412 | long dstAlloc, int dstXoff, int dstYoff, |
Alex Sakhartchouk | 304b1f5 | 2011-06-14 11:13:19 -0700 | [diff] [blame] | 413 | int dstMip, int dstFace, |
| 414 | int width, int height, |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 415 | long srcAlloc, int srcXoff, int srcYoff, |
Alex Sakhartchouk | 304b1f5 | 2011-06-14 11:13:19 -0700 | [diff] [blame] | 416 | int srcMip, int srcFace); |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 417 | synchronized void nAllocationData2D(long dstAlloc, int dstXoff, int dstYoff, |
Alex Sakhartchouk | 304b1f5 | 2011-06-14 11:13:19 -0700 | [diff] [blame] | 418 | int dstMip, int dstFace, |
| 419 | int width, int height, |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 420 | long srcAlloc, int srcXoff, int srcYoff, |
Alex Sakhartchouk | 304b1f5 | 2011-06-14 11:13:19 -0700 | [diff] [blame] | 421 | int srcMip, int srcFace) { |
| 422 | validate(); |
| 423 | rsnAllocationData2D(mContext, |
| 424 | dstAlloc, dstXoff, dstYoff, |
| 425 | dstMip, dstFace, |
| 426 | width, height, |
| 427 | srcAlloc, srcXoff, srcYoff, |
| 428 | srcMip, srcFace); |
| 429 | } |
| 430 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 431 | native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face, |
Jason Sams | e729a94 | 2013-11-06 11:22:02 -0800 | [diff] [blame] | 432 | int w, int h, Object d, int sizeBytes, int dt); |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 433 | synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face, |
Jason Sams | e729a94 | 2013-11-06 11:22:02 -0800 | [diff] [blame] | 434 | int w, int h, Object d, int sizeBytes, Element.DataType dt) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 435 | validate(); |
Jason Sams | e729a94 | 2013-11-06 11:22:02 -0800 | [diff] [blame] | 436 | rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes, dt.mID); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 437 | } |
Jason Sams | 21659ac | 2013-11-06 15:08:07 -0800 | [diff] [blame] | 438 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 439 | native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face, Bitmap b); |
| 440 | synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face, Bitmap b) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 441 | validate(); |
Jason Sams | fa445b9 | 2011-01-07 17:00:07 -0800 | [diff] [blame] | 442 | rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, b); |
| 443 | } |
Jason Sams | 49a05d7 | 2010-12-29 14:31:29 -0800 | [diff] [blame] | 444 | |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 445 | native void rsnAllocationData3D(long con, |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 446 | long dstAlloc, int dstXoff, int dstYoff, int dstZoff, |
Jason Sams | b05d689 | 2013-04-09 15:59:24 -0700 | [diff] [blame] | 447 | int dstMip, |
| 448 | int width, int height, int depth, |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 449 | long srcAlloc, int srcXoff, int srcYoff, int srcZoff, |
Jason Sams | b05d689 | 2013-04-09 15:59:24 -0700 | [diff] [blame] | 450 | int srcMip); |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 451 | synchronized void nAllocationData3D(long dstAlloc, int dstXoff, int dstYoff, int dstZoff, |
Jason Sams | b05d689 | 2013-04-09 15:59:24 -0700 | [diff] [blame] | 452 | int dstMip, |
| 453 | int width, int height, int depth, |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 454 | long srcAlloc, int srcXoff, int srcYoff, int srcZoff, |
Jason Sams | b05d689 | 2013-04-09 15:59:24 -0700 | [diff] [blame] | 455 | int srcMip) { |
| 456 | validate(); |
| 457 | rsnAllocationData3D(mContext, |
| 458 | dstAlloc, dstXoff, dstYoff, dstZoff, |
| 459 | dstMip, width, height, depth, |
| 460 | srcAlloc, srcXoff, srcYoff, srcZoff, srcMip); |
| 461 | } |
| 462 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 463 | native void rsnAllocationData3D(long con, long id, int xoff, int yoff, int zoff, int mip, |
Jason Sams | e729a94 | 2013-11-06 11:22:02 -0800 | [diff] [blame] | 464 | int w, int h, int depth, Object d, int sizeBytes, int dt); |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 465 | synchronized void nAllocationData3D(long id, int xoff, int yoff, int zoff, int mip, |
Jason Sams | e729a94 | 2013-11-06 11:22:02 -0800 | [diff] [blame] | 466 | int w, int h, int depth, Object d, int sizeBytes, Element.DataType dt) { |
Jason Sams | b05d689 | 2013-04-09 15:59:24 -0700 | [diff] [blame] | 467 | validate(); |
Jason Sams | e729a94 | 2013-11-06 11:22:02 -0800 | [diff] [blame] | 468 | rsnAllocationData3D(mContext, id, xoff, yoff, zoff, mip, w, h, depth, d, sizeBytes, dt.mID); |
Jason Sams | b05d689 | 2013-04-09 15:59:24 -0700 | [diff] [blame] | 469 | } |
Jason Sams | b05d689 | 2013-04-09 15:59:24 -0700 | [diff] [blame] | 470 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 471 | native void rsnAllocationRead(long con, long id, Object d, int dt); |
| 472 | synchronized void nAllocationRead(long id, Object d, Element.DataType dt) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 473 | validate(); |
Jason Sams | 21659ac | 2013-11-06 15:08:07 -0800 | [diff] [blame] | 474 | rsnAllocationRead(mContext, id, d, dt.mID); |
Jason Sams | fa445b9 | 2011-01-07 17:00:07 -0800 | [diff] [blame] | 475 | } |
Jason Sams | 21659ac | 2013-11-06 15:08:07 -0800 | [diff] [blame] | 476 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 477 | native void rsnAllocationRead1D(long con, long id, int off, int mip, int count, Object d, |
Jason Sams | 21659ac | 2013-11-06 15:08:07 -0800 | [diff] [blame] | 478 | int sizeBytes, int dt); |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 479 | synchronized void nAllocationRead1D(long id, int off, int mip, int count, Object d, |
Jason Sams | 21659ac | 2013-11-06 15:08:07 -0800 | [diff] [blame] | 480 | int sizeBytes, Element.DataType dt) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 481 | validate(); |
Jason Sams | 21659ac | 2013-11-06 15:08:07 -0800 | [diff] [blame] | 482 | rsnAllocationRead1D(mContext, id, off, mip, count, d, sizeBytes, dt.mID); |
Jason Sams | fa445b9 | 2011-01-07 17:00:07 -0800 | [diff] [blame] | 483 | } |
Jason Sams | 21659ac | 2013-11-06 15:08:07 -0800 | [diff] [blame] | 484 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 485 | native void rsnAllocationRead2D(long con, long id, int xoff, int yoff, int mip, int face, |
Jason Sams | 21659ac | 2013-11-06 15:08:07 -0800 | [diff] [blame] | 486 | int w, int h, Object d, int sizeBytes, int dt); |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 487 | synchronized void nAllocationRead2D(long id, int xoff, int yoff, int mip, int face, |
Jason Sams | 21659ac | 2013-11-06 15:08:07 -0800 | [diff] [blame] | 488 | int w, int h, Object d, int sizeBytes, Element.DataType dt) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 489 | validate(); |
Jason Sams | 21659ac | 2013-11-06 15:08:07 -0800 | [diff] [blame] | 490 | rsnAllocationRead2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes, dt.mID); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 491 | } |
Jason Sams | 21659ac | 2013-11-06 15:08:07 -0800 | [diff] [blame] | 492 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 493 | native long rsnAllocationGetType(long con, long id); |
| 494 | synchronized long nAllocationGetType(long id) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 495 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 496 | return rsnAllocationGetType(mContext, id); |
| 497 | } |
Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 498 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 499 | native void rsnAllocationResize1D(long con, long id, int dimX); |
| 500 | synchronized void nAllocationResize1D(long id, int dimX) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 501 | validate(); |
Jason Sams | 5edc608 | 2010-10-05 13:32:49 -0700 | [diff] [blame] | 502 | rsnAllocationResize1D(mContext, id, dimX); |
| 503 | } |
Jason Sams | 5edc608 | 2010-10-05 13:32:49 -0700 | [diff] [blame] | 504 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 505 | native long rsnFileA3DCreateFromAssetStream(long con, int assetStream); |
| 506 | synchronized long nFileA3DCreateFromAssetStream(int assetStream) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 507 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 508 | return rsnFileA3DCreateFromAssetStream(mContext, assetStream); |
| 509 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 510 | native long rsnFileA3DCreateFromFile(long con, String path); |
| 511 | synchronized long nFileA3DCreateFromFile(String path) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 512 | validate(); |
Alex Sakhartchouk | b0253ea | 2011-01-07 11:12:08 -0800 | [diff] [blame] | 513 | return rsnFileA3DCreateFromFile(mContext, path); |
| 514 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 515 | native long rsnFileA3DCreateFromAsset(long con, AssetManager mgr, String path); |
| 516 | synchronized long nFileA3DCreateFromAsset(AssetManager mgr, String path) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 517 | validate(); |
Alex Sakhartchouk | b0253ea | 2011-01-07 11:12:08 -0800 | [diff] [blame] | 518 | return rsnFileA3DCreateFromAsset(mContext, mgr, path); |
| 519 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 520 | native int rsnFileA3DGetNumIndexEntries(long con, long fileA3D); |
| 521 | synchronized int nFileA3DGetNumIndexEntries(long fileA3D) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 522 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 523 | return rsnFileA3DGetNumIndexEntries(mContext, fileA3D); |
| 524 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 525 | native void rsnFileA3DGetIndexEntries(long con, long fileA3D, int numEntries, int[] IDs, String[] names); |
| 526 | synchronized void nFileA3DGetIndexEntries(long fileA3D, int numEntries, int[] IDs, String[] names) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 527 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 528 | rsnFileA3DGetIndexEntries(mContext, fileA3D, numEntries, IDs, names); |
| 529 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 530 | native int rsnFileA3DGetEntryByIndex(long con, long fileA3D, int index); |
| 531 | synchronized int nFileA3DGetEntryByIndex(long fileA3D, int index) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 532 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 533 | return rsnFileA3DGetEntryByIndex(mContext, fileA3D, index); |
| 534 | } |
Jason Sams | bd1c3ad | 2009-08-03 16:03:08 -0700 | [diff] [blame] | 535 | |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 536 | native int rsnFontCreateFromFile(long con, String fileName, float size, int dpi); |
Alex Sakhartchouk | e27cdee | 2010-12-17 11:41:08 -0800 | [diff] [blame] | 537 | synchronized int nFontCreateFromFile(String fileName, float size, int dpi) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 538 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 539 | return rsnFontCreateFromFile(mContext, fileName, size, dpi); |
| 540 | } |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 541 | native int rsnFontCreateFromAssetStream(long con, String name, float size, int dpi, int assetStream); |
Alex Sakhartchouk | b0253ea | 2011-01-07 11:12:08 -0800 | [diff] [blame] | 542 | synchronized int nFontCreateFromAssetStream(String name, float size, int dpi, int assetStream) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 543 | validate(); |
Alex Sakhartchouk | b0253ea | 2011-01-07 11:12:08 -0800 | [diff] [blame] | 544 | return rsnFontCreateFromAssetStream(mContext, name, size, dpi, assetStream); |
| 545 | } |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 546 | native int rsnFontCreateFromAsset(long con, AssetManager mgr, String path, float size, int dpi); |
Alex Sakhartchouk | b0253ea | 2011-01-07 11:12:08 -0800 | [diff] [blame] | 547 | synchronized int nFontCreateFromAsset(AssetManager mgr, String path, float size, int dpi) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 548 | validate(); |
Alex Sakhartchouk | b0253ea | 2011-01-07 11:12:08 -0800 | [diff] [blame] | 549 | return rsnFontCreateFromAsset(mContext, mgr, path, size, dpi); |
| 550 | } |
Jason Sams | 2253417 | 2009-08-04 16:58:20 -0700 | [diff] [blame] | 551 | |
Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 552 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 553 | native void rsnScriptBindAllocation(long con, long script, long alloc, int slot); |
| 554 | synchronized void nScriptBindAllocation(long script, long alloc, int slot) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 555 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 556 | rsnScriptBindAllocation(mContext, script, alloc, slot); |
| 557 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 558 | native void rsnScriptSetTimeZone(long con, long script, byte[] timeZone); |
| 559 | synchronized void nScriptSetTimeZone(long script, byte[] timeZone) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 560 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 561 | rsnScriptSetTimeZone(mContext, script, timeZone); |
| 562 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 563 | native void rsnScriptInvoke(long con, long id, int slot); |
| 564 | synchronized void nScriptInvoke(long id, int slot) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 565 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 566 | rsnScriptInvoke(mContext, id, slot); |
| 567 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 568 | native void rsnScriptForEach(long con, long id, int slot, long ain, long aout, byte[] params); |
| 569 | native void rsnScriptForEach(long con, long id, int slot, long ain, long aout); |
| 570 | native void rsnScriptForEachClipped(long con, long id, int slot, long ain, long aout, byte[] params, |
Tim Murray | eb8c29c | 2013-02-07 12:16:41 -0800 | [diff] [blame] | 571 | int xstart, int xend, int ystart, int yend, int zstart, int zend); |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 572 | native void rsnScriptForEachClipped(long con, long id, int slot, long ain, long aout, |
Stephen Hines | dac6ed0 | 2013-02-13 00:09:02 -0800 | [diff] [blame] | 573 | int xstart, int xend, int ystart, int yend, int zstart, int zend); |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 574 | synchronized void nScriptForEach(long id, int slot, long ain, long aout, byte[] params) { |
Jason Sams | 6e494d3 | 2011-04-27 16:33:11 -0700 | [diff] [blame] | 575 | validate(); |
| 576 | if (params == null) { |
| 577 | rsnScriptForEach(mContext, id, slot, ain, aout); |
| 578 | } else { |
| 579 | rsnScriptForEach(mContext, id, slot, ain, aout, params); |
| 580 | } |
| 581 | } |
Tim Murray | eb8c29c | 2013-02-07 12:16:41 -0800 | [diff] [blame] | 582 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 583 | synchronized void nScriptForEachClipped(long id, int slot, long ain, long aout, byte[] params, |
Tim Murray | eb8c29c | 2013-02-07 12:16:41 -0800 | [diff] [blame] | 584 | int xstart, int xend, int ystart, int yend, int zstart, int zend) { |
| 585 | validate(); |
Stephen Hines | dac6ed0 | 2013-02-13 00:09:02 -0800 | [diff] [blame] | 586 | if (params == null) { |
| 587 | rsnScriptForEachClipped(mContext, id, slot, ain, aout, xstart, xend, ystart, yend, zstart, zend); |
| 588 | } else { |
| 589 | rsnScriptForEachClipped(mContext, id, slot, ain, aout, params, xstart, xend, ystart, yend, zstart, zend); |
| 590 | } |
Tim Murray | eb8c29c | 2013-02-07 12:16:41 -0800 | [diff] [blame] | 591 | } |
| 592 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 593 | native void rsnScriptInvokeV(long con, long id, int slot, byte[] params); |
| 594 | synchronized void nScriptInvokeV(long id, int slot, byte[] params) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 595 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 596 | rsnScriptInvokeV(mContext, id, slot, params); |
| 597 | } |
Tim Murray | 7c4caad | 2013-04-10 16:21:40 -0700 | [diff] [blame] | 598 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 599 | native void rsnScriptSetVarI(long con, long id, int slot, int val); |
| 600 | synchronized void nScriptSetVarI(long id, int slot, int val) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 601 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 602 | rsnScriptSetVarI(mContext, id, slot, val); |
| 603 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 604 | native int rsnScriptGetVarI(long con, long id, int slot); |
| 605 | synchronized int nScriptGetVarI(long id, int slot) { |
Tim Murray | 7c4caad | 2013-04-10 16:21:40 -0700 | [diff] [blame] | 606 | validate(); |
| 607 | return rsnScriptGetVarI(mContext, id, slot); |
| 608 | } |
| 609 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 610 | native void rsnScriptSetVarJ(long con, long id, int slot, long val); |
| 611 | synchronized void nScriptSetVarJ(long id, int slot, long val) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 612 | validate(); |
Stephen Hines | 031ec58c | 2010-10-11 10:54:21 -0700 | [diff] [blame] | 613 | rsnScriptSetVarJ(mContext, id, slot, val); |
| 614 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 615 | native long rsnScriptGetVarJ(long con, long id, int slot); |
| 616 | synchronized long nScriptGetVarJ(long id, int slot) { |
Tim Murray | 7c4caad | 2013-04-10 16:21:40 -0700 | [diff] [blame] | 617 | validate(); |
| 618 | return rsnScriptGetVarJ(mContext, id, slot); |
| 619 | } |
| 620 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 621 | native void rsnScriptSetVarF(long con, long id, int slot, float val); |
| 622 | synchronized void nScriptSetVarF(long id, int slot, float val) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 623 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 624 | rsnScriptSetVarF(mContext, id, slot, val); |
| 625 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 626 | native float rsnScriptGetVarF(long con, long id, int slot); |
| 627 | synchronized float nScriptGetVarF(long id, int slot) { |
Tim Murray | 7c4caad | 2013-04-10 16:21:40 -0700 | [diff] [blame] | 628 | validate(); |
| 629 | return rsnScriptGetVarF(mContext, id, slot); |
| 630 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 631 | native void rsnScriptSetVarD(long con, long id, int slot, double val); |
| 632 | synchronized void nScriptSetVarD(long id, int slot, double val) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 633 | validate(); |
Stephen Hines | ca54ec3 | 2010-09-20 17:20:30 -0700 | [diff] [blame] | 634 | rsnScriptSetVarD(mContext, id, slot, val); |
| 635 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 636 | native double rsnScriptGetVarD(long con, long id, int slot); |
| 637 | synchronized double nScriptGetVarD(long id, int slot) { |
Tim Murray | 7c4caad | 2013-04-10 16:21:40 -0700 | [diff] [blame] | 638 | validate(); |
| 639 | return rsnScriptGetVarD(mContext, id, slot); |
| 640 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 641 | native void rsnScriptSetVarV(long con, long id, int slot, byte[] val); |
| 642 | synchronized void nScriptSetVarV(long id, int slot, byte[] val) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 643 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 644 | rsnScriptSetVarV(mContext, id, slot, val); |
| 645 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 646 | native void rsnScriptGetVarV(long con, long id, int slot, byte[] val); |
| 647 | synchronized void nScriptGetVarV(long id, int slot, byte[] val) { |
Tim Murray | 7c4caad | 2013-04-10 16:21:40 -0700 | [diff] [blame] | 648 | validate(); |
| 649 | rsnScriptGetVarV(mContext, id, slot, val); |
| 650 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 651 | native void rsnScriptSetVarVE(long con, long id, int slot, byte[] val, |
| 652 | long e, int[] dims); |
| 653 | synchronized void nScriptSetVarVE(long id, int slot, byte[] val, |
| 654 | long e, int[] dims) { |
Stephen Hines | adeb809 | 2012-04-20 14:26:06 -0700 | [diff] [blame] | 655 | validate(); |
| 656 | rsnScriptSetVarVE(mContext, id, slot, val, e, dims); |
| 657 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 658 | native void rsnScriptSetVarObj(long con, long id, int slot, long val); |
| 659 | synchronized void nScriptSetVarObj(long id, int slot, long val) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 660 | validate(); |
Jason Sams | 6f4cf0b | 2010-11-16 17:37:02 -0800 | [diff] [blame] | 661 | rsnScriptSetVarObj(mContext, id, slot, val); |
| 662 | } |
Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 663 | |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 664 | native int rsnScriptCCreate(long con, String resName, String cacheDir, |
Jason Sams | e4a06c5 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 665 | byte[] script, int length); |
| 666 | synchronized int nScriptCCreate(String resName, String cacheDir, byte[] script, int length) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 667 | validate(); |
Jason Sams | e4a06c5 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 668 | return rsnScriptCCreate(mContext, resName, cacheDir, script, length); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 669 | } |
Jason Sams | ebfb436 | 2009-09-23 13:57:02 -0700 | [diff] [blame] | 670 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 671 | native long rsnScriptIntrinsicCreate(long con, int id, long eid); |
| 672 | synchronized long nScriptIntrinsicCreate(int id, long eid) { |
Jason Sams | 6ab9768 | 2012-08-10 12:09:43 -0700 | [diff] [blame] | 673 | validate(); |
| 674 | return rsnScriptIntrinsicCreate(mContext, id, eid); |
| 675 | } |
| 676 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 677 | native long rsnScriptKernelIDCreate(long con, long sid, int slot, int sig); |
| 678 | synchronized long nScriptKernelIDCreate(long sid, int slot, int sig) { |
Jason Sams | 08a8158 | 2012-09-18 12:32:10 -0700 | [diff] [blame] | 679 | validate(); |
| 680 | return rsnScriptKernelIDCreate(mContext, sid, slot, sig); |
| 681 | } |
| 682 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 683 | native long rsnScriptFieldIDCreate(long con, long sid, int slot); |
| 684 | synchronized long nScriptFieldIDCreate(long sid, int slot) { |
Jason Sams | 08a8158 | 2012-09-18 12:32:10 -0700 | [diff] [blame] | 685 | validate(); |
| 686 | return rsnScriptFieldIDCreate(mContext, sid, slot); |
| 687 | } |
| 688 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 689 | native long rsnScriptGroupCreate(long con, int[] kernels, int[] src, int[] dstk, int[] dstf, int[] types); |
| 690 | synchronized long nScriptGroupCreate(int[] kernels, int[] src, int[] dstk, int[] dstf, int[] types) { |
Jason Sams | 08a8158 | 2012-09-18 12:32:10 -0700 | [diff] [blame] | 691 | validate(); |
| 692 | return rsnScriptGroupCreate(mContext, kernels, src, dstk, dstf, types); |
| 693 | } |
| 694 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 695 | native void rsnScriptGroupSetInput(long con, long group, long kernel, long alloc); |
| 696 | synchronized void nScriptGroupSetInput(long group, long kernel, long alloc) { |
Jason Sams | 08a8158 | 2012-09-18 12:32:10 -0700 | [diff] [blame] | 697 | validate(); |
| 698 | rsnScriptGroupSetInput(mContext, group, kernel, alloc); |
| 699 | } |
| 700 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 701 | native void rsnScriptGroupSetOutput(long con, long group, long kernel, long alloc); |
| 702 | synchronized void nScriptGroupSetOutput(long group, long kernel, long alloc) { |
Jason Sams | 08a8158 | 2012-09-18 12:32:10 -0700 | [diff] [blame] | 703 | validate(); |
| 704 | rsnScriptGroupSetOutput(mContext, group, kernel, alloc); |
| 705 | } |
| 706 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 707 | native void rsnScriptGroupExecute(long con, long group); |
| 708 | synchronized void nScriptGroupExecute(long group) { |
Jason Sams | 08a8158 | 2012-09-18 12:32:10 -0700 | [diff] [blame] | 709 | validate(); |
| 710 | rsnScriptGroupExecute(mContext, group); |
| 711 | } |
| 712 | |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 713 | native int rsnSamplerCreate(long con, int magFilter, int minFilter, |
Alex Sakhartchouk | a89094a | 2011-05-04 17:45:36 -0700 | [diff] [blame] | 714 | int wrapS, int wrapT, int wrapR, float aniso); |
| 715 | synchronized int nSamplerCreate(int magFilter, int minFilter, |
| 716 | int wrapS, int wrapT, int wrapR, float aniso) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 717 | validate(); |
Alex Sakhartchouk | a89094a | 2011-05-04 17:45:36 -0700 | [diff] [blame] | 718 | return rsnSamplerCreate(mContext, magFilter, minFilter, wrapS, wrapT, wrapR, aniso); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 719 | } |
Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 720 | |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 721 | native int rsnProgramStoreCreate(long con, boolean r, boolean g, boolean b, boolean a, |
Jason Sams | 331bf9b | 2011-04-06 11:23:54 -0700 | [diff] [blame] | 722 | boolean depthMask, boolean dither, |
| 723 | int srcMode, int dstMode, int depthFunc); |
| 724 | synchronized int nProgramStoreCreate(boolean r, boolean g, boolean b, boolean a, |
| 725 | boolean depthMask, boolean dither, |
| 726 | int srcMode, int dstMode, int depthFunc) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 727 | validate(); |
Jason Sams | bd184c5 | 2011-04-06 11:44:47 -0700 | [diff] [blame] | 728 | return rsnProgramStoreCreate(mContext, r, g, b, a, depthMask, dither, srcMode, |
| 729 | dstMode, depthFunc); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 730 | } |
Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 731 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 732 | native long rsnProgramRasterCreate(long con, boolean pointSprite, int cullMode); |
| 733 | synchronized long nProgramRasterCreate(boolean pointSprite, int cullMode) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 734 | validate(); |
Jason Sams | 94aaed3 | 2011-09-23 14:18:53 -0700 | [diff] [blame] | 735 | return rsnProgramRasterCreate(mContext, pointSprite, cullMode); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 736 | } |
Jason Sams | 1fe9b8c | 2009-06-11 14:46:10 -0700 | [diff] [blame] | 737 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 738 | native void rsnProgramBindConstants(long con, long pv, int slot, long mID); |
| 739 | synchronized void nProgramBindConstants(long pv, int slot, long mID) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 740 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 741 | rsnProgramBindConstants(mContext, pv, slot, mID); |
| 742 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 743 | native void rsnProgramBindTexture(long con, long vpf, int slot, long a); |
| 744 | synchronized void nProgramBindTexture(long vpf, int slot, long a) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 745 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 746 | rsnProgramBindTexture(mContext, vpf, slot, a); |
| 747 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 748 | native void rsnProgramBindSampler(long con, long vpf, int slot, long s); |
| 749 | synchronized void nProgramBindSampler(long vpf, int slot, long s) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 750 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 751 | rsnProgramBindSampler(mContext, vpf, slot, s); |
| 752 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 753 | native long rsnProgramFragmentCreate(long con, String shader, String[] texNames, int[] params); |
| 754 | synchronized long nProgramFragmentCreate(String shader, String[] texNames, int[] params) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 755 | validate(); |
Alex Sakhartchouk | 2123b46 | 2012-02-15 16:21:46 -0800 | [diff] [blame] | 756 | return rsnProgramFragmentCreate(mContext, shader, texNames, params); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 757 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 758 | native long rsnProgramVertexCreate(long con, String shader, String[] texNames, int[] params); |
| 759 | synchronized long nProgramVertexCreate(String shader, String[] texNames, int[] params) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 760 | validate(); |
Alex Sakhartchouk | 2123b46 | 2012-02-15 16:21:46 -0800 | [diff] [blame] | 761 | return rsnProgramVertexCreate(mContext, shader, texNames, params); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 762 | } |
Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 763 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 764 | native long rsnMeshCreate(long con, int[] vtx, int[] idx, int[] prim); |
| 765 | synchronized long nMeshCreate(int[] vtx, int[] idx, int[] prim) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 766 | validate(); |
Alex Sakhartchouk | 25999a0 | 2011-05-12 10:38:03 -0700 | [diff] [blame] | 767 | return rsnMeshCreate(mContext, vtx, idx, prim); |
Alex Sakhartchouk | 9d71e21 | 2010-11-08 15:10:52 -0800 | [diff] [blame] | 768 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 769 | native int rsnMeshGetVertexBufferCount(long con, long id); |
| 770 | synchronized int nMeshGetVertexBufferCount(long id) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 771 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 772 | return rsnMeshGetVertexBufferCount(mContext, id); |
| 773 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 774 | native int rsnMeshGetIndexCount(long con, long id); |
| 775 | synchronized int nMeshGetIndexCount(long id) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 776 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 777 | return rsnMeshGetIndexCount(mContext, id); |
| 778 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 779 | native void rsnMeshGetVertices(long con, long id, int[] vtxIds, int vtxIdCount); |
| 780 | synchronized void nMeshGetVertices(long id, int[] vtxIds, int vtxIdCount) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 781 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 782 | rsnMeshGetVertices(mContext, id, vtxIds, vtxIdCount); |
| 783 | } |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 784 | native void rsnMeshGetIndices(long con, long id, int[] idxIds, int[] primitives, int vtxIdCount); |
| 785 | synchronized void nMeshGetIndices(long id, int[] idxIds, int[] primitives, int vtxIdCount) { |
Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 786 | validate(); |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 787 | rsnMeshGetIndices(mContext, id, idxIds, primitives, vtxIdCount); |
| 788 | } |
| 789 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 790 | native long rsnPathCreate(long con, int prim, boolean isStatic, long vtx, int loop, float q); |
| 791 | synchronized long nPathCreate(int prim, boolean isStatic, long vtx, int loop, float q) { |
Jason Sams | f15ed01 | 2011-10-31 13:23:43 -0700 | [diff] [blame] | 792 | validate(); |
| 793 | return rsnPathCreate(mContext, prim, isStatic, vtx, loop, q); |
| 794 | } |
Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 795 | |
Tim Murray | eff663f | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 796 | long mDev; |
| 797 | long mContext; |
Romain Guy | 650a3eb | 2009-08-31 14:06:43 -0700 | [diff] [blame] | 798 | @SuppressWarnings({"FieldCanBeLocal"}) |
Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 799 | MessageThread mMessageThread; |
Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 800 | |
Jason Sams | 8cb39de | 2010-06-01 15:47:01 -0700 | [diff] [blame] | 801 | Element mElement_U8; |
| 802 | Element mElement_I8; |
| 803 | Element mElement_U16; |
| 804 | Element mElement_I16; |
| 805 | Element mElement_U32; |
| 806 | Element mElement_I32; |
Stephen Hines | 52d8363 | 2010-10-11 16:10:42 -0700 | [diff] [blame] | 807 | Element mElement_U64; |
Stephen Hines | ef1dac2 | 2010-10-01 15:39:33 -0700 | [diff] [blame] | 808 | Element mElement_I64; |
Jason Sams | 8cb39de | 2010-06-01 15:47:01 -0700 | [diff] [blame] | 809 | Element mElement_F32; |
Stephen Hines | 02f41705 | 2010-09-30 15:19:22 -0700 | [diff] [blame] | 810 | Element mElement_F64; |
Jason Sams | f110d4b | 2010-06-21 17:42:41 -0700 | [diff] [blame] | 811 | Element mElement_BOOLEAN; |
Jason Sams | 3c0dfba | 2009-09-27 17:50:38 -0700 | [diff] [blame] | 812 | |
Jason Sams | 8cb39de | 2010-06-01 15:47:01 -0700 | [diff] [blame] | 813 | Element mElement_ELEMENT; |
| 814 | Element mElement_TYPE; |
| 815 | Element mElement_ALLOCATION; |
| 816 | Element mElement_SAMPLER; |
| 817 | Element mElement_SCRIPT; |
| 818 | Element mElement_MESH; |
| 819 | Element mElement_PROGRAM_FRAGMENT; |
| 820 | Element mElement_PROGRAM_VERTEX; |
| 821 | Element mElement_PROGRAM_RASTER; |
| 822 | Element mElement_PROGRAM_STORE; |
Stephen Hines | 3a29141 | 2012-04-11 17:27:29 -0700 | [diff] [blame] | 823 | Element mElement_FONT; |
Jason Sams | a70f416 | 2010-03-26 15:33:42 -0700 | [diff] [blame] | 824 | |
Jason Sams | 3c0dfba | 2009-09-27 17:50:38 -0700 | [diff] [blame] | 825 | Element mElement_A_8; |
| 826 | Element mElement_RGB_565; |
| 827 | Element mElement_RGB_888; |
| 828 | Element mElement_RGBA_5551; |
| 829 | Element mElement_RGBA_4444; |
| 830 | Element mElement_RGBA_8888; |
| 831 | |
Jason Sams | 8cb39de | 2010-06-01 15:47:01 -0700 | [diff] [blame] | 832 | Element mElement_FLOAT_2; |
| 833 | Element mElement_FLOAT_3; |
| 834 | Element mElement_FLOAT_4; |
Stephen Hines | 836c4a5 | 2011-06-01 14:38:10 -0700 | [diff] [blame] | 835 | |
| 836 | Element mElement_DOUBLE_2; |
| 837 | Element mElement_DOUBLE_3; |
| 838 | Element mElement_DOUBLE_4; |
| 839 | |
| 840 | Element mElement_UCHAR_2; |
| 841 | Element mElement_UCHAR_3; |
Jason Sams | 8cb39de | 2010-06-01 15:47:01 -0700 | [diff] [blame] | 842 | Element mElement_UCHAR_4; |
Jason Sams | 7d787b4 | 2009-11-15 12:14:26 -0800 | [diff] [blame] | 843 | |
Stephen Hines | 836c4a5 | 2011-06-01 14:38:10 -0700 | [diff] [blame] | 844 | Element mElement_CHAR_2; |
| 845 | Element mElement_CHAR_3; |
| 846 | Element mElement_CHAR_4; |
| 847 | |
| 848 | Element mElement_USHORT_2; |
| 849 | Element mElement_USHORT_3; |
| 850 | Element mElement_USHORT_4; |
| 851 | |
| 852 | Element mElement_SHORT_2; |
| 853 | Element mElement_SHORT_3; |
| 854 | Element mElement_SHORT_4; |
| 855 | |
| 856 | Element mElement_UINT_2; |
| 857 | Element mElement_UINT_3; |
| 858 | Element mElement_UINT_4; |
| 859 | |
| 860 | Element mElement_INT_2; |
| 861 | Element mElement_INT_3; |
| 862 | Element mElement_INT_4; |
| 863 | |
| 864 | Element mElement_ULONG_2; |
| 865 | Element mElement_ULONG_3; |
| 866 | Element mElement_ULONG_4; |
| 867 | |
| 868 | Element mElement_LONG_2; |
| 869 | Element mElement_LONG_3; |
| 870 | Element mElement_LONG_4; |
| 871 | |
Tim Murray | 932e78e | 2013-09-03 11:42:26 -0700 | [diff] [blame] | 872 | Element mElement_YUV; |
| 873 | |
Jason Sams | 1d45c47 | 2010-08-25 14:31:48 -0700 | [diff] [blame] | 874 | Element mElement_MATRIX_4X4; |
| 875 | Element mElement_MATRIX_3X3; |
| 876 | Element mElement_MATRIX_2X2; |
| 877 | |
Jason Sams | 4d33993 | 2010-05-11 14:03:58 -0700 | [diff] [blame] | 878 | Sampler mSampler_CLAMP_NEAREST; |
| 879 | Sampler mSampler_CLAMP_LINEAR; |
| 880 | Sampler mSampler_CLAMP_LINEAR_MIP_LINEAR; |
| 881 | Sampler mSampler_WRAP_NEAREST; |
| 882 | Sampler mSampler_WRAP_LINEAR; |
| 883 | Sampler mSampler_WRAP_LINEAR_MIP_LINEAR; |
Tim Murray | 6b9b2ca | 2013-02-15 13:25:55 -0800 | [diff] [blame] | 884 | Sampler mSampler_MIRRORED_REPEAT_NEAREST; |
| 885 | Sampler mSampler_MIRRORED_REPEAT_LINEAR; |
| 886 | Sampler mSampler_MIRRORED_REPEAT_LINEAR_MIP_LINEAR; |
Jason Sams | 4d33993 | 2010-05-11 14:03:58 -0700 | [diff] [blame] | 887 | |
Alex Sakhartchouk | d36f248 | 2010-08-24 11:37:33 -0700 | [diff] [blame] | 888 | ProgramStore mProgramStore_BLEND_NONE_DEPTH_TEST; |
| 889 | ProgramStore mProgramStore_BLEND_NONE_DEPTH_NO_DEPTH; |
Alex Sakhartchouk | d36f248 | 2010-08-24 11:37:33 -0700 | [diff] [blame] | 890 | ProgramStore mProgramStore_BLEND_ALPHA_DEPTH_TEST; |
| 891 | ProgramStore mProgramStore_BLEND_ALPHA_DEPTH_NO_DEPTH; |
Alex Sakhartchouk | 32e09b5 | 2010-08-23 10:24:10 -0700 | [diff] [blame] | 892 | |
Alex Sakhartchouk | d36f248 | 2010-08-24 11:37:33 -0700 | [diff] [blame] | 893 | ProgramRaster mProgramRaster_CULL_BACK; |
| 894 | ProgramRaster mProgramRaster_CULL_FRONT; |
| 895 | ProgramRaster mProgramRaster_CULL_NONE; |
Alex Sakhartchouk | 32e09b5 | 2010-08-23 10:24:10 -0700 | [diff] [blame] | 896 | |
Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 897 | /////////////////////////////////////////////////////////////////////////////////// |
Jack Palevich | 43702d8 | 2009-05-28 13:38:16 -0700 | [diff] [blame] | 898 | // |
Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 899 | |
Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 900 | /** |
Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 901 | * The base class from which an application should derive in order |
| 902 | * to receive RS messages from scripts. When a script calls {@code |
| 903 | * rsSendToClient}, the data fields will be filled, and the run |
| 904 | * method will be called on a separate thread. This will occur |
| 905 | * some time after {@code rsSendToClient} completes in the script, |
| 906 | * as {@code rsSendToClient} is asynchronous. Message handlers are |
| 907 | * not guaranteed to have completed when {@link |
| 908 | * android.renderscript.RenderScript#finish} returns. |
Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 909 | * |
| 910 | */ |
Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 911 | public static class RSMessageHandler implements Runnable { |
Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 912 | protected int[] mData; |
| 913 | protected int mID; |
Jason Sams | 1c41517 | 2010-11-08 17:06:46 -0800 | [diff] [blame] | 914 | protected int mLength; |
Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 915 | public void run() { |
| 916 | } |
| 917 | } |
Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 918 | /** |
Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 919 | * If an application is expecting messages, it should set this |
| 920 | * field to an instance of {@link RSMessageHandler}. This |
| 921 | * instance will receive all the user messages sent from {@code |
| 922 | * sendToClient} by scripts from this context. |
Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 923 | * |
| 924 | */ |
Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 925 | RSMessageHandler mMessageCallback = null; |
| 926 | |
| 927 | public void setMessageHandler(RSMessageHandler msg) { |
| 928 | mMessageCallback = msg; |
| 929 | } |
| 930 | public RSMessageHandler getMessageHandler() { |
| 931 | return mMessageCallback; |
| 932 | } |
Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 933 | |
Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 934 | /** |
Jason Sams | 02d56d9 | 2013-04-12 16:40:50 -0700 | [diff] [blame] | 935 | * Place a message into the message queue to be sent back to the message |
| 936 | * handler once all previous commands have been executed. |
Jason Sams | 455d644 | 2013-02-05 19:20:18 -0800 | [diff] [blame] | 937 | * |
| 938 | * @param id |
| 939 | * @param data |
| 940 | */ |
| 941 | public void sendMessage(int id, int[] data) { |
| 942 | nContextSendMessage(id, data); |
| 943 | } |
| 944 | |
| 945 | /** |
Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 946 | * The runtime error handler base class. An application should derive from this class |
| 947 | * if it wishes to install an error handler. When errors occur at runtime, |
| 948 | * the fields in this class will be filled, and the run method will be called. |
Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 949 | * |
| 950 | */ |
Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 951 | public static class RSErrorHandler implements Runnable { |
Jason Sams | 1c41517 | 2010-11-08 17:06:46 -0800 | [diff] [blame] | 952 | protected String mErrorMessage; |
| 953 | protected int mErrorNum; |
| 954 | public void run() { |
| 955 | } |
| 956 | } |
Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 957 | |
Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 958 | /** |
Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 959 | * Application Error handler. All runtime errors will be dispatched to the |
| 960 | * instance of RSAsyncError set here. If this field is null a |
Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 961 | * {@link RSRuntimeException} will instead be thrown with details about the error. |
Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 962 | * This will cause program termaination. |
| 963 | * |
| 964 | */ |
Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 965 | RSErrorHandler mErrorCallback = null; |
| 966 | |
| 967 | public void setErrorHandler(RSErrorHandler msg) { |
| 968 | mErrorCallback = msg; |
| 969 | } |
| 970 | public RSErrorHandler getErrorHandler() { |
| 971 | return mErrorCallback; |
| 972 | } |
Jason Sams | 1c41517 | 2010-11-08 17:06:46 -0800 | [diff] [blame] | 973 | |
Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 974 | /** |
Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 975 | * RenderScript worker thread priority enumeration. The default value is |
| 976 | * NORMAL. Applications wishing to do background processing should set |
| 977 | * their priority to LOW to avoid starving forground processes. |
Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 978 | */ |
Jason Sams | 7d787b4 | 2009-11-15 12:14:26 -0800 | [diff] [blame] | 979 | public enum Priority { |
Glenn Kasten | 260c77a | 2011-06-01 17:25:54 -0700 | [diff] [blame] | 980 | LOW (Process.THREAD_PRIORITY_BACKGROUND + (5 * Process.THREAD_PRIORITY_LESS_FAVORABLE)), |
| 981 | NORMAL (Process.THREAD_PRIORITY_DISPLAY); |
Jason Sams | 7d787b4 | 2009-11-15 12:14:26 -0800 | [diff] [blame] | 982 | |
| 983 | int mID; |
| 984 | Priority(int id) { |
| 985 | mID = id; |
| 986 | } |
| 987 | } |
| 988 | |
Jason Sams | 771bebb | 2009-12-07 12:40:12 -0800 | [diff] [blame] | 989 | void validate() { |
| 990 | if (mContext == 0) { |
Jason Sams | c1d6210 | 2010-11-04 14:32:19 -0700 | [diff] [blame] | 991 | throw new RSInvalidStateException("Calling RS with no Context active."); |
Jason Sams | 771bebb | 2009-12-07 12:40:12 -0800 | [diff] [blame] | 992 | } |
| 993 | } |
| 994 | |
Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 995 | |
Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 996 | /** |
Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 997 | * Change the priority of the worker threads for this context. |
| 998 | * |
| 999 | * @param p New priority to be set. |
| 1000 | */ |
Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 1001 | public void setPriority(Priority p) { |
Jason Sams | 5dbfe93 | 2010-01-27 14:41:43 -0800 | [diff] [blame] | 1002 | validate(); |
Jason Sams | 7d787b4 | 2009-11-15 12:14:26 -0800 | [diff] [blame] | 1003 | nContextSetPriority(p.mID); |
| 1004 | } |
| 1005 | |
Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 1006 | static class MessageThread extends Thread { |
Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 1007 | RenderScript mRS; |
| 1008 | boolean mRun = true; |
Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 1009 | int[] mAuxData = new int[2]; |
Jason Sams | 1c41517 | 2010-11-08 17:06:46 -0800 | [diff] [blame] | 1010 | |
Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 1011 | static final int RS_MESSAGE_TO_CLIENT_NONE = 0; |
| 1012 | static final int RS_MESSAGE_TO_CLIENT_EXCEPTION = 1; |
| 1013 | static final int RS_MESSAGE_TO_CLIENT_RESIZE = 2; |
| 1014 | static final int RS_MESSAGE_TO_CLIENT_ERROR = 3; |
| 1015 | static final int RS_MESSAGE_TO_CLIENT_USER = 4; |
Jason Sams | 739c826 | 2013-04-11 18:07:52 -0700 | [diff] [blame] | 1016 | static final int RS_MESSAGE_TO_CLIENT_NEW_BUFFER = 5; |
Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 1017 | |
Stephen Hines | 42028a8 | 2013-04-17 19:22:01 -0700 | [diff] [blame] | 1018 | static final int RS_ERROR_FATAL_DEBUG = 0x0800; |
Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 1019 | static final int RS_ERROR_FATAL_UNKNOWN = 0x1000; |
Jason Sams | add9d96 | 2010-11-22 16:20:16 -0800 | [diff] [blame] | 1020 | |
Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 1021 | MessageThread(RenderScript rs) { |
| 1022 | super("RSMessageThread"); |
| 1023 | mRS = rs; |
| 1024 | |
| 1025 | } |
| 1026 | |
| 1027 | public void run() { |
| 1028 | // This function is a temporary solution. The final solution will |
| 1029 | // used typed allocations where the message id is the type indicator. |
| 1030 | int[] rbuf = new int[16]; |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 1031 | mRS.nContextInitToClient(mRS.mContext); |
Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 1032 | while(mRun) { |
Jason Sams | 1d45c47 | 2010-08-25 14:31:48 -0700 | [diff] [blame] | 1033 | rbuf[0] = 0; |
Jason Sams | edbfabd | 2011-05-17 15:01:29 -0700 | [diff] [blame] | 1034 | int msg = mRS.nContextPeekMessage(mRS.mContext, mAuxData); |
Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 1035 | int size = mAuxData[1]; |
| 1036 | int subID = mAuxData[0]; |
Jason Sams | 1c41517 | 2010-11-08 17:06:46 -0800 | [diff] [blame] | 1037 | |
| 1038 | if (msg == RS_MESSAGE_TO_CLIENT_USER) { |
| 1039 | if ((size>>2) >= rbuf.length) { |
| 1040 | rbuf = new int[(size + 3) >> 2]; |
| 1041 | } |
Jason Sams | edbfabd | 2011-05-17 15:01:29 -0700 | [diff] [blame] | 1042 | if (mRS.nContextGetUserMessage(mRS.mContext, rbuf) != |
| 1043 | RS_MESSAGE_TO_CLIENT_USER) { |
Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 1044 | throw new RSDriverException("Error processing message from RenderScript."); |
Jason Sams | edbfabd | 2011-05-17 15:01:29 -0700 | [diff] [blame] | 1045 | } |
Jason Sams | 1c41517 | 2010-11-08 17:06:46 -0800 | [diff] [blame] | 1046 | |
| 1047 | if(mRS.mMessageCallback != null) { |
| 1048 | mRS.mMessageCallback.mData = rbuf; |
| 1049 | mRS.mMessageCallback.mID = subID; |
| 1050 | mRS.mMessageCallback.mLength = size; |
| 1051 | mRS.mMessageCallback.run(); |
Jason Sams | 1d45c47 | 2010-08-25 14:31:48 -0700 | [diff] [blame] | 1052 | } else { |
Jason Sams | 1c41517 | 2010-11-08 17:06:46 -0800 | [diff] [blame] | 1053 | throw new RSInvalidStateException("Received a message from the script with no message handler installed."); |
Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 1054 | } |
Stephen Hines | ab98bb6 | 2010-09-24 14:38:30 -0700 | [diff] [blame] | 1055 | continue; |
Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 1056 | } |
Jason Sams | 1c41517 | 2010-11-08 17:06:46 -0800 | [diff] [blame] | 1057 | |
| 1058 | if (msg == RS_MESSAGE_TO_CLIENT_ERROR) { |
| 1059 | String e = mRS.nContextGetErrorMessage(mRS.mContext); |
| 1060 | |
Stephen Hines | 42028a8 | 2013-04-17 19:22:01 -0700 | [diff] [blame] | 1061 | // Throw RSRuntimeException under the following conditions: |
| 1062 | // |
| 1063 | // 1) It is an unknown fatal error. |
| 1064 | // 2) It is a debug fatal error, and we are not in a |
| 1065 | // debug context. |
| 1066 | // 3) It is a debug fatal error, and we do not have an |
| 1067 | // error callback. |
| 1068 | if (subID >= RS_ERROR_FATAL_UNKNOWN || |
| 1069 | (subID >= RS_ERROR_FATAL_DEBUG && |
| 1070 | (mRS.mContextType != ContextType.DEBUG || |
| 1071 | mRS.mErrorCallback == null))) { |
Jason Sams | add9d96 | 2010-11-22 16:20:16 -0800 | [diff] [blame] | 1072 | throw new RSRuntimeException("Fatal error " + subID + ", details: " + e); |
| 1073 | } |
| 1074 | |
Jason Sams | 1c41517 | 2010-11-08 17:06:46 -0800 | [diff] [blame] | 1075 | if(mRS.mErrorCallback != null) { |
| 1076 | mRS.mErrorCallback.mErrorMessage = e; |
| 1077 | mRS.mErrorCallback.mErrorNum = subID; |
| 1078 | mRS.mErrorCallback.run(); |
| 1079 | } else { |
Jason Sams | a4b7bc9 | 2013-02-05 15:05:39 -0800 | [diff] [blame] | 1080 | android.util.Log.e(LOG_TAG, "non fatal RS error, " + e); |
Stephen Hines | be74bdd | 2012-02-03 15:29:36 -0800 | [diff] [blame] | 1081 | // Do not throw here. In these cases, we do not have |
| 1082 | // a fatal error. |
Jason Sams | 1c41517 | 2010-11-08 17:06:46 -0800 | [diff] [blame] | 1083 | } |
| 1084 | continue; |
| 1085 | } |
| 1086 | |
Jason Sams | 739c826 | 2013-04-11 18:07:52 -0700 | [diff] [blame] | 1087 | if (msg == RS_MESSAGE_TO_CLIENT_NEW_BUFFER) { |
| 1088 | Allocation.sendBufferNotification(subID); |
| 1089 | continue; |
| 1090 | } |
| 1091 | |
Jason Sams | 1c41517 | 2010-11-08 17:06:46 -0800 | [diff] [blame] | 1092 | // 2: teardown. |
| 1093 | // But we want to avoid starving other threads during |
| 1094 | // teardown by yielding until the next line in the destructor |
| 1095 | // can execute to set mRun = false |
| 1096 | try { |
| 1097 | sleep(1, 0); |
| 1098 | } catch(InterruptedException e) { |
Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 1099 | } |
Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 1100 | } |
Tim Murray | da67deb | 2013-05-09 12:02:50 -0700 | [diff] [blame] | 1101 | //Log.d(LOG_TAG, "MessageThread exiting."); |
Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 1102 | } |
| 1103 | } |
| 1104 | |
Shih-wei Liao | 6b32fab | 2010-12-10 01:03:59 -0800 | [diff] [blame] | 1105 | RenderScript(Context ctx) { |
Stephen Hines | 42028a8 | 2013-04-17 19:22:01 -0700 | [diff] [blame] | 1106 | mContextType = ContextType.NORMAL; |
Jason Sams | 1a4e1f3e | 2012-02-24 17:51:24 -0800 | [diff] [blame] | 1107 | if (ctx != null) { |
| 1108 | mApplicationContext = ctx.getApplicationContext(); |
| 1109 | } |
Tim Murray | 06b4567 | 2014-01-07 11:13:56 -0800 | [diff] [blame^] | 1110 | mRWLock = new ReentrantReadWriteLock(); |
Shih-wei Liao | 6b32fab | 2010-12-10 01:03:59 -0800 | [diff] [blame] | 1111 | } |
| 1112 | |
Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 1113 | /** |
Shih-wei Liao | 6b32fab | 2010-12-10 01:03:59 -0800 | [diff] [blame] | 1114 | * Gets the application context associated with the RenderScript context. |
| 1115 | * |
| 1116 | * @return The application context. |
| 1117 | */ |
| 1118 | public final Context getApplicationContext() { |
| 1119 | return mApplicationContext; |
Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 1120 | } |
| 1121 | |
Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 1122 | /** |
Jason Sams | add26dc | 2013-02-22 18:43:45 -0800 | [diff] [blame] | 1123 | * @hide |
| 1124 | */ |
| 1125 | public static RenderScript create(Context ctx, int sdkVersion) { |
| 1126 | return create(ctx, sdkVersion, ContextType.NORMAL); |
| 1127 | } |
| 1128 | |
| 1129 | /** |
Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 1130 | * Create a RenderScript context. |
Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 1131 | * |
Jason Sams | 1a4e1f3e | 2012-02-24 17:51:24 -0800 | [diff] [blame] | 1132 | * @hide |
Shih-wei Liao | 6b32fab | 2010-12-10 01:03:59 -0800 | [diff] [blame] | 1133 | * @param ctx The context. |
Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 1134 | * @return RenderScript |
| 1135 | */ |
Jason Sams | add26dc | 2013-02-22 18:43:45 -0800 | [diff] [blame] | 1136 | public static RenderScript create(Context ctx, int sdkVersion, ContextType ct) { |
Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 1137 | if (!sInitialized) { |
| 1138 | Log.e(LOG_TAG, "RenderScript.create() called when disabled; someone is likely to crash"); |
| 1139 | return null; |
| 1140 | } |
| 1141 | |
Shih-wei Liao | 6b32fab | 2010-12-10 01:03:59 -0800 | [diff] [blame] | 1142 | RenderScript rs = new RenderScript(ctx); |
Jason Sams | 704ff64 | 2010-02-09 16:05:07 -0800 | [diff] [blame] | 1143 | |
| 1144 | rs.mDev = rs.nDeviceCreate(); |
Jason Sams | add26dc | 2013-02-22 18:43:45 -0800 | [diff] [blame] | 1145 | rs.mContext = rs.nContextCreate(rs.mDev, 0, sdkVersion, ct.mID); |
Stephen Hines | 42028a8 | 2013-04-17 19:22:01 -0700 | [diff] [blame] | 1146 | rs.mContextType = ct; |
Jason Sams | 2698536 | 2011-05-03 15:01:58 -0700 | [diff] [blame] | 1147 | if (rs.mContext == 0) { |
| 1148 | throw new RSDriverException("Failed to create RS context."); |
| 1149 | } |
Jason Sams | 704ff64 | 2010-02-09 16:05:07 -0800 | [diff] [blame] | 1150 | rs.mMessageThread = new MessageThread(rs); |
| 1151 | rs.mMessageThread.start(); |
Jason Sams | 704ff64 | 2010-02-09 16:05:07 -0800 | [diff] [blame] | 1152 | return rs; |
Jason Sams | efd9b6fb | 2009-11-03 13:58:36 -0800 | [diff] [blame] | 1153 | } |
| 1154 | |
Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 1155 | /** |
Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 1156 | * Create a RenderScript context. |
Jason Sams | 1a4e1f3e | 2012-02-24 17:51:24 -0800 | [diff] [blame] | 1157 | * |
| 1158 | * @param ctx The context. |
| 1159 | * @return RenderScript |
| 1160 | */ |
| 1161 | public static RenderScript create(Context ctx) { |
Jason Sams | add26dc | 2013-02-22 18:43:45 -0800 | [diff] [blame] | 1162 | return create(ctx, ContextType.NORMAL); |
| 1163 | } |
| 1164 | |
| 1165 | /** |
Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 1166 | * Create a RenderScript context. |
Jason Sams | add26dc | 2013-02-22 18:43:45 -0800 | [diff] [blame] | 1167 | * |
Jason Sams | add26dc | 2013-02-22 18:43:45 -0800 | [diff] [blame] | 1168 | * |
| 1169 | * @param ctx The context. |
Jason Sams | 02d56d9 | 2013-04-12 16:40:50 -0700 | [diff] [blame] | 1170 | * @param ct The type of context to be created. |
Jason Sams | add26dc | 2013-02-22 18:43:45 -0800 | [diff] [blame] | 1171 | * @return RenderScript |
| 1172 | */ |
| 1173 | public static RenderScript create(Context ctx, ContextType ct) { |
Jason Sams | 1a4e1f3e | 2012-02-24 17:51:24 -0800 | [diff] [blame] | 1174 | int v = ctx.getApplicationInfo().targetSdkVersion; |
Jason Sams | add26dc | 2013-02-22 18:43:45 -0800 | [diff] [blame] | 1175 | return create(ctx, v, ct); |
Jason Sams | 1a4e1f3e | 2012-02-24 17:51:24 -0800 | [diff] [blame] | 1176 | } |
| 1177 | |
Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 1178 | /** |
Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 1179 | * Print the currently available debugging information about the state of |
| 1180 | * the RS context to the log. |
| 1181 | * |
Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 1182 | */ |
Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 1183 | public void contextDump() { |
Jason Sams | 5dbfe93 | 2010-01-27 14:41:43 -0800 | [diff] [blame] | 1184 | validate(); |
Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 1185 | nContextDump(0); |
Jason Sams | 715333b | 2009-11-17 17:26:46 -0800 | [diff] [blame] | 1186 | } |
| 1187 | |
Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 1188 | /** |
Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 1189 | * Wait for any pending asynchronous opeations (such as copies to a RS |
| 1190 | * allocation or RS script executions) to complete. |
Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 1191 | * |
| 1192 | */ |
Jason Sams | 96ed4cf | 2010-06-15 12:15:57 -0700 | [diff] [blame] | 1193 | public void finish() { |
| 1194 | nContextFinish(); |
| 1195 | } |
| 1196 | |
Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 1197 | /** |
Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 1198 | * Destroys this RenderScript context. Once this function is called, |
| 1199 | * using this context or any objects belonging to this context is |
| 1200 | * illegal. |
Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 1201 | * |
| 1202 | */ |
Jason Sams | f5b4596 | 2009-08-25 14:49:07 -0700 | [diff] [blame] | 1203 | public void destroy() { |
Jason Sams | 5dbfe93 | 2010-01-27 14:41:43 -0800 | [diff] [blame] | 1204 | validate(); |
Tim Murray | 06b4567 | 2014-01-07 11:13:56 -0800 | [diff] [blame^] | 1205 | nContextFinish(); |
| 1206 | |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 1207 | nContextDeinitToClient(mContext); |
Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 1208 | mMessageThread.mRun = false; |
Jason Sams | a8bf942 | 2010-09-16 13:43:19 -0700 | [diff] [blame] | 1209 | try { |
| 1210 | mMessageThread.join(); |
| 1211 | } catch(InterruptedException e) { |
| 1212 | } |
Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 1213 | |
Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 1214 | nContextDestroy(); |
Jason Sams | f5b4596 | 2009-08-25 14:49:07 -0700 | [diff] [blame] | 1215 | |
| 1216 | nDeviceDestroy(mDev); |
| 1217 | mDev = 0; |
| 1218 | } |
Jason Sams | 02fb2cb | 2009-05-28 15:37:57 -0700 | [diff] [blame] | 1219 | |
Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 1220 | boolean isAlive() { |
| 1221 | return mContext != 0; |
| 1222 | } |
| 1223 | |
Tim Murray | 460a049 | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 1224 | long safeID(BaseObj o) { |
Jason Sams | 6b9dec0 | 2009-09-23 16:38:37 -0700 | [diff] [blame] | 1225 | if(o != null) { |
Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 1226 | return o.getID(this); |
Jason Sams | d8e4161 | 2009-08-20 17:22:40 -0700 | [diff] [blame] | 1227 | } |
Jason Sams | 6b9dec0 | 2009-09-23 16:38:37 -0700 | [diff] [blame] | 1228 | return 0; |
Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 1229 | } |
Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 1230 | } |