diff options
-rw-r--r-- | libs/hwui/Android.common.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/hwui/Android.common.mk b/libs/hwui/Android.common.mk index 3e76656..a5bfde7 100644 --- a/libs/hwui/Android.common.mk +++ b/libs/hwui/Android.common.mk @@ -1,8 +1,10 @@ # getConfig in external/skia/include/core/SkBitmap.h is deprecated. # Allow Gnu extension: in-class initializer of static 'const float' member. +# DeferredLayerUpdater.h: private field 'mRenderThread' is not used. LOCAL_CLANG_CFLAGS += \ -Wno-deprecated-declarations \ - -Wno-gnu-static-float-init + -Wno-gnu-static-float-init \ + -Wno-unused-private-field LOCAL_SRC_FILES := \ font/CacheTexture.cpp \ |