From 4f9c284de4b9159126f69eb1219c410f66cc872c Mon Sep 17 00:00:00 2001 From: Romain Guy Date: Wed, 1 Aug 2012 19:16:59 -0700 Subject: [PATCH] Add missing break in switch statement Change-Id: I6206cc9ca46c4e2f125d3d820256280586ad66a1 --- libs/gui/SurfaceTexture.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/gui/SurfaceTexture.cpp b/libs/gui/SurfaceTexture.cpp index ed6b73e20..300b8d729 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.