summaryrefslogtreecommitdiffstats
path: root/libs/rs/rsProgramStore.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/rs/rsProgramStore.h')
-rw-r--r--libs/rs/rsProgramStore.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libs/rs/rsProgramStore.h b/libs/rs/rsProgramStore.h
index d686aa8..c6c312f 100644
--- a/libs/rs/rsProgramStore.h
+++ b/libs/rs/rsProgramStore.h
@@ -18,6 +18,7 @@
#define ANDROID_RS_PROGRAM_FRAGMENT_STORE_H
#include "rsProgram.h"
+#include "rsStream.h"
// ---------------------------------------------------------------------------
namespace android {
@@ -42,6 +43,10 @@ public:
void setDitherEnable(bool);
+ virtual void serialize(OStream *stream) const;
+ virtual A3DClassID getClassId() const { return A3D_CLASS_ID_PROGRAM_STORE; }
+ static ProgramStore *createFromStream(Context *rsc, IStream *stream);
+
protected:
bool mDitherEnable;