summaryrefslogtreecommitdiffstats
path: root/libs/surfaceflinger
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2010-07-07 14:53:13 -0700
committerMathias Agopian <mathias@google.com>2010-07-14 15:12:05 -0700
commit48c347637124339a34aff53df40bbcb5b044ee6d (patch)
tree28c518bf2187128cf81c246a5f27829ef50d06a8 /libs/surfaceflinger
parent7bd6b9574948c23e4f1660fd136723c0420ed308 (diff)
downloadframeworks_native-48c347637124339a34aff53df40bbcb5b044ee6d.zip
frameworks_native-48c347637124339a34aff53df40bbcb5b044ee6d.tar.gz
frameworks_native-48c347637124339a34aff53df40bbcb5b044ee6d.tar.bz2
Remove the YV16 format for simplicity's sake.
Change-Id: Iee03d100933ba0c67b13d51e0435be3b4cd953cf
Diffstat (limited to 'libs/surfaceflinger')
-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 6526032..3b326df 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: