| 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 | 3eaa338e | 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 | |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 618 | native void rsnScriptInvokeV(long con, long id, int slot, byte[] params); |
| 619 | synchronized void nScriptInvokeV(long id, int slot, byte[] params) { |
| Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 620 | validate(); |
| Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 621 | rsnScriptInvokeV(mContext, id, slot, params); |
| 622 | } |
| Tim Murray | 7c4caad | 2013-04-10 16:21:40 -0700 | [diff] [blame] | 623 | |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 624 | native void rsnScriptSetVarI(long con, long id, int slot, int val); |
| 625 | synchronized void nScriptSetVarI(long id, int slot, int val) { |
| Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 626 | validate(); |
| Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 627 | rsnScriptSetVarI(mContext, id, slot, val); |
| 628 | } |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 629 | native int rsnScriptGetVarI(long con, long id, int slot); |
| 630 | synchronized int nScriptGetVarI(long id, int slot) { |
| Tim Murray | 7c4caad | 2013-04-10 16:21:40 -0700 | [diff] [blame] | 631 | validate(); |
| 632 | return rsnScriptGetVarI(mContext, id, slot); |
| 633 | } |
| 634 | |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 635 | native void rsnScriptSetVarJ(long con, long id, int slot, long val); |
| 636 | synchronized void nScriptSetVarJ(long id, int slot, long val) { |
| Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 637 | validate(); |
| Stephen Hines | 031ec58c | 2010-10-11 10:54:21 -0700 | [diff] [blame] | 638 | rsnScriptSetVarJ(mContext, id, slot, val); |
| 639 | } |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 640 | native long rsnScriptGetVarJ(long con, long id, int slot); |
| 641 | synchronized long nScriptGetVarJ(long id, int slot) { |
| Tim Murray | 7c4caad | 2013-04-10 16:21:40 -0700 | [diff] [blame] | 642 | validate(); |
| 643 | return rsnScriptGetVarJ(mContext, id, slot); |
| 644 | } |
| 645 | |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 646 | native void rsnScriptSetVarF(long con, long id, int slot, float val); |
| 647 | synchronized void nScriptSetVarF(long id, int slot, float val) { |
| Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 648 | validate(); |
| Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 649 | rsnScriptSetVarF(mContext, id, slot, val); |
| 650 | } |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 651 | native float rsnScriptGetVarF(long con, long id, int slot); |
| 652 | synchronized float nScriptGetVarF(long id, int slot) { |
| Tim Murray | 7c4caad | 2013-04-10 16:21:40 -0700 | [diff] [blame] | 653 | validate(); |
| 654 | return rsnScriptGetVarF(mContext, id, slot); |
| 655 | } |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 656 | native void rsnScriptSetVarD(long con, long id, int slot, double val); |
| 657 | synchronized void nScriptSetVarD(long id, int slot, double val) { |
| Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 658 | validate(); |
| Stephen Hines | ca54ec3 | 2010-09-20 17:20:30 -0700 | [diff] [blame] | 659 | rsnScriptSetVarD(mContext, id, slot, val); |
| 660 | } |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 661 | native double rsnScriptGetVarD(long con, long id, int slot); |
| 662 | synchronized double nScriptGetVarD(long id, int slot) { |
| Tim Murray | 7c4caad | 2013-04-10 16:21:40 -0700 | [diff] [blame] | 663 | validate(); |
| 664 | return rsnScriptGetVarD(mContext, id, slot); |
| 665 | } |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 666 | native void rsnScriptSetVarV(long con, long id, int slot, byte[] val); |
| 667 | synchronized void nScriptSetVarV(long id, int slot, byte[] val) { |
| Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 668 | validate(); |
| Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 669 | rsnScriptSetVarV(mContext, id, slot, val); |
| 670 | } |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 671 | native void rsnScriptGetVarV(long con, long id, int slot, byte[] val); |
| 672 | synchronized void nScriptGetVarV(long id, int slot, byte[] val) { |
| Tim Murray | 7c4caad | 2013-04-10 16:21:40 -0700 | [diff] [blame] | 673 | validate(); |
| 674 | rsnScriptGetVarV(mContext, id, slot, val); |
| 675 | } |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 676 | native void rsnScriptSetVarVE(long con, long id, int slot, byte[] val, |
| 677 | long e, int[] dims); |
| 678 | synchronized void nScriptSetVarVE(long id, int slot, byte[] val, |
| 679 | long e, int[] dims) { |
| Stephen Hines | adeb809 | 2012-04-20 14:26:06 -0700 | [diff] [blame] | 680 | validate(); |
| 681 | rsnScriptSetVarVE(mContext, id, slot, val, e, dims); |
| 682 | } |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 683 | native void rsnScriptSetVarObj(long con, long id, int slot, long val); |
| 684 | synchronized void nScriptSetVarObj(long id, int slot, long val) { |
| Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 685 | validate(); |
| Jason Sams | 6f4cf0b | 2010-11-16 17:37:02 -0800 | [diff] [blame] | 686 | rsnScriptSetVarObj(mContext, id, slot, val); |
| 687 | } |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 688 | |
| Ashok Bhat | 0e0c088 | 2014-02-04 14:57:58 +0000 | [diff] [blame] | 689 | native long rsnScriptCCreate(long con, String resName, String cacheDir, |
| Jason Sams | e4a06c5 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 690 | byte[] script, int length); |
| Ashok Bhat | 0e0c088 | 2014-02-04 14:57:58 +0000 | [diff] [blame] | 691 | synchronized long nScriptCCreate(String resName, String cacheDir, byte[] script, int length) { |
| Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 692 | validate(); |
| Jason Sams | e4a06c5 | 2011-03-16 16:29:28 -0700 | [diff] [blame] | 693 | return rsnScriptCCreate(mContext, resName, cacheDir, script, length); |
| Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 694 | } |
| Jason Sams | ebfb436 | 2009-09-23 13:57:02 -0700 | [diff] [blame] | 695 | |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 696 | native long rsnScriptIntrinsicCreate(long con, int id, long eid); |
| 697 | synchronized long nScriptIntrinsicCreate(int id, long eid) { |
| Jason Sams | 6ab9768 | 2012-08-10 12:09:43 -0700 | [diff] [blame] | 698 | validate(); |
| 699 | return rsnScriptIntrinsicCreate(mContext, id, eid); |
| 700 | } |
| 701 | |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 702 | native long rsnScriptKernelIDCreate(long con, long sid, int slot, int sig); |
| 703 | synchronized long nScriptKernelIDCreate(long sid, int slot, int sig) { |
| Jason Sams | 08a8158 | 2012-09-18 12:32:10 -0700 | [diff] [blame] | 704 | validate(); |
| 705 | return rsnScriptKernelIDCreate(mContext, sid, slot, sig); |
| 706 | } |
| 707 | |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 708 | native long rsnScriptFieldIDCreate(long con, long sid, int slot); |
| 709 | synchronized long nScriptFieldIDCreate(long sid, int slot) { |
| Jason Sams | 08a8158 | 2012-09-18 12:32:10 -0700 | [diff] [blame] | 710 | validate(); |
| 711 | return rsnScriptFieldIDCreate(mContext, sid, slot); |
| 712 | } |
| 713 | |
| Ashok Bhat | 9807155 | 2014-02-12 09:54:43 +0000 | [diff] [blame] | 714 | native long rsnScriptGroupCreate(long con, long[] kernels, long[] src, long[] dstk, long[] dstf, long[] types); |
| 715 | 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] | 716 | validate(); |
| 717 | return rsnScriptGroupCreate(mContext, kernels, src, dstk, dstf, types); |
| 718 | } |
| 719 | |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 720 | native void rsnScriptGroupSetInput(long con, long group, long kernel, long alloc); |
| 721 | synchronized void nScriptGroupSetInput(long group, long kernel, long alloc) { |
| Jason Sams | 08a8158 | 2012-09-18 12:32:10 -0700 | [diff] [blame] | 722 | validate(); |
| 723 | rsnScriptGroupSetInput(mContext, group, kernel, alloc); |
| 724 | } |
| 725 | |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 726 | native void rsnScriptGroupSetOutput(long con, long group, long kernel, long alloc); |
| 727 | synchronized void nScriptGroupSetOutput(long group, long kernel, long alloc) { |
| Jason Sams | 08a8158 | 2012-09-18 12:32:10 -0700 | [diff] [blame] | 728 | validate(); |
| 729 | rsnScriptGroupSetOutput(mContext, group, kernel, alloc); |
| 730 | } |
| 731 | |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 732 | native void rsnScriptGroupExecute(long con, long group); |
| 733 | synchronized void nScriptGroupExecute(long group) { |
| Jason Sams | 08a8158 | 2012-09-18 12:32:10 -0700 | [diff] [blame] | 734 | validate(); |
| 735 | rsnScriptGroupExecute(mContext, group); |
| 736 | } |
| 737 | |
| Ashok Bhat | 0e0c088 | 2014-02-04 14:57:58 +0000 | [diff] [blame] | 738 | native long rsnSamplerCreate(long con, int magFilter, int minFilter, |
| Alex Sakhartchouk | a89094a | 2011-05-04 17:45:36 -0700 | [diff] [blame] | 739 | int wrapS, int wrapT, int wrapR, float aniso); |
| Ashok Bhat | 0e0c088 | 2014-02-04 14:57:58 +0000 | [diff] [blame] | 740 | synchronized long nSamplerCreate(int magFilter, int minFilter, |
| Alex Sakhartchouk | a89094a | 2011-05-04 17:45:36 -0700 | [diff] [blame] | 741 | int wrapS, int wrapT, int wrapR, float aniso) { |
| Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 742 | validate(); |
| Alex Sakhartchouk | a89094a | 2011-05-04 17:45:36 -0700 | [diff] [blame] | 743 | return rsnSamplerCreate(mContext, magFilter, minFilter, wrapS, wrapT, wrapR, aniso); |
| Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 744 | } |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 745 | |
| Ashok Bhat | 0e0c088 | 2014-02-04 14:57:58 +0000 | [diff] [blame] | 746 | 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] | 747 | boolean depthMask, boolean dither, |
| 748 | int srcMode, int dstMode, int depthFunc); |
| Ashok Bhat | 0e0c088 | 2014-02-04 14:57:58 +0000 | [diff] [blame] | 749 | synchronized long nProgramStoreCreate(boolean r, boolean g, boolean b, boolean a, |
| Jason Sams | 331bf9b | 2011-04-06 11:23:54 -0700 | [diff] [blame] | 750 | boolean depthMask, boolean dither, |
| 751 | int srcMode, int dstMode, int depthFunc) { |
| Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 752 | validate(); |
| Jason Sams | bd184c5 | 2011-04-06 11:44:47 -0700 | [diff] [blame] | 753 | return rsnProgramStoreCreate(mContext, r, g, b, a, depthMask, dither, srcMode, |
| 754 | dstMode, depthFunc); |
| Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 755 | } |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 756 | |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 757 | native long rsnProgramRasterCreate(long con, boolean pointSprite, int cullMode); |
| 758 | synchronized long nProgramRasterCreate(boolean pointSprite, int cullMode) { |
| Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 759 | validate(); |
| Jason Sams | 94aaed3 | 2011-09-23 14:18:53 -0700 | [diff] [blame] | 760 | return rsnProgramRasterCreate(mContext, pointSprite, cullMode); |
| Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 761 | } |
| Jason Sams | 1fe9b8c | 2009-06-11 14:46:10 -0700 | [diff] [blame] | 762 | |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 763 | native void rsnProgramBindConstants(long con, long pv, int slot, long mID); |
| 764 | synchronized void nProgramBindConstants(long pv, int slot, long mID) { |
| Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 765 | validate(); |
| Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 766 | rsnProgramBindConstants(mContext, pv, slot, mID); |
| 767 | } |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 768 | native void rsnProgramBindTexture(long con, long vpf, int slot, long a); |
| 769 | synchronized void nProgramBindTexture(long vpf, int slot, long a) { |
| Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 770 | validate(); |
| Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 771 | rsnProgramBindTexture(mContext, vpf, slot, a); |
| 772 | } |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 773 | native void rsnProgramBindSampler(long con, long vpf, int slot, long s); |
| 774 | synchronized void nProgramBindSampler(long vpf, int slot, long s) { |
| Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 775 | validate(); |
| Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 776 | rsnProgramBindSampler(mContext, vpf, slot, s); |
| 777 | } |
| Ashok Bhat | 9807155 | 2014-02-12 09:54:43 +0000 | [diff] [blame] | 778 | native long rsnProgramFragmentCreate(long con, String shader, String[] texNames, long[] params); |
| 779 | synchronized long nProgramFragmentCreate(String shader, String[] texNames, long[] params) { |
| Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 780 | validate(); |
| Alex Sakhartchouk | 2123b46 | 2012-02-15 16:21:46 -0800 | [diff] [blame] | 781 | return rsnProgramFragmentCreate(mContext, shader, texNames, params); |
| Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 782 | } |
| Ashok Bhat | 9807155 | 2014-02-12 09:54:43 +0000 | [diff] [blame] | 783 | native long rsnProgramVertexCreate(long con, String shader, String[] texNames, long[] params); |
| 784 | synchronized long nProgramVertexCreate(String shader, String[] texNames, long[] params) { |
| Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 785 | validate(); |
| Alex Sakhartchouk | 2123b46 | 2012-02-15 16:21:46 -0800 | [diff] [blame] | 786 | return rsnProgramVertexCreate(mContext, shader, texNames, params); |
| Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 787 | } |
| Alex Sakhartchouk | 164aaed | 2010-07-01 16:14:06 -0700 | [diff] [blame] | 788 | |
| Ashok Bhat | 9807155 | 2014-02-12 09:54:43 +0000 | [diff] [blame] | 789 | native long rsnMeshCreate(long con, long[] vtx, long[] idx, int[] prim); |
| 790 | synchronized long nMeshCreate(long[] vtx, long[] idx, int[] prim) { |
| Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 791 | validate(); |
| Alex Sakhartchouk | 25999a0 | 2011-05-12 10:38:03 -0700 | [diff] [blame] | 792 | return rsnMeshCreate(mContext, vtx, idx, prim); |
| Alex Sakhartchouk | 9d71e21 | 2010-11-08 15:10:52 -0800 | [diff] [blame] | 793 | } |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 794 | native int rsnMeshGetVertexBufferCount(long con, long id); |
| 795 | synchronized int nMeshGetVertexBufferCount(long id) { |
| Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 796 | validate(); |
| Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 797 | return rsnMeshGetVertexBufferCount(mContext, id); |
| 798 | } |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 799 | native int rsnMeshGetIndexCount(long con, long id); |
| 800 | synchronized int nMeshGetIndexCount(long id) { |
| Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 801 | validate(); |
| Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 802 | return rsnMeshGetIndexCount(mContext, id); |
| 803 | } |
| Ashok Bhat | 9807155 | 2014-02-12 09:54:43 +0000 | [diff] [blame] | 804 | native void rsnMeshGetVertices(long con, long id, long[] vtxIds, int vtxIdCount); |
| 805 | synchronized void nMeshGetVertices(long id, long[] vtxIds, int vtxIdCount) { |
| Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 806 | validate(); |
| Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 807 | rsnMeshGetVertices(mContext, id, vtxIds, vtxIdCount); |
| 808 | } |
| Ashok Bhat | 9807155 | 2014-02-12 09:54:43 +0000 | [diff] [blame] | 809 | native void rsnMeshGetIndices(long con, long id, long[] idxIds, int[] primitives, int vtxIdCount); |
| 810 | synchronized void nMeshGetIndices(long id, long[] idxIds, int[] primitives, int vtxIdCount) { |
| Jason Sams | d1ac981 | 2011-01-18 18:12:26 -0800 | [diff] [blame] | 811 | validate(); |
| Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 812 | rsnMeshGetIndices(mContext, id, idxIds, primitives, vtxIdCount); |
| 813 | } |
| 814 | |
| Ashok Bhat | 0e0c088 | 2014-02-04 14:57:58 +0000 | [diff] [blame] | 815 | native long rsnPathCreate(long con, int prim, boolean isStatic, long vtx, long loop, float q); |
| 816 | 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] | 817 | validate(); |
| 818 | return rsnPathCreate(mContext, prim, isStatic, vtx, loop, q); |
| 819 | } |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 820 | |
| Tim Murray | a78e9ad | 2013-11-15 13:08:30 -0800 | [diff] [blame] | 821 | long mDev; |
| 822 | long mContext; |
| Romain Guy | 650a3eb | 2009-08-31 14:06:43 -0700 | [diff] [blame] | 823 | @SuppressWarnings({"FieldCanBeLocal"}) |
| Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 824 | MessageThread mMessageThread; |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 825 | |
| Jason Sams | 8cb39de | 2010-06-01 15:47:01 -0700 | [diff] [blame] | 826 | Element mElement_U8; |
| 827 | Element mElement_I8; |
| 828 | Element mElement_U16; |
| 829 | Element mElement_I16; |
| 830 | Element mElement_U32; |
| 831 | Element mElement_I32; |
| Stephen Hines | 52d8363 | 2010-10-11 16:10:42 -0700 | [diff] [blame] | 832 | Element mElement_U64; |
| Stephen Hines | ef1dac2 | 2010-10-01 15:39:33 -0700 | [diff] [blame] | 833 | Element mElement_I64; |
| Jason Sams | 8cb39de | 2010-06-01 15:47:01 -0700 | [diff] [blame] | 834 | Element mElement_F32; |
| Stephen Hines | 02f41705 | 2010-09-30 15:19:22 -0700 | [diff] [blame] | 835 | Element mElement_F64; |
| Jason Sams | f110d4b | 2010-06-21 17:42:41 -0700 | [diff] [blame] | 836 | Element mElement_BOOLEAN; |
| Jason Sams | 3c0dfba | 2009-09-27 17:50:38 -0700 | [diff] [blame] | 837 | |
| Jason Sams | 8cb39de | 2010-06-01 15:47:01 -0700 | [diff] [blame] | 838 | Element mElement_ELEMENT; |
| 839 | Element mElement_TYPE; |
| 840 | Element mElement_ALLOCATION; |
| 841 | Element mElement_SAMPLER; |
| 842 | Element mElement_SCRIPT; |
| 843 | Element mElement_MESH; |
| 844 | Element mElement_PROGRAM_FRAGMENT; |
| 845 | Element mElement_PROGRAM_VERTEX; |
| 846 | Element mElement_PROGRAM_RASTER; |
| 847 | Element mElement_PROGRAM_STORE; |
| Stephen Hines | 3a29141 | 2012-04-11 17:27:29 -0700 | [diff] [blame] | 848 | Element mElement_FONT; |
| Jason Sams | a70f416 | 2010-03-26 15:33:42 -0700 | [diff] [blame] | 849 | |
| Jason Sams | 3c0dfba | 2009-09-27 17:50:38 -0700 | [diff] [blame] | 850 | Element mElement_A_8; |
| 851 | Element mElement_RGB_565; |
| 852 | Element mElement_RGB_888; |
| 853 | Element mElement_RGBA_5551; |
| 854 | Element mElement_RGBA_4444; |
| 855 | Element mElement_RGBA_8888; |
| 856 | |
| Jason Sams | 8cb39de | 2010-06-01 15:47:01 -0700 | [diff] [blame] | 857 | Element mElement_FLOAT_2; |
| 858 | Element mElement_FLOAT_3; |
| 859 | Element mElement_FLOAT_4; |
| Stephen Hines | 836c4a5 | 2011-06-01 14:38:10 -0700 | [diff] [blame] | 860 | |
| 861 | Element mElement_DOUBLE_2; |
| 862 | Element mElement_DOUBLE_3; |
| 863 | Element mElement_DOUBLE_4; |
| 864 | |
| 865 | Element mElement_UCHAR_2; |
| 866 | Element mElement_UCHAR_3; |
| Jason Sams | 8cb39de | 2010-06-01 15:47:01 -0700 | [diff] [blame] | 867 | Element mElement_UCHAR_4; |
| Jason Sams | 7d787b4 | 2009-11-15 12:14:26 -0800 | [diff] [blame] | 868 | |
| Stephen Hines | 836c4a5 | 2011-06-01 14:38:10 -0700 | [diff] [blame] | 869 | Element mElement_CHAR_2; |
| 870 | Element mElement_CHAR_3; |
| 871 | Element mElement_CHAR_4; |
| 872 | |
| 873 | Element mElement_USHORT_2; |
| 874 | Element mElement_USHORT_3; |
| 875 | Element mElement_USHORT_4; |
| 876 | |
| 877 | Element mElement_SHORT_2; |
| 878 | Element mElement_SHORT_3; |
| 879 | Element mElement_SHORT_4; |
| 880 | |
| 881 | Element mElement_UINT_2; |
| 882 | Element mElement_UINT_3; |
| 883 | Element mElement_UINT_4; |
| 884 | |
| 885 | Element mElement_INT_2; |
| 886 | Element mElement_INT_3; |
| 887 | Element mElement_INT_4; |
| 888 | |
| 889 | Element mElement_ULONG_2; |
| 890 | Element mElement_ULONG_3; |
| 891 | Element mElement_ULONG_4; |
| 892 | |
| 893 | Element mElement_LONG_2; |
| 894 | Element mElement_LONG_3; |
| 895 | Element mElement_LONG_4; |
| 896 | |
| Tim Murray | 932e78e | 2013-09-03 11:42:26 -0700 | [diff] [blame] | 897 | Element mElement_YUV; |
| 898 | |
| Jason Sams | 1d45c47 | 2010-08-25 14:31:48 -0700 | [diff] [blame] | 899 | Element mElement_MATRIX_4X4; |
| 900 | Element mElement_MATRIX_3X3; |
| 901 | Element mElement_MATRIX_2X2; |
| 902 | |
| Jason Sams | 4d33993 | 2010-05-11 14:03:58 -0700 | [diff] [blame] | 903 | Sampler mSampler_CLAMP_NEAREST; |
| 904 | Sampler mSampler_CLAMP_LINEAR; |
| 905 | Sampler mSampler_CLAMP_LINEAR_MIP_LINEAR; |
| 906 | Sampler mSampler_WRAP_NEAREST; |
| 907 | Sampler mSampler_WRAP_LINEAR; |
| 908 | Sampler mSampler_WRAP_LINEAR_MIP_LINEAR; |
| Tim Murray | 6b9b2ca | 2013-02-15 13:25:55 -0800 | [diff] [blame] | 909 | Sampler mSampler_MIRRORED_REPEAT_NEAREST; |
| 910 | Sampler mSampler_MIRRORED_REPEAT_LINEAR; |
| 911 | Sampler mSampler_MIRRORED_REPEAT_LINEAR_MIP_LINEAR; |
| Jason Sams | 4d33993 | 2010-05-11 14:03:58 -0700 | [diff] [blame] | 912 | |
| Alex Sakhartchouk | d36f248 | 2010-08-24 11:37:33 -0700 | [diff] [blame] | 913 | ProgramStore mProgramStore_BLEND_NONE_DEPTH_TEST; |
| 914 | ProgramStore mProgramStore_BLEND_NONE_DEPTH_NO_DEPTH; |
| Alex Sakhartchouk | d36f248 | 2010-08-24 11:37:33 -0700 | [diff] [blame] | 915 | ProgramStore mProgramStore_BLEND_ALPHA_DEPTH_TEST; |
| 916 | ProgramStore mProgramStore_BLEND_ALPHA_DEPTH_NO_DEPTH; |
| Alex Sakhartchouk | 32e09b5 | 2010-08-23 10:24:10 -0700 | [diff] [blame] | 917 | |
| Alex Sakhartchouk | d36f248 | 2010-08-24 11:37:33 -0700 | [diff] [blame] | 918 | ProgramRaster mProgramRaster_CULL_BACK; |
| 919 | ProgramRaster mProgramRaster_CULL_FRONT; |
| 920 | ProgramRaster mProgramRaster_CULL_NONE; |
| Alex Sakhartchouk | 32e09b5 | 2010-08-23 10:24:10 -0700 | [diff] [blame] | 921 | |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 922 | /////////////////////////////////////////////////////////////////////////////////// |
| Jack Palevich | 43702d8 | 2009-05-28 13:38:16 -0700 | [diff] [blame] | 923 | // |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 924 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 925 | /** |
| Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 926 | * The base class from which an application should derive in order |
| 927 | * to receive RS messages from scripts. When a script calls {@code |
| 928 | * rsSendToClient}, the data fields will be filled, and the run |
| 929 | * method will be called on a separate thread. This will occur |
| 930 | * some time after {@code rsSendToClient} completes in the script, |
| 931 | * as {@code rsSendToClient} is asynchronous. Message handlers are |
| 932 | * not guaranteed to have completed when {@link |
| 933 | * android.renderscript.RenderScript#finish} returns. |
| Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 934 | * |
| 935 | */ |
| Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 936 | public static class RSMessageHandler implements Runnable { |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 937 | protected int[] mData; |
| 938 | protected int mID; |
| Jason Sams | 1c41517 | 2010-11-08 17:06:46 -0800 | [diff] [blame] | 939 | protected int mLength; |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 940 | public void run() { |
| 941 | } |
| 942 | } |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 943 | /** |
| Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 944 | * If an application is expecting messages, it should set this |
| 945 | * field to an instance of {@link RSMessageHandler}. This |
| 946 | * instance will receive all the user messages sent from {@code |
| 947 | * sendToClient} by scripts from this context. |
| Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 948 | * |
| 949 | */ |
| Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 950 | RSMessageHandler mMessageCallback = null; |
| 951 | |
| 952 | public void setMessageHandler(RSMessageHandler msg) { |
| 953 | mMessageCallback = msg; |
| 954 | } |
| 955 | public RSMessageHandler getMessageHandler() { |
| 956 | return mMessageCallback; |
| 957 | } |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 958 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 959 | /** |
| Jason Sams | 02d56d9 | 2013-04-12 16:40:50 -0700 | [diff] [blame] | 960 | * Place a message into the message queue to be sent back to the message |
| 961 | * handler once all previous commands have been executed. |
| Jason Sams | 455d644 | 2013-02-05 19:20:18 -0800 | [diff] [blame] | 962 | * |
| 963 | * @param id |
| 964 | * @param data |
| 965 | */ |
| 966 | public void sendMessage(int id, int[] data) { |
| 967 | nContextSendMessage(id, data); |
| 968 | } |
| 969 | |
| 970 | /** |
| Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 971 | * The runtime error handler base class. An application should derive from this class |
| 972 | * if it wishes to install an error handler. When errors occur at runtime, |
| 973 | * 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] | 974 | * |
| 975 | */ |
| Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 976 | public static class RSErrorHandler implements Runnable { |
| Jason Sams | 1c41517 | 2010-11-08 17:06:46 -0800 | [diff] [blame] | 977 | protected String mErrorMessage; |
| 978 | protected int mErrorNum; |
| 979 | public void run() { |
| 980 | } |
| 981 | } |
| Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 982 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 983 | /** |
| Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 984 | * Application Error handler. All runtime errors will be dispatched to the |
| 985 | * instance of RSAsyncError set here. If this field is null a |
| Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 986 | * {@link RSRuntimeException} will instead be thrown with details about the error. |
| Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 987 | * This will cause program termaination. |
| 988 | * |
| 989 | */ |
| Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 990 | RSErrorHandler mErrorCallback = null; |
| 991 | |
| 992 | public void setErrorHandler(RSErrorHandler msg) { |
| 993 | mErrorCallback = msg; |
| 994 | } |
| 995 | public RSErrorHandler getErrorHandler() { |
| 996 | return mErrorCallback; |
| 997 | } |
| Jason Sams | 1c41517 | 2010-11-08 17:06:46 -0800 | [diff] [blame] | 998 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 999 | /** |
| Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 1000 | * RenderScript worker thread priority enumeration. The default value is |
| 1001 | * NORMAL. Applications wishing to do background processing should set |
| 1002 | * their priority to LOW to avoid starving forground processes. |
| Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 1003 | */ |
| Jason Sams | 7d787b4 | 2009-11-15 12:14:26 -0800 | [diff] [blame] | 1004 | public enum Priority { |
| Glenn Kasten | 260c77a | 2011-06-01 17:25:54 -0700 | [diff] [blame] | 1005 | LOW (Process.THREAD_PRIORITY_BACKGROUND + (5 * Process.THREAD_PRIORITY_LESS_FAVORABLE)), |
| 1006 | NORMAL (Process.THREAD_PRIORITY_DISPLAY); |
| Jason Sams | 7d787b4 | 2009-11-15 12:14:26 -0800 | [diff] [blame] | 1007 | |
| 1008 | int mID; |
| 1009 | Priority(int id) { |
| 1010 | mID = id; |
| 1011 | } |
| 1012 | } |
| 1013 | |
| Jason Sams | 678cc7f | 2014-03-05 16:09:02 -0800 | [diff] [blame] | 1014 | void validateObject(BaseObj o) { |
| 1015 | if (o != null) { |
| 1016 | if (o.mRS != this) { |
| 1017 | throw new RSIllegalArgumentException("Attempting to use an object across contexts."); |
| 1018 | } |
| 1019 | } |
| 1020 | } |
| 1021 | |
| Jason Sams | 771bebb | 2009-12-07 12:40:12 -0800 | [diff] [blame] | 1022 | void validate() { |
| 1023 | if (mContext == 0) { |
| Jason Sams | c1d6210 | 2010-11-04 14:32:19 -0700 | [diff] [blame] | 1024 | throw new RSInvalidStateException("Calling RS with no Context active."); |
| Jason Sams | 771bebb | 2009-12-07 12:40:12 -0800 | [diff] [blame] | 1025 | } |
| 1026 | } |
| 1027 | |
| Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 1028 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 1029 | /** |
| Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 1030 | * Change the priority of the worker threads for this context. |
| 1031 | * |
| 1032 | * @param p New priority to be set. |
| 1033 | */ |
| Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 1034 | public void setPriority(Priority p) { |
| Jason Sams | 5dbfe93 | 2010-01-27 14:41:43 -0800 | [diff] [blame] | 1035 | validate(); |
| Jason Sams | 7d787b4 | 2009-11-15 12:14:26 -0800 | [diff] [blame] | 1036 | nContextSetPriority(p.mID); |
| 1037 | } |
| 1038 | |
| Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 1039 | static class MessageThread extends Thread { |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 1040 | RenderScript mRS; |
| 1041 | boolean mRun = true; |
| Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 1042 | int[] mAuxData = new int[2]; |
| Jason Sams | 1c41517 | 2010-11-08 17:06:46 -0800 | [diff] [blame] | 1043 | |
| Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 1044 | static final int RS_MESSAGE_TO_CLIENT_NONE = 0; |
| 1045 | static final int RS_MESSAGE_TO_CLIENT_EXCEPTION = 1; |
| 1046 | static final int RS_MESSAGE_TO_CLIENT_RESIZE = 2; |
| 1047 | static final int RS_MESSAGE_TO_CLIENT_ERROR = 3; |
| 1048 | static final int RS_MESSAGE_TO_CLIENT_USER = 4; |
| Jason Sams | 739c826 | 2013-04-11 18:07:52 -0700 | [diff] [blame] | 1049 | static final int RS_MESSAGE_TO_CLIENT_NEW_BUFFER = 5; |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 1050 | |
| Stephen Hines | 42028a8 | 2013-04-17 19:22:01 -0700 | [diff] [blame] | 1051 | static final int RS_ERROR_FATAL_DEBUG = 0x0800; |
| Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 1052 | static final int RS_ERROR_FATAL_UNKNOWN = 0x1000; |
| Jason Sams | add9d96 | 2010-11-22 16:20:16 -0800 | [diff] [blame] | 1053 | |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 1054 | MessageThread(RenderScript rs) { |
| 1055 | super("RSMessageThread"); |
| 1056 | mRS = rs; |
| 1057 | |
| 1058 | } |
| 1059 | |
| 1060 | public void run() { |
| 1061 | // This function is a temporary solution. The final solution will |
| 1062 | // used typed allocations where the message id is the type indicator. |
| 1063 | int[] rbuf = new int[16]; |
| Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 1064 | mRS.nContextInitToClient(mRS.mContext); |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 1065 | while(mRun) { |
| Jason Sams | 1d45c47 | 2010-08-25 14:31:48 -0700 | [diff] [blame] | 1066 | rbuf[0] = 0; |
| Jason Sams | edbfabd | 2011-05-17 15:01:29 -0700 | [diff] [blame] | 1067 | int msg = mRS.nContextPeekMessage(mRS.mContext, mAuxData); |
| Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 1068 | int size = mAuxData[1]; |
| 1069 | int subID = mAuxData[0]; |
| Jason Sams | 1c41517 | 2010-11-08 17:06:46 -0800 | [diff] [blame] | 1070 | |
| 1071 | if (msg == RS_MESSAGE_TO_CLIENT_USER) { |
| 1072 | if ((size>>2) >= rbuf.length) { |
| 1073 | rbuf = new int[(size + 3) >> 2]; |
| 1074 | } |
| Jason Sams | edbfabd | 2011-05-17 15:01:29 -0700 | [diff] [blame] | 1075 | if (mRS.nContextGetUserMessage(mRS.mContext, rbuf) != |
| 1076 | RS_MESSAGE_TO_CLIENT_USER) { |
| Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 1077 | throw new RSDriverException("Error processing message from RenderScript."); |
| Jason Sams | edbfabd | 2011-05-17 15:01:29 -0700 | [diff] [blame] | 1078 | } |
| Jason Sams | 1c41517 | 2010-11-08 17:06:46 -0800 | [diff] [blame] | 1079 | |
| 1080 | if(mRS.mMessageCallback != null) { |
| 1081 | mRS.mMessageCallback.mData = rbuf; |
| 1082 | mRS.mMessageCallback.mID = subID; |
| 1083 | mRS.mMessageCallback.mLength = size; |
| 1084 | mRS.mMessageCallback.run(); |
| Jason Sams | 1d45c47 | 2010-08-25 14:31:48 -0700 | [diff] [blame] | 1085 | } else { |
| Jason Sams | 1c41517 | 2010-11-08 17:06:46 -0800 | [diff] [blame] | 1086 | 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] | 1087 | } |
| Stephen Hines | ab98bb6 | 2010-09-24 14:38:30 -0700 | [diff] [blame] | 1088 | continue; |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 1089 | } |
| Jason Sams | 1c41517 | 2010-11-08 17:06:46 -0800 | [diff] [blame] | 1090 | |
| 1091 | if (msg == RS_MESSAGE_TO_CLIENT_ERROR) { |
| 1092 | String e = mRS.nContextGetErrorMessage(mRS.mContext); |
| 1093 | |
| Stephen Hines | 42028a8 | 2013-04-17 19:22:01 -0700 | [diff] [blame] | 1094 | // Throw RSRuntimeException under the following conditions: |
| 1095 | // |
| 1096 | // 1) It is an unknown fatal error. |
| 1097 | // 2) It is a debug fatal error, and we are not in a |
| 1098 | // debug context. |
| 1099 | // 3) It is a debug fatal error, and we do not have an |
| 1100 | // error callback. |
| 1101 | if (subID >= RS_ERROR_FATAL_UNKNOWN || |
| 1102 | (subID >= RS_ERROR_FATAL_DEBUG && |
| 1103 | (mRS.mContextType != ContextType.DEBUG || |
| 1104 | mRS.mErrorCallback == null))) { |
| Jason Sams | add9d96 | 2010-11-22 16:20:16 -0800 | [diff] [blame] | 1105 | throw new RSRuntimeException("Fatal error " + subID + ", details: " + e); |
| 1106 | } |
| 1107 | |
| Jason Sams | 1c41517 | 2010-11-08 17:06:46 -0800 | [diff] [blame] | 1108 | if(mRS.mErrorCallback != null) { |
| 1109 | mRS.mErrorCallback.mErrorMessage = e; |
| 1110 | mRS.mErrorCallback.mErrorNum = subID; |
| 1111 | mRS.mErrorCallback.run(); |
| 1112 | } else { |
| Jason Sams | a4b7bc9 | 2013-02-05 15:05:39 -0800 | [diff] [blame] | 1113 | android.util.Log.e(LOG_TAG, "non fatal RS error, " + e); |
| Stephen Hines | be74bdd | 2012-02-03 15:29:36 -0800 | [diff] [blame] | 1114 | // Do not throw here. In these cases, we do not have |
| 1115 | // a fatal error. |
| Jason Sams | 1c41517 | 2010-11-08 17:06:46 -0800 | [diff] [blame] | 1116 | } |
| 1117 | continue; |
| 1118 | } |
| 1119 | |
| Jason Sams | 739c826 | 2013-04-11 18:07:52 -0700 | [diff] [blame] | 1120 | if (msg == RS_MESSAGE_TO_CLIENT_NEW_BUFFER) { |
| 1121 | Allocation.sendBufferNotification(subID); |
| 1122 | continue; |
| 1123 | } |
| 1124 | |
| Jason Sams | 1c41517 | 2010-11-08 17:06:46 -0800 | [diff] [blame] | 1125 | // 2: teardown. |
| 1126 | // But we want to avoid starving other threads during |
| 1127 | // teardown by yielding until the next line in the destructor |
| 1128 | // can execute to set mRun = false |
| 1129 | try { |
| 1130 | sleep(1, 0); |
| 1131 | } catch(InterruptedException e) { |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 1132 | } |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 1133 | } |
| Tim Murray | da67deb | 2013-05-09 12:02:50 -0700 | [diff] [blame] | 1134 | //Log.d(LOG_TAG, "MessageThread exiting."); |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 1135 | } |
| 1136 | } |
| 1137 | |
| Shih-wei Liao | 6b32fab | 2010-12-10 01:03:59 -0800 | [diff] [blame] | 1138 | RenderScript(Context ctx) { |
| Stephen Hines | 42028a8 | 2013-04-17 19:22:01 -0700 | [diff] [blame] | 1139 | mContextType = ContextType.NORMAL; |
| Jason Sams | 1a4e1f3e | 2012-02-24 17:51:24 -0800 | [diff] [blame] | 1140 | if (ctx != null) { |
| 1141 | mApplicationContext = ctx.getApplicationContext(); |
| 1142 | } |
| Tim Murray | 504abb3 | 2014-01-07 11:13:56 -0800 | [diff] [blame] | 1143 | mRWLock = new ReentrantReadWriteLock(); |
| Shih-wei Liao | 6b32fab | 2010-12-10 01:03:59 -0800 | [diff] [blame] | 1144 | } |
| 1145 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 1146 | /** |
| Shih-wei Liao | 6b32fab | 2010-12-10 01:03:59 -0800 | [diff] [blame] | 1147 | * Gets the application context associated with the RenderScript context. |
| 1148 | * |
| 1149 | * @return The application context. |
| 1150 | */ |
| 1151 | public final Context getApplicationContext() { |
| 1152 | return mApplicationContext; |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 1153 | } |
| 1154 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 1155 | /** |
| Jason Sams | add26dc | 2013-02-22 18:43:45 -0800 | [diff] [blame] | 1156 | * @hide |
| 1157 | */ |
| 1158 | public static RenderScript create(Context ctx, int sdkVersion) { |
| 1159 | return create(ctx, sdkVersion, ContextType.NORMAL); |
| 1160 | } |
| 1161 | |
| 1162 | /** |
| Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 1163 | * Create a RenderScript context. |
| Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 1164 | * |
| Jason Sams | 1a4e1f3e | 2012-02-24 17:51:24 -0800 | [diff] [blame] | 1165 | * @hide |
| Shih-wei Liao | 6b32fab | 2010-12-10 01:03:59 -0800 | [diff] [blame] | 1166 | * @param ctx The context. |
| Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 1167 | * @return RenderScript |
| 1168 | */ |
| Jason Sams | add26dc | 2013-02-22 18:43:45 -0800 | [diff] [blame] | 1169 | public static RenderScript create(Context ctx, int sdkVersion, ContextType ct) { |
| Dan Morrill | e4d9a01 | 2013-03-28 18:10:43 -0700 | [diff] [blame] | 1170 | if (!sInitialized) { |
| 1171 | Log.e(LOG_TAG, "RenderScript.create() called when disabled; someone is likely to crash"); |
| 1172 | return null; |
| 1173 | } |
| 1174 | |
| Shih-wei Liao | 6b32fab | 2010-12-10 01:03:59 -0800 | [diff] [blame] | 1175 | RenderScript rs = new RenderScript(ctx); |
| Jason Sams | 704ff64 | 2010-02-09 16:05:07 -0800 | [diff] [blame] | 1176 | |
| 1177 | rs.mDev = rs.nDeviceCreate(); |
| Jason Sams | add26dc | 2013-02-22 18:43:45 -0800 | [diff] [blame] | 1178 | rs.mContext = rs.nContextCreate(rs.mDev, 0, sdkVersion, ct.mID); |
| Stephen Hines | 42028a8 | 2013-04-17 19:22:01 -0700 | [diff] [blame] | 1179 | rs.mContextType = ct; |
| Jason Sams | 2698536 | 2011-05-03 15:01:58 -0700 | [diff] [blame] | 1180 | if (rs.mContext == 0) { |
| 1181 | throw new RSDriverException("Failed to create RS context."); |
| 1182 | } |
| Jason Sams | 704ff64 | 2010-02-09 16:05:07 -0800 | [diff] [blame] | 1183 | rs.mMessageThread = new MessageThread(rs); |
| 1184 | rs.mMessageThread.start(); |
| Jason Sams | 704ff64 | 2010-02-09 16:05:07 -0800 | [diff] [blame] | 1185 | return rs; |
| Jason Sams | efd9b6fb | 2009-11-03 13:58:36 -0800 | [diff] [blame] | 1186 | } |
| 1187 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 1188 | /** |
| Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 1189 | * Create a RenderScript context. |
| Jason Sams | 1a4e1f3e | 2012-02-24 17:51:24 -0800 | [diff] [blame] | 1190 | * |
| 1191 | * @param ctx The context. |
| 1192 | * @return RenderScript |
| 1193 | */ |
| 1194 | public static RenderScript create(Context ctx) { |
| Jason Sams | add26dc | 2013-02-22 18:43:45 -0800 | [diff] [blame] | 1195 | return create(ctx, ContextType.NORMAL); |
| 1196 | } |
| 1197 | |
| 1198 | /** |
| Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 1199 | * Create a RenderScript context. |
| Jason Sams | add26dc | 2013-02-22 18:43:45 -0800 | [diff] [blame] | 1200 | * |
| Jason Sams | add26dc | 2013-02-22 18:43:45 -0800 | [diff] [blame] | 1201 | * |
| 1202 | * @param ctx The context. |
| Jason Sams | 02d56d9 | 2013-04-12 16:40:50 -0700 | [diff] [blame] | 1203 | * @param ct The type of context to be created. |
| Jason Sams | add26dc | 2013-02-22 18:43:45 -0800 | [diff] [blame] | 1204 | * @return RenderScript |
| 1205 | */ |
| 1206 | public static RenderScript create(Context ctx, ContextType ct) { |
| Jason Sams | 1a4e1f3e | 2012-02-24 17:51:24 -0800 | [diff] [blame] | 1207 | int v = ctx.getApplicationInfo().targetSdkVersion; |
| Jason Sams | add26dc | 2013-02-22 18:43:45 -0800 | [diff] [blame] | 1208 | return create(ctx, v, ct); |
| Jason Sams | 1a4e1f3e | 2012-02-24 17:51:24 -0800 | [diff] [blame] | 1209 | } |
| 1210 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 1211 | /** |
| Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 1212 | * Print the currently available debugging information about the state of |
| 1213 | * the RS context to the log. |
| 1214 | * |
| Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 1215 | */ |
| Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 1216 | public void contextDump() { |
| Jason Sams | 5dbfe93 | 2010-01-27 14:41:43 -0800 | [diff] [blame] | 1217 | validate(); |
| Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 1218 | nContextDump(0); |
| Jason Sams | 715333b | 2009-11-17 17:26:46 -0800 | [diff] [blame] | 1219 | } |
| 1220 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 1221 | /** |
| Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 1222 | * Wait for any pending asynchronous opeations (such as copies to a RS |
| 1223 | * allocation or RS script executions) to complete. |
| Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 1224 | * |
| 1225 | */ |
| Jason Sams | 96ed4cf | 2010-06-15 12:15:57 -0700 | [diff] [blame] | 1226 | public void finish() { |
| 1227 | nContextFinish(); |
| 1228 | } |
| 1229 | |
| Stephen Hines | 9c9ad3f8c2 | 2012-05-07 15:34:29 -0700 | [diff] [blame] | 1230 | /** |
| Tim Murray | c11e25c | 2013-04-09 11:01:01 -0700 | [diff] [blame] | 1231 | * Destroys this RenderScript context. Once this function is called, |
| 1232 | * using this context or any objects belonging to this context is |
| 1233 | * illegal. |
| Jason Sams | 27676fe | 2010-11-10 17:00:59 -0800 | [diff] [blame] | 1234 | * |
| 1235 | */ |
| Jason Sams | f5b4596 | 2009-08-25 14:49:07 -0700 | [diff] [blame] | 1236 | public void destroy() { |
| Jason Sams | 5dbfe93 | 2010-01-27 14:41:43 -0800 | [diff] [blame] | 1237 | validate(); |
| Tim Murray | 504abb3 | 2014-01-07 11:13:56 -0800 | [diff] [blame] | 1238 | nContextFinish(); |
| 1239 | |
| Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 1240 | nContextDeinitToClient(mContext); |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 1241 | mMessageThread.mRun = false; |
| Jason Sams | a8bf942 | 2010-09-16 13:43:19 -0700 | [diff] [blame] | 1242 | try { |
| 1243 | mMessageThread.join(); |
| 1244 | } catch(InterruptedException e) { |
| 1245 | } |
| Jason Sams | 516c319 | 2009-10-06 13:58:47 -0700 | [diff] [blame] | 1246 | |
| Jason Sams | 2e1872f | 2010-08-17 16:25:41 -0700 | [diff] [blame] | 1247 | nContextDestroy(); |
| Jason Sams | f5b4596 | 2009-08-25 14:49:07 -0700 | [diff] [blame] | 1248 | |
| 1249 | nDeviceDestroy(mDev); |
| 1250 | mDev = 0; |
| 1251 | } |
| Jason Sams | 02fb2cb | 2009-05-28 15:37:57 -0700 | [diff] [blame] | 1252 | |
| Jason Sams | a9e7a05 | 2009-09-25 14:51:22 -0700 | [diff] [blame] | 1253 | boolean isAlive() { |
| 1254 | return mContext != 0; |
| 1255 | } |
| 1256 | |
| Tim Murray | 7a629fa | 2013-11-19 12:45:54 -0800 | [diff] [blame] | 1257 | long safeID(BaseObj o) { |
| Jason Sams | 6b9dec0 | 2009-09-23 16:38:37 -0700 | [diff] [blame] | 1258 | if(o != null) { |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 1259 | return o.getID(this); |
| Jason Sams | d8e4161 | 2009-08-20 17:22:40 -0700 | [diff] [blame] | 1260 | } |
| Jason Sams | 6b9dec0 | 2009-09-23 16:38:37 -0700 | [diff] [blame] | 1261 | return 0; |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 1262 | } |
| Jack Palevich | 60aa3ea | 2009-05-26 13:45:08 -0700 | [diff] [blame] | 1263 | } |