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