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