More RS cpp binding work. All classes for
compute should be partially implemented at this time.
Change-Id: Iddf9405cc69513b708975d20783395f0be04c680
diff --git a/libs/rs/RenderScript.cpp b/libs/rs/RenderScript.cpp
index 58d1ce1..39f1024 100644
--- a/libs/rs/RenderScript.cpp
+++ b/libs/rs/RenderScript.cpp
@@ -76,6 +76,13 @@
return true;
}
+void RenderScript::throwError(const char *err) const {
+ ALOGE("RS CPP error: %s", err);
+ int * v = NULL;
+ v[0] = 0;
+}
+
+
void * RenderScript::threadProc(void *vrsc) {
RenderScript *rs = static_cast<RenderScript *>(vrsc);
size_t rbuf_size = 256;