Jason Sams | 110195f | 2009-08-04 18:47:46 -0700 | [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 | c984dd7 | 2010-09-14 09:50:43 -0700 | [diff] [blame] | 20 | import android.graphics.Matrix; |
Jason Sams | 110195f | 2009-08-04 18:47:46 -0700 | [diff] [blame] | 21 | import android.util.Config; |
| 22 | import android.util.Log; |
| 23 | |
| 24 | |
| 25 | /** |
Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 26 | * ProgramVertex, also know as a vertex shader, describes a |
| 27 | * stage in the graphics pipeline responsible for manipulating |
| 28 | * geometric data in a user-defined way. |
Jason Sams | 110195f | 2009-08-04 18:47:46 -0700 | [diff] [blame] | 29 | * |
| 30 | **/ |
Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 31 | public class ProgramVertex extends Program { |
Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 32 | |
Jason Sams | 110195f | 2009-08-04 18:47:46 -0700 | [diff] [blame] | 33 | ProgramVertex(int id, RenderScript rs) { |
Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 34 | super(id, rs); |
Jason Sams | 110195f | 2009-08-04 18:47:46 -0700 | [diff] [blame] | 35 | } |
| 36 | |
Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 37 | /** |
| 38 | * Builder class for creating ProgramVertex objects. |
| 39 | * The builder starts empty and the user must minimally provide |
| 40 | * the GLSL shader code, and the varying inputs. Constant, or |
| 41 | * uniform parameters to the shader may optionally be provided as |
| 42 | * well. |
| 43 | * |
| 44 | **/ |
Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 45 | public static class Builder extends BaseProgramBuilder { |
Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 46 | /** |
| 47 | * Create a builder object. |
| 48 | * |
Alex Sakhartchouk | f5c876e | 2011-01-13 14:53:43 -0800 | [diff] [blame^] | 49 | * @param rs Context to which the program will belong. |
Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 50 | */ |
Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 51 | public Builder(RenderScript rs) { |
Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 52 | super(rs); |
Jason Sams | 110195f | 2009-08-04 18:47:46 -0700 | [diff] [blame] | 53 | } |
| 54 | |
Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 55 | /** |
| 56 | * Add varying inputs to the program |
| 57 | * |
| 58 | * @param e element describing the layout of the varying input |
| 59 | * structure |
| 60 | * @return self |
| 61 | */ |
Alex Sakhartchouk | b4d7bb6 | 2010-12-21 14:42:26 -0800 | [diff] [blame] | 62 | public Builder addInput(Element e) throws IllegalStateException { |
| 63 | // Should check for consistant and non-conflicting names... |
| 64 | if(mInputCount >= MAX_INPUT) { |
| 65 | throw new RSIllegalArgumentException("Max input count exceeded."); |
| 66 | } |
| 67 | if (e.isComplex()) { |
| 68 | throw new RSIllegalArgumentException("Complex elements not allowed."); |
| 69 | } |
| 70 | mInputs[mInputCount++] = e; |
| 71 | return this; |
| 72 | } |
| 73 | |
Alex Sakhartchouk | df27202 | 2011-01-09 11:34:03 -0800 | [diff] [blame] | 74 | /** |
| 75 | * Creates ProgramVertex from the current state of the builder |
| 76 | * |
| 77 | * @return ProgramVertex |
| 78 | */ |
Jason Sams | 110195f | 2009-08-04 18:47:46 -0700 | [diff] [blame] | 79 | public ProgramVertex create() { |
Jason Sams | 771bebb | 2009-12-07 12:40:12 -0800 | [diff] [blame] | 80 | mRS.validate(); |
Alex Sakhartchouk | 67f2e44 | 2010-11-18 15:22:43 -0800 | [diff] [blame] | 81 | int[] tmp = new int[(mInputCount + mOutputCount + mConstantCount + mTextureCount) * 2]; |
Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 82 | int idx = 0; |
| 83 | |
| 84 | for (int i=0; i < mInputCount; i++) { |
Alex Sakhartchouk | 67f2e44 | 2010-11-18 15:22:43 -0800 | [diff] [blame] | 85 | tmp[idx++] = ProgramParam.INPUT.mID; |
Jason Sams | 06d69de | 2010-11-09 17:11:40 -0800 | [diff] [blame] | 86 | tmp[idx++] = mInputs[i].getID(); |
Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 87 | } |
| 88 | for (int i=0; i < mOutputCount; i++) { |
Alex Sakhartchouk | 67f2e44 | 2010-11-18 15:22:43 -0800 | [diff] [blame] | 89 | tmp[idx++] = ProgramParam.OUTPUT.mID; |
Jason Sams | 06d69de | 2010-11-09 17:11:40 -0800 | [diff] [blame] | 90 | tmp[idx++] = mOutputs[i].getID(); |
Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 91 | } |
| 92 | for (int i=0; i < mConstantCount; i++) { |
Alex Sakhartchouk | 67f2e44 | 2010-11-18 15:22:43 -0800 | [diff] [blame] | 93 | tmp[idx++] = ProgramParam.CONSTANT.mID; |
Jason Sams | 06d69de | 2010-11-09 17:11:40 -0800 | [diff] [blame] | 94 | tmp[idx++] = mConstants[i].getID(); |
Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 95 | } |
Alex Sakhartchouk | 67f2e44 | 2010-11-18 15:22:43 -0800 | [diff] [blame] | 96 | for (int i=0; i < mTextureCount; i++) { |
| 97 | tmp[idx++] = ProgramParam.TEXTURE_TYPE.mID; |
| 98 | tmp[idx++] = mTextureTypes[i].mID; |
| 99 | } |
Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 100 | |
Alex Sakhartchouk | b89aaac | 2010-09-23 16:16:33 -0700 | [diff] [blame] | 101 | int id = mRS.nProgramVertexCreate(mShader, tmp); |
Jason Sams | 0011bcf | 2009-12-15 12:58:36 -0800 | [diff] [blame] | 102 | ProgramVertex pv = new ProgramVertex(id, mRS); |
| 103 | initProgram(pv); |
| 104 | return pv; |
Jason Sams | 110195f | 2009-08-04 18:47:46 -0700 | [diff] [blame] | 105 | } |
| 106 | } |
| 107 | |
Jason Sams | 110195f | 2009-08-04 18:47:46 -0700 | [diff] [blame] | 108 | } |