summaryrefslogtreecommitdiff
path: root/libs/rs/rsScriptC.h
diff options
context:
space:
mode:
author Jason Sams <rjsams@android.com> 2009-07-16 15:08:06 -0700
committer Jason Sams <rjsams@android.com> 2009-07-16 15:08:06 -0700
commit54440a01a97144efb6a3106fc8e63152f47e97f9 (patch)
treee47c05656efb942ceddfdcc964fa3bd778f3a214 /libs/rs/rsScriptC.h
parent4a967dabc3c610e93cfc9cc1f8811e72f54d1797 (diff)
Update rollo and renderscript to the new ACC compiler interface.
Diffstat (limited to 'libs/rs/rsScriptC.h')
-rw-r--r--libs/rs/rsScriptC.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/libs/rs/rsScriptC.h b/libs/rs/rsScriptC.h
index c46901b14806..9d9ec4977dbd 100644
--- a/libs/rs/rsScriptC.h
+++ b/libs/rs/rsScriptC.h
@@ -69,6 +69,14 @@ public:
void clear();
void runCompiler(Context *rsc);
+
+ struct SymbolTable_t {
+ const char * mName;
+ void * mPtr;
+ const char * mDecl;
+ };
+ static SymbolTable_t gSyms[];
+ static const SymbolTable_t * lookupSymbol(const char *);
};