summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustavo Diaz Prado <a0273371@ti.com>2012-09-20 15:06:23 -0500
committerGustavo Diaz Prado <a0273371@ti.com>2012-09-21 18:20:19 -0500
commitc195634f79fb5a49b0caa33a4f9605a3aa40efe2 (patch)
treecffd6fad9cfc5624c95ff2290b9a548c0193afd3
parentad4ba4604f3f9bafed27c83b3c0a49d8731dddd7 (diff)
downloadomap4xxx-omapzoom-c195634f79fb5a49b0caa33a4f9605a3aa40efe2.tar.gz
hwc: rgz: Allow scaling and rotation on the same blit
Allow blitting layers that have scaling and a transformation now that the GC driver supports it. Change-Id: Iee5a34dc888656c47b3b514597b75868ccdc008a Signed-off-by: Gustavo Diaz Prado <a0273371@ti.com>
-rw-r--r--hwc/rgz_2d.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/hwc/rgz_2d.c b/hwc/rgz_2d.c
index 8cd8956b..60cc8a62 100644
--- a/hwc/rgz_2d.c
+++ b/hwc/rgz_2d.c
@@ -753,10 +753,6 @@ static int rgz_in_valid_hwc_layer(hwc_layer_t *layer)
if ((layer->flags & HWC_SKIP_LAYER) || !handle)
return 0;
- /* FIXME: GC doesn't support layers with scaling and rotation on the same blit yet */
- if (rgz_hwc_scaled(layer) && layer->transform)
- return 0;
-
if (is_NV12(handle->iFormat))
return handle->iFormat == HAL_PIXEL_FORMAT_TI_NV12;