summaryrefslogtreecommitdiffstats
path: root/services/surfaceflinger/SurfaceFlinger.cpp
diff options
context:
space:
mode:
authorJesse Hall <jessehall@google.com>2015-03-24 21:20:24 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-03-24 21:20:24 +0000
commit5b20fd0882e6a1754cad7342f7ceda3753e8f567 (patch)
treeee0ff29eeebb7f8b8ccf557c98bbaa2c47d11776 /services/surfaceflinger/SurfaceFlinger.cpp
parentf556fb1861230d732c11dfb9fbf34a352cdabc81 (diff)
parent28c03cca9835957f6e304b18358243b184fa46f8 (diff)
downloadframeworks_native-5b20fd0882e6a1754cad7342f7ceda3753e8f567.zip
frameworks_native-5b20fd0882e6a1754cad7342f7ceda3753e8f567.tar.gz
frameworks_native-5b20fd0882e6a1754cad7342f7ceda3753e8f567.tar.bz2
am 28c03cca: am c2a5b469: am a527c07b: Merge "Fix mistake using width instead of height."
* commit '28c03cca9835957f6e304b18358243b184fa46f8': Fix mistake using width instead of height.
Diffstat (limited to 'services/surfaceflinger/SurfaceFlinger.cpp')
-rw-r--r--services/surfaceflinger/SurfaceFlinger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/surfaceflinger/SurfaceFlinger.cpp b/services/surfaceflinger/SurfaceFlinger.cpp
index a560ca3..c931155 100644
--- a/services/surfaceflinger/SurfaceFlinger.cpp
+++ b/services/surfaceflinger/SurfaceFlinger.cpp
@@ -3177,7 +3177,7 @@ void SurfaceFlinger::renderScreenImplLocked(
const int32_t hw_w = hw->getWidth();
const int32_t hw_h = hw->getHeight();
const bool filtering = static_cast<int32_t>(reqWidth) != hw_w ||
- static_cast<int32_t>(reqWidth) != hw_h;
+ static_cast<int32_t>(reqHeight) != hw_h;
// if a default or invalid sourceCrop is passed in, set reasonable values
if (sourceCrop.width() == 0 || sourceCrop.height() == 0 ||