Skip to content

Commit

Permalink
revert to hwc1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
RonGokhale committed Jun 24, 2014
1 parent f57e9c8 commit c647889
Show file tree
Hide file tree
Showing 58 changed files with 6,442 additions and 6,577 deletions.
4 changes: 3 additions & 1 deletion common.mk
Expand Up @@ -7,7 +7,6 @@ common_includes += hardware/qcom/display-caf/libqdutils
common_includes += hardware/qcom/display-caf/libhwcomposer
common_includes += hardware/qcom/display-caf/libexternal
common_includes += hardware/qcom/display-caf/libqservice
common_includes += hardware/qcom/display-caf/libvirtual

ifeq ($(TARGET_USES_POST_PROCESSING),true)
common_flags += -DUSES_POST_PROCESSING
Expand Down Expand Up @@ -53,3 +52,6 @@ ifneq ($(filter msm8660 msm7x27a,$(TARGET_BOARD_PLATFORM)),)
common_flags += -DNO_IOMMU
endif

ifeq ($(TARGET_DISPLAY_USE_RETIRE_FENCE),true)
common_flags += -DUSE_RETIRE_FENCE
endif
3 changes: 1 addition & 2 deletions libexternal/Android.mk
@@ -1,12 +1,11 @@
LOCAL_PATH := $(call my-dir)
include $(LOCAL_PATH)/../common.mk
include $(CLEAR_VARS)

LOCAL_MODULE := libexternal
LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)
LOCAL_MODULE_TAGS := optional
LOCAL_C_INCLUDES := $(common_includes) $(kernel_includes)
LOCAL_SHARED_LIBRARIES := $(common_libs) liboverlay libqdutils
LOCAL_SHARED_LIBRARIES := $(common_libs) liboverlay
LOCAL_CFLAGS := $(common_flags) -DLOG_TAG=\"qdexternal\"
LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps)
LOCAL_SRC_FILES := external.cpp
Expand Down
9 changes: 4 additions & 5 deletions libvirtual/Android.mk → libexternal/Android.mk~
@@ -1,14 +1,13 @@
LOCAL_PATH := $(call my-dir)
include $(LOCAL_PATH)/../common.mk
include $(CLEAR_VARS)

LOCAL_MODULE := libvirtual
LOCAL_MODULE := libexternal
LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)
LOCAL_MODULE_TAGS := optional
LOCAL_C_INCLUDES := $(common_includes) $(kernel_includes)
LOCAL_SHARED_LIBRARIES := $(common_libs) liboverlay libqdutils
LOCAL_CFLAGS := $(common_flags) -DLOG_TAG=\"qdvirtual\"
LOCAL_SHARED_LIBRARIES := $(common_libs) liboverlay
LOCAL_CFLAGS := $(common_flags) -DLOG_TAG=\"external\"
LOCAL_ADDITIONAL_DEPENDENCIES := $(common_deps)
LOCAL_SRC_FILES := virtual.cpp
LOCAL_SRC_FILES := external.cpp

include $(BUILD_SHARED_LIBRARY)

0 comments on commit c647889

Please sign in to comment.