Add a flag to the API to specify -O0 on the bcc command line.
Add a flag RS_CONTEXT_OPT_LEVEL_0 which sets a field mOptLevel in the Context
to 0 when calling bcc.
Using this flag will result in an object file that is easier to debug.
Change-Id: I9673506710cc9f34c415b694fe5d6bc7e967f1db
Signed-off-by: verena beckham <[email protected]>
diff --git a/rsContext.cpp b/rsContext.cpp
index c21542f..e018eb0 100644
--- a/rsContext.cpp
+++ b/rsContext.cpp
@@ -459,6 +459,7 @@
memset(&mHal, 0, sizeof(mHal));
mForceCpu = false;
mContextType = RS_CONTEXT_TYPE_NORMAL;
+ mOptLevel = 3;
mSynchronous = false;
mFatalErrorOccured = false;
@@ -496,6 +497,9 @@
if (flags & RS_CONTEXT_SYNCHRONOUS) {
rsc->mSynchronous = true;
}
+ if (flags & RS_CONTEXT_OPT_LEVEL_0) {
+ rsc->mOptLevel = 0;
+ }
rsc->mContextType = ct;
rsc->mHal.flags = flags;