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