GPU tonemapper library which is used by HWC to tone map the layers from one Gamut to another based on the 3D LUT. Change-Id: Iccaa38e40989e832fd3891a24eca494aba696d9a Crs-fixed: 1094964
22 lines
638 B
Makefile
22 lines
638 B
Makefile
sdm-libs := sdm/libs
|
|
display-hals := include libqservice libqdutils $(sdm-libs)/utils $(sdm-libs)/core
|
|
|
|
ifneq ($(TARGET_IS_HEADLESS), true)
|
|
display-hals += libcopybit liblight libmemtrack hdmi_cec \
|
|
$(sdm-libs)/hwc $(sdm-libs)/hwc2 gpu_tonemapper
|
|
endif
|
|
|
|
ifneq ($(TARGET_USES_GRALLOC1), true)
|
|
display-hals += libgralloc
|
|
else
|
|
display-hals += libgralloc1
|
|
endif
|
|
|
|
ifeq ($(call is-vendor-board-platform,QCOM),true)
|
|
include $(call all-named-subdir-makefiles,$(display-hals))
|
|
else
|
|
ifneq ($(filter msm% apq%,$(TARGET_BOARD_PLATFORM)),)
|
|
include $(call all-named-subdir-makefiles,$(display-hals))
|
|
endif
|
|
endif
|