cfb095ef61
- Introduce cbutils for copybit utilities - Don't use qcomuiclearregion if GPU is used - Check for qcom composition types updating FB - Dont show YUV information to copybit - Fallback to GPU in the presence of SKIP layers This change adds support in qdutils to check for FB updating composition type. Change-Id: I200d3798a27836a51f4b2e6c79cdd9d8b155fad8
17 lines
704 B
Makefile
17 lines
704 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(LOCAL_PATH)/../common.mk
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libqdutils
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_SHARED_LIBRARIES := $(common_libs) libdl libui libcutils
|
|
LOCAL_C_INCLUDES += $(TOP)/hardware/qcom/display/libhwcomposer
|
|
LOCAL_C_INCLUDES += $(TOP)/hardware/qcom/display/libgralloc
|
|
|
|
LOCAL_CFLAGS := $(common_flags)
|
|
LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps)
|
|
LOCAL_SRC_FILES := profiler.cpp mdp_version.cpp \
|
|
idle_invalidator.cpp egl_handles.cpp \
|
|
cb_utils.cpp
|
|
include $(BUILD_SHARED_LIBRARY)
|