summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Hines <srhines@google.com>2017-01-24 01:27:03 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-01-24 01:27:03 +0000
commit44bf9cda811f225c81837ea9ef710e435ecd506a (patch)
tree2473c909f45a7fa8458e39f4aaed9819f8331680
parentbacd48231700ed2481e303d90ed62d96a2112991 (diff)
parentb5a6873157670ce950384636a776ff070faac33b (diff)
downloadhwcomposer-44bf9cda811f225c81837ea9ef710e435ecd506a.tar.gz
Fix incorrect use of the ! operator.
am: b5a6873157 Change-Id: Ied23369a03f2438ed49cdd0c5180f06736c1070c
-rwxr-xr-xmoorefield_hdmi/common/base/HwcLayerList.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/moorefield_hdmi/common/base/HwcLayerList.cpp b/moorefield_hdmi/common/base/HwcLayerList.cpp
index 5185e98..c163c8a 100755
--- a/moorefield_hdmi/common/base/HwcLayerList.cpp
+++ b/moorefield_hdmi/common/base/HwcLayerList.cpp
@@ -68,7 +68,7 @@ bool HwcLayerList::checkSupported(int planeType, HwcLayer *hwcLayer)
}
// check usage
- if (!hwcLayer->getUsage() & GRALLOC_USAGE_HW_COMPOSER) {
+ if (!(hwcLayer->getUsage() & GRALLOC_USAGE_HW_COMPOSER)) {
WLOGTRACE("not a composer layer");
return false;
}
@@ -134,7 +134,7 @@ bool HwcLayerList::checkRgbOverlaySupported(HwcLayer *hwcLayer)
}
// check usage
- if (!hwcLayer->getUsage() & GRALLOC_USAGE_HW_COMPOSER) {
+ if (!(hwcLayer->getUsage() & GRALLOC_USAGE_HW_COMPOSER)) {
WLOGTRACE("not a composer layer");
return false;
}
@@ -204,7 +204,7 @@ bool HwcLayerList::checkCursorSupported(HwcLayer *hwcLayer)
}
// check usage
- if (!hwcLayer->getUsage() & GRALLOC_USAGE_HW_COMPOSER) {
+ if (!(hwcLayer->getUsage() & GRALLOC_USAGE_HW_COMPOSER)) {
WLOGTRACE("not a composer layer");
return false;
}