ff2ed70fa3
This is an attempt at improving the experience of users with color vision impairement. At this time this feature can only be enabled for debugging: adb shell service call SurfaceFlinger 1014 i32 PARAM with PARAM: 0 : disabled 1 : protanomaly/protanopia simulation 2 : deuteranomaly/deuteranopia simulation 3 : tritanopia/tritanomaly simulation 11, 12, 13: same as above w/ attempted correction/enhancement The enhancement algorithm tries to spread the "error" such that tones that would otherwise appear similar can be distinguished. Bug: 9465644 Change-Id: I860f7eed0cb81f54ef9cf24ad78155b6395ade48
113 lines
2.5 KiB
Makefile
113 lines
2.5 KiB
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
Client.cpp \
|
|
DisplayDevice.cpp \
|
|
EventThread.cpp \
|
|
FrameTracker.cpp \
|
|
Layer.cpp \
|
|
LayerDim.cpp \
|
|
MessageQueue.cpp \
|
|
SurfaceFlinger.cpp \
|
|
SurfaceFlingerConsumer.cpp \
|
|
SurfaceTextureLayer.cpp \
|
|
Transform.cpp \
|
|
DisplayHardware/FramebufferSurface.cpp \
|
|
DisplayHardware/HWComposer.cpp \
|
|
DisplayHardware/PowerHAL.cpp \
|
|
DisplayHardware/VirtualDisplaySurface.cpp \
|
|
Effects/Daltonizer.cpp \
|
|
EventLog/EventLogTags.logtags \
|
|
EventLog/EventLog.cpp \
|
|
RenderEngine/Description.cpp \
|
|
RenderEngine/Mesh.cpp \
|
|
RenderEngine/Program.cpp \
|
|
RenderEngine/ProgramCache.cpp \
|
|
RenderEngine/GLExtensions.cpp \
|
|
RenderEngine/RenderEngine.cpp \
|
|
RenderEngine/Texture.cpp \
|
|
RenderEngine/GLES10RenderEngine.cpp \
|
|
RenderEngine/GLES11RenderEngine.cpp \
|
|
RenderEngine/GLES20RenderEngine.cpp
|
|
|
|
|
|
LOCAL_CFLAGS:= -DLOG_TAG=\"SurfaceFlinger\"
|
|
LOCAL_CFLAGS += -DGL_GLEXT_PROTOTYPES -DEGL_EGLEXT_PROTOTYPES
|
|
|
|
ifeq ($(TARGET_BOARD_PLATFORM),omap3)
|
|
LOCAL_CFLAGS += -DNO_RGBX_8888
|
|
endif
|
|
ifeq ($(TARGET_BOARD_PLATFORM),omap4)
|
|
LOCAL_CFLAGS += -DHAS_CONTEXT_PRIORITY
|
|
endif
|
|
ifeq ($(TARGET_BOARD_PLATFORM),s5pc110)
|
|
LOCAL_CFLAGS += -DHAS_CONTEXT_PRIORITY
|
|
endif
|
|
|
|
ifeq ($(TARGET_DISABLE_TRIPLE_BUFFERING),true)
|
|
LOCAL_CFLAGS += -DTARGET_DISABLE_TRIPLE_BUFFERING
|
|
endif
|
|
|
|
ifneq ($(NUM_FRAMEBUFFER_SURFACE_BUFFERS),)
|
|
LOCAL_CFLAGS += -DNUM_FRAMEBUFFER_SURFACE_BUFFERS=$(NUM_FRAMEBUFFER_SURFACE_BUFFERS)
|
|
endif
|
|
|
|
LOCAL_CFLAGS += -fvisibility=hidden
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils \
|
|
liblog \
|
|
libdl \
|
|
libhardware \
|
|
libutils \
|
|
libEGL \
|
|
libGLESv1_CM \
|
|
libGLESv2 \
|
|
libbinder \
|
|
libui \
|
|
libgui
|
|
|
|
LOCAL_MODULE:= libsurfaceflinger
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
###############################################################
|
|
# build surfaceflinger's executable
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_CFLAGS:= -DLOG_TAG=\"SurfaceFlinger\"
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
main_surfaceflinger.cpp
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libsurfaceflinger \
|
|
libcutils \
|
|
liblog \
|
|
libbinder \
|
|
libutils
|
|
|
|
LOCAL_MODULE:= surfaceflinger
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
###############################################################
|
|
# uses jni which may not be available in PDK
|
|
ifneq ($(wildcard libnativehelper/include),)
|
|
include $(CLEAR_VARS)
|
|
LOCAL_CFLAGS:= -DLOG_TAG=\"SurfaceFlinger\"
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
DdmConnection.cpp
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils \
|
|
liblog \
|
|
libdl
|
|
|
|
LOCAL_MODULE:= libsurfaceflinger_ddmconnection
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
endif # libnativehelper
|