summaryrefslogtreecommitdiff
path: root/libs/surfaceflinger/TextureManager.cpp
diff options
context:
space:
mode:
author Mathias Agopian <mathias@google.com> 2010-07-14 16:30:41 -0700
committer Android (Google) Code Review <android-gerrit@google.com> 2010-07-14 16:30:41 -0700
commit91c2a6644e42dfc9d45538e0b29d4393df7fba6a (patch)
tree28c518bf2187128cf81c246a5f27829ef50d06a8 /libs/surfaceflinger/TextureManager.cpp
parent91397cb3f0a0b2f9da5736e6c85c7903efafcd34 (diff)
parent48c347637124339a34aff53df40bbcb5b044ee6d (diff)
Merge "Remove the YV16 format for simplicity's sake." into gingerbread
Diffstat (limited to 'libs/surfaceflinger/TextureManager.cpp')
-rw-r--r--libs/surfaceflinger/TextureManager.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/libs/surfaceflinger/TextureManager.cpp b/libs/surfaceflinger/TextureManager.cpp
index 65260325b2..3b326dfdcf 100644
--- a/libs/surfaceflinger/TextureManager.cpp
+++ b/libs/surfaceflinger/TextureManager.cpp
@@ -107,7 +107,6 @@ bool TextureManager::isSupportedYuvFormat(int format)
{
switch (format) {
case HAL_PIXEL_FORMAT_YV12:
- case HAL_PIXEL_FORMAT_YV16:
return true;
}
return false;
@@ -118,7 +117,6 @@ bool TextureManager::isYuvFormat(int format)
switch (format) {
// supported YUV formats
case HAL_PIXEL_FORMAT_YV12:
- case HAL_PIXEL_FORMAT_YV16:
// Legacy/deprecated YUV formats
case HAL_PIXEL_FORMAT_YCbCr_422_SP:
case HAL_PIXEL_FORMAT_YCrCb_420_SP: