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