mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 17:31:58 +00:00
This adds ColorMode::BT2020 ColorMode::BT2100_PQ ColorMode::BT2100_HLG Dataspace::BT2020_HLG Dataspace::BT2020_ITU_HLG RenderIntent::COLORIMETRIC RenderIntent::ENHANCE RenderIntent::TONE_MAP_COLORIMETRIC RenderIntent::TONE_MAP_ENHANCE and fixes per-frame metadata to be per-layer. It also clarifies how the composer should treat certain dataspaces and makes the corresponding composer changes. Bug: 73824924 Bug: 32148660 Test: manual Change-Id: I5d12f50190522103c2ac97ee8dc2d5f6a2dabffe
33 lines
958 B
Makefile
33 lines
958 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := android.hardware.graphics.composer@2.2-service
|
|
LOCAL_VENDOR_MODULE := true
|
|
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
LOCAL_CFLAGS := -Wall -Werror -DLOG_TAG=\"ComposerHal\"
|
|
LOCAL_SRC_FILES := service.cpp
|
|
LOCAL_INIT_RC := android.hardware.graphics.composer@2.2-service.rc
|
|
LOCAL_HEADER_LIBRARIES := android.hardware.graphics.composer@2.2-passthrough
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
android.hardware.graphics.composer@2.1 \
|
|
android.hardware.graphics.composer@2.2 \
|
|
android.hardware.graphics.mapper@2.0 \
|
|
libbase \
|
|
libbinder \
|
|
libcutils \
|
|
libfmq \
|
|
libhardware \
|
|
libhidlbase \
|
|
libhidltransport \
|
|
libhwc2on1adapter \
|
|
libhwc2onfbadapter \
|
|
liblog \
|
|
libsync \
|
|
libutils
|
|
|
|
ifdef TARGET_USES_DISPLAY_RENDER_INTENTS
|
|
LOCAL_CFLAGS += -DUSES_DISPLAY_RENDER_INTENTS
|
|
endif
|
|
|
|
include $(BUILD_EXECUTABLE)
|