| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 The Android Open Source Project |
| 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 | |
| 17 | package android.renderscript; |
| 18 | |
| 19 | |
| Alex Sakhartchouk | a41174e | 2010-08-27 16:10:55 -0700 | [diff] [blame] | 20 | import java.io.IOException; |
| 21 | import java.io.InputStream; |
| 22 | import java.io.UnsupportedEncodingException; |
| 23 | |
| 24 | import android.content.res.Resources; |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 25 | import android.util.Log; |
| 26 | |
| 27 | |
| Alex Sakhartchouk | a0c2eb2 | 2012-04-19 16:30:58 -0700 | [diff] [blame] | 28 | /** @deprecated renderscript is deprecated in J |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 29 | * |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 30 | * Program is a base class for all the objects that modify |
| 31 | * various stages of the graphics pipeline |
| 32 | * |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 33 | **/ |
| 34 | public class Program extends BaseObj { |
| Alex Sakhartchouk | 0473ff1 | 2011-01-14 11:27:27 -0800 | [diff] [blame] | 35 | static final int MAX_INPUT = 8; |
| 36 | static final int MAX_OUTPUT = 8; |
| 37 | static final int MAX_CONSTANT = 8; |
| 38 | static final int MAX_TEXTURE = 8; |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 39 | |
| Alex Sakhartchouk | a0c2eb2 | 2012-04-19 16:30:58 -0700 | [diff] [blame] | 40 | /** @deprecated renderscript is deprecated in J |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 41 | * |
| 42 | * TextureType specifies what textures are attached to Program |
| 43 | * objects |
| 44 | * |
| 45 | **/ |
| Alex Sakhartchouk | 67f2e44 | 2010-11-18 15:22:43 -0800 | [diff] [blame] | 46 | public enum TextureType { |
| Alex Sakhartchouk | a0c2eb2 | 2012-04-19 16:30:58 -0700 | [diff] [blame] | 47 | /** @deprecated renderscript is deprecated in J |
| 48 | */ |
| Alex Sakhartchouk | 67f2e44 | 2010-11-18 15:22:43 -0800 | [diff] [blame] | 49 | TEXTURE_2D (0), |
| Alex Sakhartchouk | a0c2eb2 | 2012-04-19 16:30:58 -0700 | [diff] [blame] | 50 | /** @deprecated renderscript is deprecated in J |
| 51 | */ |
| Alex Sakhartchouk | 67f2e44 | 2010-11-18 15:22:43 -0800 | [diff] [blame] | 52 | TEXTURE_CUBE (1); |
| 53 | |
| 54 | int mID; |
| 55 | TextureType(int id) { |
| 56 | mID = id; |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | enum ProgramParam { |
| 61 | INPUT (0), |
| 62 | OUTPUT (1), |
| 63 | CONSTANT (2), |
| 64 | TEXTURE_TYPE (3); |
| 65 | |
| 66 | int mID; |
| 67 | ProgramParam(int id) { |
| 68 | mID = id; |
| 69 | } |
| 70 | }; |
| 71 | |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 72 | Element mInputs[]; |
| 73 | Element mOutputs[]; |
| 74 | Type mConstants[]; |
| Alex Sakhartchouk | 67f2e44 | 2010-11-18 15:22:43 -0800 | [diff] [blame] | 75 | TextureType mTextures[]; |
| Alex Sakhartchouk | 2123b46 | 2012-02-15 16:21:46 -0800 | [diff] [blame] | 76 | String mTextureNames[]; |
| Jason Sams | 7e5ab3b | 2009-12-15 13:27:04 -0800 | [diff] [blame] | 77 | int mTextureCount; |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 78 | String mShader; |
| 79 | |
| 80 | Program(int id, RenderScript rs) { |
| Alex Sakhartchouk | 0de9444 | 2010-08-11 14:41:28 -0700 | [diff] [blame] | 81 | super(id, rs); |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 82 | } |
| 83 | |
| Alex Sakhartchouk | a0c2eb2 | 2012-04-19 16:30:58 -0700 | [diff] [blame] | 84 | /** @hide renderscript is deprecated in J |
| Alex Sakhartchouk | 918e840 | 2012-04-11 14:04:23 -0700 | [diff] [blame] | 85 | * Program object can have zero or more constant allocations |
| 86 | * associated with it. This method returns the total count. |
| 87 | * @return number of constant input types |
| Alex Sakhartchouk | d5a62bb | 2012-01-06 10:36:06 -0800 | [diff] [blame] | 88 | */ |
| 89 | public int getConstantCount() { |
| 90 | return mConstants != null ? mConstants.length : 0; |
| 91 | } |
| 92 | |
| Alex Sakhartchouk | a0c2eb2 | 2012-04-19 16:30:58 -0700 | [diff] [blame] | 93 | /** @hide renderscript is deprecated in J |
| Alex Sakhartchouk | 918e840 | 2012-04-11 14:04:23 -0700 | [diff] [blame] | 94 | * Returns the type of the constant buffer used in the program |
| 95 | * object. It could be used to query internal elements or create |
| 96 | * an allocation to store constant data. |
| 97 | * @param slot index of the constant input type to return |
| 98 | * @return constant input type |
| Alex Sakhartchouk | d5a62bb | 2012-01-06 10:36:06 -0800 | [diff] [blame] | 99 | */ |
| 100 | public Type getConstant(int slot) { |
| 101 | if (slot < 0 || slot >= mConstants.length) { |
| 102 | throw new IllegalArgumentException("Slot ID out of range."); |
| 103 | } |
| 104 | return mConstants[slot]; |
| 105 | } |
| 106 | |
| Alex Sakhartchouk | a0c2eb2 | 2012-04-19 16:30:58 -0700 | [diff] [blame] | 107 | /** @hide renderscript is deprecated in J |
| Alex Sakhartchouk | 918e840 | 2012-04-11 14:04:23 -0700 | [diff] [blame] | 108 | * Returns the number of textures used in this program object |
| 109 | * @return number of texture inputs |
| Alex Sakhartchouk | d5a62bb | 2012-01-06 10:36:06 -0800 | [diff] [blame] | 110 | */ |
| 111 | public int getTextureCount() { |
| 112 | return mTextureCount; |
| 113 | } |
| 114 | |
| Alex Sakhartchouk | a0c2eb2 | 2012-04-19 16:30:58 -0700 | [diff] [blame] | 115 | /** @hide renderscript is deprecated in J |
| Alex Sakhartchouk | 918e840 | 2012-04-11 14:04:23 -0700 | [diff] [blame] | 116 | * Returns the type of texture at a given slot. e.g. 2D or Cube |
| 117 | * @param slot index of the texture input |
| 118 | * @return texture input type |
| Alex Sakhartchouk | d5a62bb | 2012-01-06 10:36:06 -0800 | [diff] [blame] | 119 | */ |
| 120 | public TextureType getTextureType(int slot) { |
| 121 | if ((slot < 0) || (slot >= mTextureCount)) { |
| 122 | throw new IllegalArgumentException("Slot ID out of range."); |
| 123 | } |
| 124 | return mTextures[slot]; |
| 125 | } |
| 126 | |
| Alex Sakhartchouk | a0c2eb2 | 2012-04-19 16:30:58 -0700 | [diff] [blame] | 127 | /** @hide renderscript is deprecated in J |
| Alex Sakhartchouk | 918e840 | 2012-04-11 14:04:23 -0700 | [diff] [blame] | 128 | * Returns the name of the texture input at a given slot. e.g. |
| 129 | * tex0, diffuse, spec |
| 130 | * @param slot index of the texture input |
| 131 | * @return texture input name |
| Alex Sakhartchouk | 2123b46 | 2012-02-15 16:21:46 -0800 | [diff] [blame] | 132 | */ |
| 133 | public String getTextureName(int slot) { |
| 134 | if ((slot < 0) || (slot >= mTextureCount)) { |
| 135 | throw new IllegalArgumentException("Slot ID out of range."); |
| 136 | } |
| 137 | return mTextureNames[slot]; |
| 138 | } |
| 139 | |
| Alex Sakhartchouk | a0c2eb2 | 2012-04-19 16:30:58 -0700 | [diff] [blame] | 140 | /** @deprecated renderscript is deprecated in J |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 141 | * Binds a constant buffer to be used as uniform inputs to the |
| 142 | * program |
| 143 | * |
| 144 | * @param a allocation containing uniform data |
| 145 | * @param slot index within the program's list of constant |
| 146 | * buffer allocations |
| 147 | */ |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 148 | public void bindConstants(Allocation a, int slot) { |
| Jason Sams | c1d6210 | 2010-11-04 14:32:19 -0700 | [diff] [blame] | 149 | if (slot < 0 || slot >= mConstants.length) { |
| 150 | throw new IllegalArgumentException("Slot ID out of range."); |
| 151 | } |
| 152 | if (a != null && |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 153 | a.getType().getID(mRS) != mConstants[slot].getID(mRS)) { |
| Jason Sams | c1d6210 | 2010-11-04 14:32:19 -0700 | [diff] [blame] | 154 | throw new IllegalArgumentException("Allocation type does not match slot type."); |
| 155 | } |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 156 | int id = a != null ? a.getID(mRS) : 0; |
| 157 | mRS.nProgramBindConstants(getID(mRS), slot, id); |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 158 | } |
| 159 | |
| Alex Sakhartchouk | a0c2eb2 | 2012-04-19 16:30:58 -0700 | [diff] [blame] | 160 | /** @deprecated renderscript is deprecated in J |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 161 | * Binds a texture to be used in the program |
| 162 | * |
| 163 | * @param va allocation containing texture data |
| 164 | * @param slot index within the program's list of textures |
| 165 | * |
| 166 | */ |
| Jason Sams | 68afd01 | 2009-12-17 16:55:08 -0800 | [diff] [blame] | 167 | public void bindTexture(Allocation va, int slot) |
| 168 | throws IllegalArgumentException { |
| 169 | mRS.validate(); |
| Alex Sakhartchouk | 67f2e44 | 2010-11-18 15:22:43 -0800 | [diff] [blame] | 170 | if ((slot < 0) || (slot >= mTextureCount)) { |
| Jason Sams | 68afd01 | 2009-12-17 16:55:08 -0800 | [diff] [blame] | 171 | throw new IllegalArgumentException("Slot ID out of range."); |
| 172 | } |
| Jason Sams | bf6ef8d7 | 2010-12-06 15:59:59 -0800 | [diff] [blame] | 173 | if (va != null && va.getType().hasFaces() && |
| Alex Sakhartchouk | 67f2e44 | 2010-11-18 15:22:43 -0800 | [diff] [blame] | 174 | mTextures[slot] != TextureType.TEXTURE_CUBE) { |
| 175 | throw new IllegalArgumentException("Cannot bind cubemap to 2d texture slot"); |
| 176 | } |
| Jason Sams | 68afd01 | 2009-12-17 16:55:08 -0800 | [diff] [blame] | 177 | |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 178 | int id = va != null ? va.getID(mRS) : 0; |
| 179 | mRS.nProgramBindTexture(getID(mRS), slot, id); |
| Jason Sams | 68afd01 | 2009-12-17 16:55:08 -0800 | [diff] [blame] | 180 | } |
| 181 | |
| Alex Sakhartchouk | a0c2eb2 | 2012-04-19 16:30:58 -0700 | [diff] [blame] | 182 | /** @deprecated renderscript is deprecated in J |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 183 | * Binds an object that describes how a texture at the |
| 184 | * corresponding location is sampled |
| 185 | * |
| 186 | * @param vs sampler for a corresponding texture |
| 187 | * @param slot index within the program's list of textures to |
| 188 | * use the sampler on |
| 189 | * |
| 190 | */ |
| Jason Sams | 68afd01 | 2009-12-17 16:55:08 -0800 | [diff] [blame] | 191 | public void bindSampler(Sampler vs, int slot) |
| 192 | throws IllegalArgumentException { |
| 193 | mRS.validate(); |
| Alex Sakhartchouk | 67f2e44 | 2010-11-18 15:22:43 -0800 | [diff] [blame] | 194 | if ((slot < 0) || (slot >= mTextureCount)) { |
| Jason Sams | 68afd01 | 2009-12-17 16:55:08 -0800 | [diff] [blame] | 195 | throw new IllegalArgumentException("Slot ID out of range."); |
| 196 | } |
| 197 | |
| Jason Sams | e07694b | 2012-04-03 15:36:36 -0700 | [diff] [blame] | 198 | int id = vs != null ? vs.getID(mRS) : 0; |
| 199 | mRS.nProgramBindSampler(getID(mRS), slot, id); |
| Jason Sams | 68afd01 | 2009-12-17 16:55:08 -0800 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 203 | public static class BaseProgramBuilder { |
| 204 | RenderScript mRS; |
| 205 | Element mInputs[]; |
| 206 | Element mOutputs[]; |
| 207 | Type mConstants[]; |
| 208 | Type mTextures[]; |
| Alex Sakhartchouk | 67f2e44 | 2010-11-18 15:22:43 -0800 | [diff] [blame] | 209 | TextureType mTextureTypes[]; |
| Alex Sakhartchouk | 2123b46 | 2012-02-15 16:21:46 -0800 | [diff] [blame] | 210 | String mTextureNames[]; |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 211 | int mInputCount; |
| 212 | int mOutputCount; |
| 213 | int mConstantCount; |
| 214 | int mTextureCount; |
| 215 | String mShader; |
| 216 | |
| Alex Sakhartchouk | a0c2eb2 | 2012-04-19 16:30:58 -0700 | [diff] [blame] | 217 | /** @deprecated renderscript is deprecated in J |
| 218 | */ |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 219 | protected BaseProgramBuilder(RenderScript rs) { |
| 220 | mRS = rs; |
| 221 | mInputs = new Element[MAX_INPUT]; |
| 222 | mOutputs = new Element[MAX_OUTPUT]; |
| 223 | mConstants = new Type[MAX_CONSTANT]; |
| 224 | mInputCount = 0; |
| 225 | mOutputCount = 0; |
| 226 | mConstantCount = 0; |
| Jason Sams | 7e5ab3b | 2009-12-15 13:27:04 -0800 | [diff] [blame] | 227 | mTextureCount = 0; |
| Alex Sakhartchouk | 67f2e44 | 2010-11-18 15:22:43 -0800 | [diff] [blame] | 228 | mTextureTypes = new TextureType[MAX_TEXTURE]; |
| Alex Sakhartchouk | 2123b46 | 2012-02-15 16:21:46 -0800 | [diff] [blame] | 229 | mTextureNames = new String[MAX_TEXTURE]; |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 230 | } |
| 231 | |
| Alex Sakhartchouk | a0c2eb2 | 2012-04-19 16:30:58 -0700 | [diff] [blame] | 232 | /** @deprecated renderscript is deprecated in J |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 233 | * Sets the GLSL shader code to be used in the program |
| 234 | * |
| 235 | * @param s GLSL shader string |
| 236 | * @return self |
| 237 | */ |
| Jim Shuma | 288c871 | 2010-07-07 14:24:21 -0700 | [diff] [blame] | 238 | public BaseProgramBuilder setShader(String s) { |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 239 | mShader = s; |
| Jim Shuma | 288c871 | 2010-07-07 14:24:21 -0700 | [diff] [blame] | 240 | return this; |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 241 | } |
| 242 | |
| Alex Sakhartchouk | a0c2eb2 | 2012-04-19 16:30:58 -0700 | [diff] [blame] | 243 | /** @deprecated renderscript is deprecated in J |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 244 | * Sets the GLSL shader code to be used in the program |
| 245 | * |
| 246 | * @param resources application resources |
| 247 | * @param resourceID id of the file containing GLSL shader code |
| 248 | * |
| 249 | * @return self |
| 250 | */ |
| Alex Sakhartchouk | a41174e | 2010-08-27 16:10:55 -0700 | [diff] [blame] | 251 | public BaseProgramBuilder setShader(Resources resources, int resourceID) { |
| 252 | byte[] str; |
| 253 | int strLength; |
| 254 | InputStream is = resources.openRawResource(resourceID); |
| 255 | try { |
| 256 | try { |
| 257 | str = new byte[1024]; |
| 258 | strLength = 0; |
| 259 | while(true) { |
| 260 | int bytesLeft = str.length - strLength; |
| 261 | if (bytesLeft == 0) { |
| 262 | byte[] buf2 = new byte[str.length * 2]; |
| 263 | System.arraycopy(str, 0, buf2, 0, str.length); |
| 264 | str = buf2; |
| 265 | bytesLeft = str.length - strLength; |
| 266 | } |
| 267 | int bytesRead = is.read(str, strLength, bytesLeft); |
| 268 | if (bytesRead <= 0) { |
| 269 | break; |
| 270 | } |
| 271 | strLength += bytesRead; |
| 272 | } |
| 273 | } finally { |
| 274 | is.close(); |
| 275 | } |
| 276 | } catch(IOException e) { |
| 277 | throw new Resources.NotFoundException(); |
| 278 | } |
| 279 | |
| 280 | try { |
| 281 | mShader = new String(str, 0, strLength, "UTF-8"); |
| 282 | } catch (UnsupportedEncodingException e) { |
| 283 | Log.e("Renderscript shader creation", "Could not decode shader string"); |
| 284 | } |
| 285 | |
| 286 | return this; |
| 287 | } |
| 288 | |
| Alex Sakhartchouk | a0c2eb2 | 2012-04-19 16:30:58 -0700 | [diff] [blame] | 289 | /** @deprecated renderscript is deprecated in J |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 290 | * Queries the index of the last added constant buffer type |
| 291 | * |
| 292 | */ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 293 | public int getCurrentConstantIndex() { |
| 294 | return mConstantCount - 1; |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 295 | } |
| 296 | |
| Alex Sakhartchouk | a0c2eb2 | 2012-04-19 16:30:58 -0700 | [diff] [blame] | 297 | /** @deprecated renderscript is deprecated in J |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 298 | * Queries the index of the last added texture type |
| 299 | * |
| 300 | */ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 301 | public int getCurrentTextureIndex() { |
| 302 | return mTextureCount - 1; |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 303 | } |
| 304 | |
| Alex Sakhartchouk | a0c2eb2 | 2012-04-19 16:30:58 -0700 | [diff] [blame] | 305 | /** @deprecated renderscript is deprecated in J |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 306 | * Adds constant (uniform) inputs to the program |
| 307 | * |
| 308 | * @param t Type that describes the layout of the Allocation |
| 309 | * object to be used as constant inputs to the Program |
| 310 | * @return self |
| 311 | */ |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 312 | public BaseProgramBuilder addConstant(Type t) throws IllegalStateException { |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 313 | // Should check for consistant and non-conflicting names... |
| 314 | if(mConstantCount >= MAX_CONSTANT) { |
| Jason Sams | c1d6210 | 2010-11-04 14:32:19 -0700 | [diff] [blame] | 315 | throw new RSIllegalArgumentException("Max input count exceeded."); |
| 316 | } |
| 317 | if (t.getElement().isComplex()) { |
| 318 | throw new RSIllegalArgumentException("Complex elements not allowed."); |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 319 | } |
| Jason Sams | ea87e96 | 2010-01-12 12:12:28 -0800 | [diff] [blame] | 320 | mConstants[mConstantCount] = t; |
| Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 321 | mConstantCount++; |
| Alex Sakhartchouk | 67f2e44 | 2010-11-18 15:22:43 -0800 | [diff] [blame] | 322 | return this; |
| 323 | } |
| 324 | |
| Alex Sakhartchouk | a0c2eb2 | 2012-04-19 16:30:58 -0700 | [diff] [blame] | 325 | /** @deprecated renderscript is deprecated in J |
| Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 326 | * Adds a texture input to the Program |
| 327 | * |
| 328 | * @param texType describes that the texture to append it (2D, |
| 329 | * Cubemap, etc.) |
| 330 | * @return self |
| 331 | */ |
| Alex Sakhartchouk | 67f2e44 | 2010-11-18 15:22:43 -0800 | [diff] [blame] | 332 | public BaseProgramBuilder addTexture(TextureType texType) throws IllegalArgumentException { |
| Alex Sakhartchouk | 2123b46 | 2012-02-15 16:21:46 -0800 | [diff] [blame] | 333 | addTexture(texType, "Tex" + mTextureCount); |
| 334 | return this; |
| 335 | } |
| 336 | |
| Alex Sakhartchouk | a0c2eb2 | 2012-04-19 16:30:58 -0700 | [diff] [blame] | 337 | /** @hide renderscript is deprecated in J |
| Alex Sakhartchouk | 2123b46 | 2012-02-15 16:21:46 -0800 | [diff] [blame] | 338 | * Adds a texture input to the Program |
| 339 | * |
| 340 | * @param texType describes that the texture to append it (2D, |
| 341 | * Cubemap, etc.) |
| 342 | * @param texName what the texture should be called in the |
| 343 | * shader |
| 344 | * @return self |
| 345 | */ |
| 346 | public BaseProgramBuilder addTexture(TextureType texType, String texName) |
| 347 | throws IllegalArgumentException { |
| Alex Sakhartchouk | 67f2e44 | 2010-11-18 15:22:43 -0800 | [diff] [blame] | 348 | if(mTextureCount >= MAX_TEXTURE) { |
| 349 | throw new IllegalArgumentException("Max texture count exceeded."); |
| 350 | } |
| Alex Sakhartchouk | 2123b46 | 2012-02-15 16:21:46 -0800 | [diff] [blame] | 351 | mTextureTypes[mTextureCount] = texType; |
| 352 | mTextureNames[mTextureCount] = texName; |
| 353 | mTextureCount ++; |
| Jim Shuma | 288c871 | 2010-07-07 14:24:21 -0700 | [diff] [blame] | 354 | return this; |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 355 | } |
| 356 | |
| Alex Sakhartchouk | a0c2eb2 | 2012-04-19 16:30:58 -0700 | [diff] [blame] | 357 | /** @deprecated renderscript is deprecated in J |
| 358 | */ |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 359 | protected void initProgram(Program p) { |
| 360 | p.mInputs = new Element[mInputCount]; |
| 361 | System.arraycopy(mInputs, 0, p.mInputs, 0, mInputCount); |
| 362 | p.mOutputs = new Element[mOutputCount]; |
| 363 | System.arraycopy(mOutputs, 0, p.mOutputs, 0, mOutputCount); |
| 364 | p.mConstants = new Type[mConstantCount]; |
| 365 | System.arraycopy(mConstants, 0, p.mConstants, 0, mConstantCount); |
| Jason Sams | 7e5ab3b | 2009-12-15 13:27:04 -0800 | [diff] [blame] | 366 | p.mTextureCount = mTextureCount; |
| Alex Sakhartchouk | 67f2e44 | 2010-11-18 15:22:43 -0800 | [diff] [blame] | 367 | p.mTextures = new TextureType[mTextureCount]; |
| 368 | System.arraycopy(mTextureTypes, 0, p.mTextures, 0, mTextureCount); |
| Alex Sakhartchouk | 2123b46 | 2012-02-15 16:21:46 -0800 | [diff] [blame] | 369 | p.mTextureNames = new String[mTextureCount]; |
| 370 | System.arraycopy(mTextureNames, 0, p.mTextureNames, 0, mTextureCount); |
| Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 371 | } |
| 372 | } |
| 373 | |
| 374 | } |
| 375 | |
| 376 | |