diff options
author | Mathias Agopian <mathias@google.com> | 2010-07-07 14:53:13 -0700 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2010-07-14 15:12:05 -0700 |
commit | 48c347637124339a34aff53df40bbcb5b044ee6d (patch) | |
tree | 28c518bf2187128cf81c246a5f27829ef50d06a8 /libs/surfaceflinger | |
parent | 7bd6b9574948c23e4f1660fd136723c0420ed308 (diff) | |
download | frameworks_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.cpp | 2 |
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: |