summaryrefslogtreecommitdiffstats
path: root/exynos4
diff options
context:
space:
mode:
authorShilin Victor <chrono.monochrome@gmail.com>2019-01-27 00:31:09 +0300
committerShilin Victor <chrono.monochrome@gmail.com>2019-02-23 16:51:46 +0300
commitde509d643668bfb06274d827800ee6ae5a9af039 (patch)
treea3a783c7f46d109d11c8982effca12f510712d70 /exynos4
parent226f390e7972dffc4aa307c004c4497b53134ca6 (diff)
downloadhardware_samsung-de509d643668bfb06274d827800ee6ae5a9af039.tar.gz
hardware_samsung-de509d643668bfb06274d827800ee6ae5a9af039.tar.bz2
hardware_samsung-de509d643668bfb06274d827800ee6ae5a9af039.zip
Revert "hwc: verbose layer debugging"
This reverts commit e0674a62cd6d817b15920d7df9ef6a05dd6ffa7b. Change-Id: I9bb6ab964f2dba3d68a34c9737a7a56401e79b1f
Diffstat (limited to 'exynos4')
-rw-r--r--exynos4/hal/libhwc/hwcomposer.cpp21
1 files changed, 4 insertions, 17 deletions
diff --git a/exynos4/hal/libhwc/hwcomposer.cpp b/exynos4/hal/libhwc/hwcomposer.cpp
index 190dd4c..361697f 100644
--- a/exynos4/hal/libhwc/hwcomposer.cpp
+++ b/exynos4/hal/libhwc/hwcomposer.cpp
@@ -292,23 +292,14 @@ bool is_overlay_supported(struct hwc_context_t *ctx, hwc_layer_1_t &layer, size_
if (!supports_fimg(layer)) {
ALOGW("\tlayer %u: FIMG required but not supported", i);
return false;
- } else {
- ALOGW("\t<fimg> layer %u, format %u, cType=%d, hints=%d, flags=%d, w=%d, h=%d, tr=%d, bl=%d, a=%d", i, handle->format, layer.compositionType,
- layer.hints, layer.flags, WIDTH(layer.displayFrame), HEIGHT(layer.displayFrame), layer.transform, layer.blending, layer.planeAlpha);
-
- }
+ }
break;
#endif
case gsc_map_t::FIMC:
if (!supports_fimc(layer)) {
- ALOGW("\tlayer %u: FIMC required but not supported", i);
+ ALOGW("\tlayer %u: FIMG required but not supported", i);
return false;
- } else {
- ALOGW("\t<fimg> layer %u, format %u, cType=%d, hints=%d, flags=%d, w=%d, h=%d, tr=%d, bl=%d, a=%d", i, handle->format, layer.compositionType,
- layer.hints, layer.flags, WIDTH(layer.displayFrame), HEIGHT(layer.displayFrame), layer.transform, layer.blending, layer.planeAlpha);
-
- }
-
+ }
break;
default:
@@ -316,11 +307,7 @@ bool is_overlay_supported(struct hwc_context_t *ctx, hwc_layer_1_t &layer, size_
|| !is_x_aligned(layer)) {
ALOGW("\tlayer %u: pixel format %u not supported", i, handle->format);
return false;
- } else {
- ALOGW("\t<fimg> layer %u, format %u, cType=%d, hints=%d, flags=%d, w=%d, h=%d, tr=%d, bl=%d, a=%d", i, handle->format, layer.compositionType,
- layer.hints, layer.flags, WIDTH(layer.displayFrame), HEIGHT(layer.displayFrame), layer.transform, layer.blending, layer.planeAlpha);
-
- }
+ }
}
if (visible_width(ctx, layer) < BURSTLEN_BYTES) {