checkpoint pragma support. Includes more cleanup of script enviroment storage to keep the env settings in the base and only the per language state in ScriptC.
diff --git a/libs/rs/rsContext.h b/libs/rs/rsContext.h
index 64717e4..929c0f9 100644
--- a/libs/rs/rsContext.h
+++ b/libs/rs/rsContext.h
@@ -103,11 +103,16 @@
ObjectBaseRef<ProgramVertex> mVertex;
ObjectBaseRef<ProgramFragmentStore> mFragmentStore;
+ ProgramFragment * mDefaultFragment;
+ ProgramVertex * mDefaultVertex;
+ ProgramFragmentStore * mDefaultFragmentStore;
+
private:
Context();
void initEGL();
+ bool runScript(Script *s);
bool runRootScript();
static void * threadProc(void *);