diff --git a/libs/rs/Android.mk b/libs/rs/Android.mk index 5ab4804b69e3b..083688771dac6 100644 --- a/libs/rs/Android.mk +++ b/libs/rs/Android.mk @@ -124,6 +124,8 @@ LOCAL_STATIC_LIBRARIES := libdex libft2 LOCAL_C_INCLUDES += external/freetype/include external/zlib dalvik LOCAL_C_INCLUDES += frameworks/compile/libbcc/include +LOCAL_CFLAGS += -Werror -Wall -Wno-unused-parameter -Wno-unused-variable + LOCAL_LDLIBS := -lpthread -ldl LOCAL_MODULE:= libRS LOCAL_MODULE_TAGS := optional @@ -132,6 +134,7 @@ include $(BUILD_SHARED_LIBRARY) # Now build a host version for serialization include $(CLEAR_VARS) +LOCAL_CFLAGS += -Werror -Wall -Wno-unused-parameter -Wno-unused-variable LOCAL_CFLAGS += -DANDROID_RS_SERIALIZE LOCAL_SRC_FILES:= \ diff --git a/libs/rs/rsAllocation.cpp b/libs/rs/rsAllocation.cpp index 54dcbcbefc304..ec03a158871fa 100644 --- a/libs/rs/rsAllocation.cpp +++ b/libs/rs/rsAllocation.cpp @@ -21,8 +21,6 @@ #include #endif //ANDROID_RS_SERIALIZE -static void rsaAllocationGenerateScriptMips(RsContext con, RsAllocation va); - using namespace android; using namespace android::renderscript; @@ -602,6 +600,8 @@ void Allocation::resize2D(Context *rsc, uint32_t dimX, uint32_t dimY) { // #ifndef ANDROID_RS_SERIALIZE +static void rsaAllocationGenerateScriptMips(RsContext con, RsAllocation va); + namespace android { namespace renderscript { diff --git a/libs/rs/rsContext.cpp b/libs/rs/rsContext.cpp index 2e6ea1243d9cd..4a5620d098fc6 100644 --- a/libs/rs/rsContext.cpp +++ b/libs/rs/rsContext.cpp @@ -741,7 +741,7 @@ Context::~Context() { mWorkers.mLaunchSignals[ct].set(); } for (uint32_t ct = 0; ct < mWorkers.mCount; ct++) { - int status = pthread_join(mWorkers.mThreadId[ct], &res); + status = pthread_join(mWorkers.mThreadId[ct], &res); } rsAssert(!mWorkers.mRunningCount); diff --git a/libs/rs/rsHandcode.h b/libs/rs/rsHandcode.h index 6f21a35c55056..57da10a65b1fc 100644 --- a/libs/rs/rsHandcode.h +++ b/libs/rs/rsHandcode.h @@ -4,7 +4,6 @@ static inline void rsHCAPI_ContextFinish (RsContext rsc) { ThreadIO *io = &((Context *)rsc)->mIO; uint32_t size = sizeof(RS_CMD_ContextFinish); - RS_CMD_ContextFinish *cmd = static_cast(io->mToCore.reserve(size)); io->mToCore.commitSync(RS_CMD_ID_ContextFinish, size); } diff --git a/libs/rs/rsScript.cpp b/libs/rs/rsScript.cpp index 9ada9c299ac4b..afee2a314809b 100644 --- a/libs/rs/rsScript.cpp +++ b/libs/rs/rsScript.cpp @@ -139,7 +139,6 @@ void rsi_ScriptSetVarD(Context *rsc, RsScript vs, uint32_t slot, double value) { } void rsi_ScriptSetVarV(Context *rsc, RsScript vs, uint32_t slot, const void *data, uint32_t len) { - const float *fp = (const float *)data; Script *s = static_cast