Move placement of script enviroment data to base.
diff --git a/libs/rs/rsScriptC.h b/libs/rs/rsScriptC.h
index 5b79b90..892d21e 100644
--- a/libs/rs/rsScriptC.h
+++ b/libs/rs/rsScriptC.h
@@ -40,24 +40,14 @@
         const char * mScriptText;
         uint32_t mScriptTextLength;
 
-        bool useStateVertex;
-        bool useStateRaster;
-        bool useStateFragment;
-        bool useStateStore;
+
+        int mVersionMajor;
+        int mVersionMinor;
 
         rsc_RunScript mScript;
     };
 
-    struct Enviroment_t {
-        bool mIsRoot;
-        bool mIsOrtho;
-        float mClearColor[4];
-        float mClearDepth;
-        uint32_t mClearStencil;
-    };
-
     Program_t mProgram;
-    Enviroment_t mEnviroment;
 
     ACCscript*    mAccScript;