4438e2f942
Implement clearRegion for C2D/MDP/CPU composition. This prevents glClear and therefore the glFinish from being called, thus improving performance. Change-Id: I03d9230e03cce11d9fe7e2bd34e4df8328ad2e00
19 lines
405 B
Makefile
19 lines
405 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := \
|
|
qcom_ui.cpp
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libutils \
|
|
libcutils \
|
|
libmemalloc \
|
|
libui \
|
|
libEGL
|
|
|
|
LOCAL_C_INCLUDES := $(TOP)/hardware/qcom/display/libgralloc \
|
|
LOCAL_CFLAGS := -DLOG_TAG=\"libQcomUI\"
|
|
LOCAL_MODULE := libQcomUI
|
|
LOCAL_MODULE_TAGS := optional
|
|
include $(BUILD_SHARED_LIBRARY)
|