blob: 772021c7815c446ab278e2e76bc6a31a3a1426d2 [file] [log] [blame]
Jason Sams0011bcf2009-12-15 12:58:36 -08001/*
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
17package android.renderscript;
18
19
Alex Sakhartchouka41174e2010-08-27 16:10:55 -070020import java.io.IOException;
21import java.io.InputStream;
22import java.io.UnsupportedEncodingException;
23
24import android.content.res.Resources;
Jason Sams0011bcf2009-12-15 12:58:36 -080025import android.util.Log;
26
27
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -070028/**
Tim Murraya9084222013-04-05 22:06:43 +000029 * @hide
Jason Sams0011bcf2009-12-15 12:58:36 -080030 *
Alex Sakhartchoukdf272022011-01-09 11:34:03 -080031 * Program is a base class for all the objects that modify
32 * various stages of the graphics pipeline
33 *
Jason Sams0011bcf2009-12-15 12:58:36 -080034 **/
35public class Program extends BaseObj {
Alex Sakhartchouk0473ff12011-01-14 11:27:27 -080036 static final int MAX_INPUT = 8;
37 static final int MAX_OUTPUT = 8;
38 static final int MAX_CONSTANT = 8;
39 static final int MAX_TEXTURE = 8;
Jason Sams0011bcf2009-12-15 12:58:36 -080040
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -070041 /**
Alex Sakhartchoukdf272022011-01-09 11:34:03 -080042 *
43 * TextureType specifies what textures are attached to Program
44 * objects
45 *
46 **/
Alex Sakhartchouk67f2e442010-11-18 15:22:43 -080047 public enum TextureType {
48 TEXTURE_2D (0),
49 TEXTURE_CUBE (1);
50
51 int mID;
52 TextureType(int id) {
53 mID = id;
54 }
55 }
56
57 enum ProgramParam {
58 INPUT (0),
59 OUTPUT (1),
60 CONSTANT (2),
61 TEXTURE_TYPE (3);
62
63 int mID;
64 ProgramParam(int id) {
65 mID = id;
66 }
67 };
68
Jason Sams0011bcf2009-12-15 12:58:36 -080069 Element mInputs[];
70 Element mOutputs[];
71 Type mConstants[];
Alex Sakhartchouk67f2e442010-11-18 15:22:43 -080072 TextureType mTextures[];
Alex Sakhartchouk2123b462012-02-15 16:21:46 -080073 String mTextureNames[];
Jason Sams7e5ab3b2009-12-15 13:27:04 -080074 int mTextureCount;
Jason Sams0011bcf2009-12-15 12:58:36 -080075 String mShader;
76
Tim Murray460a0492013-11-19 12:45:54 -080077 Program(long id, RenderScript rs) {
Alex Sakhartchouk0de94442010-08-11 14:41:28 -070078 super(id, rs);
Yang Nieb4dd082016-03-24 09:40:32 -070079 guard.open("destroy");
Jason Sams0011bcf2009-12-15 12:58:36 -080080 }
81
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -070082 /**
Alex Sakhartchouk918e8402012-04-11 14:04:23 -070083 * Program object can have zero or more constant allocations
84 * associated with it. This method returns the total count.
85 * @return number of constant input types
Alex Sakhartchoukd5a62bb2012-01-06 10:36:06 -080086 */
87 public int getConstantCount() {
88 return mConstants != null ? mConstants.length : 0;
89 }
90
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -070091 /**
Alex Sakhartchouk918e8402012-04-11 14:04:23 -070092 * Returns the type of the constant buffer used in the program
93 * object. It could be used to query internal elements or create
94 * an allocation to store constant data.
95 * @param slot index of the constant input type to return
96 * @return constant input type
Alex Sakhartchoukd5a62bb2012-01-06 10:36:06 -080097 */
98 public Type getConstant(int slot) {
99 if (slot < 0 || slot >= mConstants.length) {
100 throw new IllegalArgumentException("Slot ID out of range.");
101 }
102 return mConstants[slot];
103 }
104
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700105 /**
Alex Sakhartchouk918e8402012-04-11 14:04:23 -0700106 * Returns the number of textures used in this program object
107 * @return number of texture inputs
Alex Sakhartchoukd5a62bb2012-01-06 10:36:06 -0800108 */
109 public int getTextureCount() {
110 return mTextureCount;
111 }
112
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700113 /**
Alex Sakhartchouk918e8402012-04-11 14:04:23 -0700114 * Returns the type of texture at a given slot. e.g. 2D or Cube
115 * @param slot index of the texture input
116 * @return texture input type
Alex Sakhartchoukd5a62bb2012-01-06 10:36:06 -0800117 */
118 public TextureType getTextureType(int slot) {
119 if ((slot < 0) || (slot >= mTextureCount)) {
120 throw new IllegalArgumentException("Slot ID out of range.");
121 }
122 return mTextures[slot];
123 }
124
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700125 /**
Alex Sakhartchouk918e8402012-04-11 14:04:23 -0700126 * Returns the name of the texture input at a given slot. e.g.
127 * tex0, diffuse, spec
128 * @param slot index of the texture input
129 * @return texture input name
Alex Sakhartchouk2123b462012-02-15 16:21:46 -0800130 */
131 public String getTextureName(int slot) {
132 if ((slot < 0) || (slot >= mTextureCount)) {
133 throw new IllegalArgumentException("Slot ID out of range.");
134 }
135 return mTextureNames[slot];
136 }
137
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700138 /**
Alex Sakhartchoukdf272022011-01-09 11:34:03 -0800139 * Binds a constant buffer to be used as uniform inputs to the
140 * program
141 *
142 * @param a allocation containing uniform data
143 * @param slot index within the program's list of constant
144 * buffer allocations
145 */
Jason Sams0011bcf2009-12-15 12:58:36 -0800146 public void bindConstants(Allocation a, int slot) {
Jason Samsc1d62102010-11-04 14:32:19 -0700147 if (slot < 0 || slot >= mConstants.length) {
148 throw new IllegalArgumentException("Slot ID out of range.");
149 }
150 if (a != null &&
Jason Samse07694b2012-04-03 15:36:36 -0700151 a.getType().getID(mRS) != mConstants[slot].getID(mRS)) {
Jason Samsc1d62102010-11-04 14:32:19 -0700152 throw new IllegalArgumentException("Allocation type does not match slot type.");
153 }
Tim Murray460a0492013-11-19 12:45:54 -0800154 long id = a != null ? a.getID(mRS) : 0;
Jason Samse07694b2012-04-03 15:36:36 -0700155 mRS.nProgramBindConstants(getID(mRS), slot, id);
Jason Sams0011bcf2009-12-15 12:58:36 -0800156 }
157
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700158 /**
Alex Sakhartchoukdf272022011-01-09 11:34:03 -0800159 * Binds a texture to be used in the program
160 *
161 * @param va allocation containing texture data
162 * @param slot index within the program's list of textures
163 *
164 */
Jason Sams68afd012009-12-17 16:55:08 -0800165 public void bindTexture(Allocation va, int slot)
166 throws IllegalArgumentException {
167 mRS.validate();
Alex Sakhartchouk67f2e442010-11-18 15:22:43 -0800168 if ((slot < 0) || (slot >= mTextureCount)) {
Jason Sams68afd012009-12-17 16:55:08 -0800169 throw new IllegalArgumentException("Slot ID out of range.");
170 }
Jason Samsbf6ef8d2010-12-06 15:59:59 -0800171 if (va != null && va.getType().hasFaces() &&
Alex Sakhartchouk67f2e442010-11-18 15:22:43 -0800172 mTextures[slot] != TextureType.TEXTURE_CUBE) {
173 throw new IllegalArgumentException("Cannot bind cubemap to 2d texture slot");
174 }
Jason Sams68afd012009-12-17 16:55:08 -0800175
Tim Murray460a0492013-11-19 12:45:54 -0800176 long id = va != null ? va.getID(mRS) : 0;
Jason Samse07694b2012-04-03 15:36:36 -0700177 mRS.nProgramBindTexture(getID(mRS), slot, id);
Jason Sams68afd012009-12-17 16:55:08 -0800178 }
179
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700180 /**
Alex Sakhartchoukdf272022011-01-09 11:34:03 -0800181 * Binds an object that describes how a texture at the
182 * corresponding location is sampled
183 *
184 * @param vs sampler for a corresponding texture
185 * @param slot index within the program's list of textures to
186 * use the sampler on
187 *
188 */
Jason Sams68afd012009-12-17 16:55:08 -0800189 public void bindSampler(Sampler vs, int slot)
190 throws IllegalArgumentException {
191 mRS.validate();
Alex Sakhartchouk67f2e442010-11-18 15:22:43 -0800192 if ((slot < 0) || (slot >= mTextureCount)) {
Jason Sams68afd012009-12-17 16:55:08 -0800193 throw new IllegalArgumentException("Slot ID out of range.");
194 }
195
Tim Murray460a0492013-11-19 12:45:54 -0800196 long id = vs != null ? vs.getID(mRS) : 0;
Jason Samse07694b2012-04-03 15:36:36 -0700197 mRS.nProgramBindSampler(getID(mRS), slot, id);
Jason Sams68afd012009-12-17 16:55:08 -0800198 }
199
200
Jason Sams0011bcf2009-12-15 12:58:36 -0800201 public static class BaseProgramBuilder {
202 RenderScript mRS;
203 Element mInputs[];
204 Element mOutputs[];
205 Type mConstants[];
206 Type mTextures[];
Alex Sakhartchouk67f2e442010-11-18 15:22:43 -0800207 TextureType mTextureTypes[];
Alex Sakhartchouk2123b462012-02-15 16:21:46 -0800208 String mTextureNames[];
Jason Sams0011bcf2009-12-15 12:58:36 -0800209 int mInputCount;
210 int mOutputCount;
211 int mConstantCount;
212 int mTextureCount;
213 String mShader;
214
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700215
Jason Sams0011bcf2009-12-15 12:58:36 -0800216 protected BaseProgramBuilder(RenderScript rs) {
217 mRS = rs;
218 mInputs = new Element[MAX_INPUT];
219 mOutputs = new Element[MAX_OUTPUT];
220 mConstants = new Type[MAX_CONSTANT];
221 mInputCount = 0;
222 mOutputCount = 0;
223 mConstantCount = 0;
Jason Sams7e5ab3b2009-12-15 13:27:04 -0800224 mTextureCount = 0;
Alex Sakhartchouk67f2e442010-11-18 15:22:43 -0800225 mTextureTypes = new TextureType[MAX_TEXTURE];
Alex Sakhartchouk2123b462012-02-15 16:21:46 -0800226 mTextureNames = new String[MAX_TEXTURE];
Jason Sams0011bcf2009-12-15 12:58:36 -0800227 }
228
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700229 /**
Alex Sakhartchoukdf272022011-01-09 11:34:03 -0800230 * Sets the GLSL shader code to be used in the program
231 *
232 * @param s GLSL shader string
233 * @return self
234 */
Jim Shuma288c8712010-07-07 14:24:21 -0700235 public BaseProgramBuilder setShader(String s) {
Jason Sams0011bcf2009-12-15 12:58:36 -0800236 mShader = s;
Jim Shuma288c8712010-07-07 14:24:21 -0700237 return this;
Jason Sams0011bcf2009-12-15 12:58:36 -0800238 }
239
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700240 /**
Alex Sakhartchoukdf272022011-01-09 11:34:03 -0800241 * Sets the GLSL shader code to be used in the program
242 *
243 * @param resources application resources
244 * @param resourceID id of the file containing GLSL shader code
245 *
246 * @return self
247 */
Alex Sakhartchouka41174e2010-08-27 16:10:55 -0700248 public BaseProgramBuilder setShader(Resources resources, int resourceID) {
249 byte[] str;
250 int strLength;
251 InputStream is = resources.openRawResource(resourceID);
252 try {
253 try {
254 str = new byte[1024];
255 strLength = 0;
256 while(true) {
257 int bytesLeft = str.length - strLength;
258 if (bytesLeft == 0) {
259 byte[] buf2 = new byte[str.length * 2];
260 System.arraycopy(str, 0, buf2, 0, str.length);
261 str = buf2;
262 bytesLeft = str.length - strLength;
263 }
264 int bytesRead = is.read(str, strLength, bytesLeft);
265 if (bytesRead <= 0) {
266 break;
267 }
268 strLength += bytesRead;
269 }
270 } finally {
271 is.close();
272 }
273 } catch(IOException e) {
274 throw new Resources.NotFoundException();
275 }
276
277 try {
278 mShader = new String(str, 0, strLength, "UTF-8");
279 } catch (UnsupportedEncodingException e) {
Tim Murrayc11e25c2013-04-09 11:01:01 -0700280 Log.e("RenderScript shader creation", "Could not decode shader string");
Alex Sakhartchouka41174e2010-08-27 16:10:55 -0700281 }
282
283 return this;
284 }
285
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700286 /**
Alex Sakhartchoukdf272022011-01-09 11:34:03 -0800287 * Queries the index of the last added constant buffer type
288 *
289 */
Alex Sakhartchoukb4d7bb62010-12-21 14:42:26 -0800290 public int getCurrentConstantIndex() {
291 return mConstantCount - 1;
Jason Sams0011bcf2009-12-15 12:58:36 -0800292 }
293
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700294 /**
Alex Sakhartchoukdf272022011-01-09 11:34:03 -0800295 * Queries the index of the last added texture type
296 *
297 */
Alex Sakhartchoukb4d7bb62010-12-21 14:42:26 -0800298 public int getCurrentTextureIndex() {
299 return mTextureCount - 1;
Jason Sams0011bcf2009-12-15 12:58:36 -0800300 }
301
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700302 /**
Alex Sakhartchoukdf272022011-01-09 11:34:03 -0800303 * Adds constant (uniform) inputs to the program
304 *
305 * @param t Type that describes the layout of the Allocation
306 * object to be used as constant inputs to the Program
307 * @return self
308 */
Alex Sakhartchoukb4d7bb62010-12-21 14:42:26 -0800309 public BaseProgramBuilder addConstant(Type t) throws IllegalStateException {
Jason Sams0011bcf2009-12-15 12:58:36 -0800310 // Should check for consistant and non-conflicting names...
311 if(mConstantCount >= MAX_CONSTANT) {
Jason Samsc1d62102010-11-04 14:32:19 -0700312 throw new RSIllegalArgumentException("Max input count exceeded.");
313 }
314 if (t.getElement().isComplex()) {
315 throw new RSIllegalArgumentException("Complex elements not allowed.");
Jason Sams0011bcf2009-12-15 12:58:36 -0800316 }
Jason Samsea87e962010-01-12 12:12:28 -0800317 mConstants[mConstantCount] = t;
Alex Sakhartchoukb4d7bb62010-12-21 14:42:26 -0800318 mConstantCount++;
Alex Sakhartchouk67f2e442010-11-18 15:22:43 -0800319 return this;
320 }
321
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700322 /**
Alex Sakhartchoukdf272022011-01-09 11:34:03 -0800323 * Adds a texture input to the Program
324 *
325 * @param texType describes that the texture to append it (2D,
326 * Cubemap, etc.)
327 * @return self
328 */
Alex Sakhartchouk67f2e442010-11-18 15:22:43 -0800329 public BaseProgramBuilder addTexture(TextureType texType) throws IllegalArgumentException {
Alex Sakhartchouk2123b462012-02-15 16:21:46 -0800330 addTexture(texType, "Tex" + mTextureCount);
331 return this;
332 }
333
Stephen Hines9c9ad3f8c22012-05-07 15:34:29 -0700334 /**
Alex Sakhartchouk2123b462012-02-15 16:21:46 -0800335 * Adds a texture input to the Program
336 *
337 * @param texType describes that the texture to append it (2D,
338 * Cubemap, etc.)
339 * @param texName what the texture should be called in the
340 * shader
341 * @return self
342 */
343 public BaseProgramBuilder addTexture(TextureType texType, String texName)
344 throws IllegalArgumentException {
Alex Sakhartchouk67f2e442010-11-18 15:22:43 -0800345 if(mTextureCount >= MAX_TEXTURE) {
346 throw new IllegalArgumentException("Max texture count exceeded.");
347 }
Alex Sakhartchouk2123b462012-02-15 16:21:46 -0800348 mTextureTypes[mTextureCount] = texType;
349 mTextureNames[mTextureCount] = texName;
350 mTextureCount ++;
Jim Shuma288c8712010-07-07 14:24:21 -0700351 return this;
Jason Sams0011bcf2009-12-15 12:58:36 -0800352 }
353
354 protected void initProgram(Program p) {
355 p.mInputs = new Element[mInputCount];
356 System.arraycopy(mInputs, 0, p.mInputs, 0, mInputCount);
357 p.mOutputs = new Element[mOutputCount];
358 System.arraycopy(mOutputs, 0, p.mOutputs, 0, mOutputCount);
359 p.mConstants = new Type[mConstantCount];
360 System.arraycopy(mConstants, 0, p.mConstants, 0, mConstantCount);
Jason Sams7e5ab3b2009-12-15 13:27:04 -0800361 p.mTextureCount = mTextureCount;
Alex Sakhartchouk67f2e442010-11-18 15:22:43 -0800362 p.mTextures = new TextureType[mTextureCount];
363 System.arraycopy(mTextureTypes, 0, p.mTextures, 0, mTextureCount);
Alex Sakhartchouk2123b462012-02-15 16:21:46 -0800364 p.mTextureNames = new String[mTextureCount];
365 System.arraycopy(mTextureNames, 0, p.mTextureNames, 0, mTextureCount);
Jason Sams0011bcf2009-12-15 12:58:36 -0800366 }
367 }
368
369}
370
371