summaryrefslogtreecommitdiffstats
path: root/libs/gui/SurfaceTexture.cpp
diff options
context:
space:
mode:
authorRomain Guy <romainguy@google.com>2012-08-01 19:16:59 -0700
committerRomain Guy <romainguy@google.com>2012-08-01 19:16:59 -0700
commit4f9c284de4b9159126f69eb1219c410f66cc872c (patch)
treec21f1d7bce76a184e8073841a47b1d91136816b2 /libs/gui/SurfaceTexture.cpp
parent1dd2003f1a9a7a4826da7a4b565d41b941b7cc5d (diff)
downloadframeworks_native-4f9c284de4b9159126f69eb1219c410f66cc872c.zip
frameworks_native-4f9c284de4b9159126f69eb1219c410f66cc872c.tar.gz
frameworks_native-4f9c284de4b9159126f69eb1219c410f66cc872c.tar.bz2
Add missing break in switch statement
Change-Id: I6206cc9ca46c4e2f125d3d820256280586ad66a1
Diffstat (limited to 'libs/gui/SurfaceTexture.cpp')
-rw-r--r--libs/gui/SurfaceTexture.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/gui/SurfaceTexture.cpp b/libs/gui/SurfaceTexture.cpp
index ed6b73e..300b8d7 100644
--- a/libs/gui/SurfaceTexture.cpp
+++ b/libs/gui/SurfaceTexture.cpp
@@ -608,7 +608,7 @@ void SurfaceTexture::computeCurrentTransformMatrix() {
// We know there's no subsampling of any channels, so we
// only need to shrink by a half a pixel.
shrinkAmount = 0.5;
-
+ break;
default:
// If we don't recognize the format, we must assume the
// worst case (that we care about), which is YUV420.