update tests.
Change-Id: I6f0fa4898dccf5f48db80a4870d7c5edaeb109d0
diff --git a/tests/ScriptC_mono.h b/tests/ScriptC_mono.h
index ebe6fb8..99912d1 100644
--- a/tests/ScriptC_mono.h
+++ b/tests/ScriptC_mono.h
@@ -28,10 +28,9 @@
int32_t __gInt;
bool __gBool;
public:
- ScriptC_mono(android::renderscriptCpp::RenderScript *rs,
- const char *cacheDir, size_t cacheDirLength);
+ ScriptC_mono(android::renderscriptCpp::RenderScript *rs, const char *cacheDir, size_t cacheDirLength);
virtual ~ScriptC_mono();
-
+
void set_gInt(int32_t v) {
setVar(0, v);
__gInt = v;
@@ -39,11 +38,11 @@
int32_t get_gInt() const {
return __gInt;
}
-
+
float get_cFloat() const {
return 1.2f;
}
-
+
void set_gBool(bool v) {
setVar(2, v);
__gBool = v;
@@ -51,7 +50,6 @@
bool get_gBool() const {
return __gBool;
}
-
- void forEach_root(android::sp<const android::renderscriptCpp::Allocation> ain,
- android::sp<const android::renderscriptCpp::Allocation> aout) const;
+
+ void forEach_root(android::sp<const android::renderscriptCpp::Allocation> ain, android::sp<const android::renderscriptCpp::Allocation> aout) const;
};