diff options
author | Romain Guy <romainguy@google.com> | 2012-08-01 19:16:59 -0700 |
---|---|---|
committer | Romain Guy <romainguy@google.com> | 2012-08-01 19:16:59 -0700 |
commit | 4f9c284de4b9159126f69eb1219c410f66cc872c (patch) | |
tree | c21f1d7bce76a184e8073841a47b1d91136816b2 /libs/gui/SurfaceTexture.cpp | |
parent | 1dd2003f1a9a7a4826da7a4b565d41b941b7cc5d (diff) | |
download | frameworks_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.cpp | 2 |
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. |