diff options
| author | Jason Sams <rjsams@android.com> | 2010-01-04 16:52:27 -0800 |
|---|---|---|
| committer | Jason Sams <rjsams@android.com> | 2010-01-04 16:52:27 -0800 |
| commit | e17964e150e459bacced5658ae36fe1c56082e37 (patch) | |
| tree | d9a3f9bf24dcc509d8475e978c262d702cfb0bf3 /libs/rs/rsProgram.h | |
| parent | 7d46f612a25fc9f190358e9bd807b71d424ce7d2 (diff) | |
| download | frameworks_base-e17964e150e459bacced5658ae36fe1c56082e37.zip frameworks_base-e17964e150e459bacced5658ae36fe1c56082e37.tar.gz frameworks_base-e17964e150e459bacced5658ae36fe1c56082e37.tar.bz2 | |
Add RS support for generic attribs as input to vertex programs.
Diffstat (limited to 'libs/rs/rsProgram.h')
| -rw-r--r-- | libs/rs/rsProgram.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/rs/rsProgram.h b/libs/rs/rsProgram.h index 25a5434..dc3a57c 100644 --- a/libs/rs/rsProgram.h +++ b/libs/rs/rsProgram.h @@ -53,6 +53,10 @@ public: const String8 & getAttribName(uint32_t i) const {return mAttribNames[i];} const String8 & getUniformName(uint32_t i) const {return mUniformNames[i];} + String8 getGLSLInputString() const; + String8 getGLSLOutputString() const; + String8 getGLSLConstantString() const; + protected: // Components not listed in "in" will be passed though // unless overwritten by components in out. |
