From 140db9dc038f6b7bcb48ec6a9dc7c8b022c1fdd5 Mon Sep 17 00:00:00 2001 From: Naomi Luis Date: Thu, 6 Jan 2011 19:13:17 -0800 Subject: [PATCH] Add support for S3D content over HDMI Add support in the overlay to display 3D content on the HDMI. The 3D input and out formats are passed along with the regular color format. Change-Id: I85d96928f1fc43de8b8eafab8526af4e716099a5 --- gralloc_priv.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gralloc_priv.h b/gralloc_priv.h index 650ac6c..01eff61 100644 --- a/gralloc_priv.h +++ b/gralloc_priv.h @@ -149,9 +149,9 @@ enum { HAL_3D_IN_LR_SIDE = 0x10000, HAL_3D_IN_LR_TOP = 0x20000, HAL_3D_IN_LR_INTERLEAVE = 0x40000, - HAL_3D_OUT_LR_SIDE = 0x1, - HAL_3D_OUT_LR_TOP = 0x2, - HAL_3D_OUT_LR_INTERLEAVE = 0x4 + HAL_3D_OUT_LR_SIDE = 0x1000, + HAL_3D_OUT_LR_TOP = 0x2000, + HAL_3D_OUT_LR_INTERLEAVE = 0x4000 }; /*****************************************************************************/